diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8064061a64772bfa2221f3e5c00909bf9d73e7b4..a5e6496aadbeea4378afc5930f5af8c965704b15 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ workflow: .official-releases: rules: - - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+\z/ + - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+/ stages: - build @@ -27,7 +27,7 @@ build: image: debian:latest rules: # official release - - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+\z/ + - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+/ # latest - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH script: diff --git a/.gitlab/issue_templates/bug_report.md b/.gitlab/issue_templates/bug_report.md index 4bb24c44957739b4b5baf528405cdb4ef4b42da8..cda23b5818fc7ab7b02e66b645e5b2f013c2e340 100644 --- a/.gitlab/issue_templates/bug_report.md +++ b/.gitlab/issue_templates/bug_report.md @@ -1,16 +1,12 @@ +/label ~Bug + ## Expected Behavior <!--- If you're describing a bug, tell us what should happen --> -<!--- If you're suggesting a change/improvement, tell us how it should work --> ## Current Behavior <!-- If describing a bug, tell us what happens instead of the expected behavior. Provide a Screenshots if possible. --> -<!-- If suggesting a change/improvement, explain the difference from current behavior --> - -## Possible Solution -<!-- Not obligatory, but suggest a fix/reason for the bug, --> -<!-- or ideas how to implement the addition or change --> -## Steps to Reproduce (for bugs) +## Steps to Reproduce <!-- Provide an unambiguous sequence of steps to reproduce the bug. --> 1. 2. diff --git a/.gitlab/issue_templates/feature_request.md b/.gitlab/issue_templates/feature_request.md new file mode 100644 index 0000000000000000000000000000000000000000..78bbe763a7f87a49171f669b211cf3780e2044f9 --- /dev/null +++ b/.gitlab/issue_templates/feature_request.md @@ -0,0 +1,23 @@ +/label ~Feature + +### Is your proposal related to a problem? +<!-- + Provide a clear and concise description of what the problem is. + For example, "I'm always frustrated when..." +--> + +### Describe the solution you'd like +<!-- + Provide a clear and concise description of what you want to happen. +--> + +### Describe alternatives you've considered +<!-- + Let us know about other solutions you've tried or researched. +--> + +### Additional context +<!-- + Is there anything else you can add about the proposal? + You might want to link to related issues here, if you haven't already. +--> diff --git a/.gitlab/issue_templates/player_question.md b/.gitlab/issue_templates/player_question.md new file mode 100644 index 0000000000000000000000000000000000000000..cc830176bf764002004067f1dbb6d64ca5d39cac --- /dev/null +++ b/.gitlab/issue_templates/player_question.md @@ -0,0 +1,3 @@ +/label ~Question + +<!-- Make sure to read the ingame encyclopedia before asking your question --> diff --git a/CHANGELOG.md b/CHANGELOG.md index 25056e680847e475a4ab7b02985fb14b00886f44..e58ddfba013af6d01cf8f79b269dd85ea1ddeb58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## Unreleased +* MOD secExp oceanic battles enabled + +## 0.10.7.1-4.0.0-alpha.2 - 2021-05-23 + +* more fixes + +## 0.10.7.1-4.0.0.alpha.1 - 2021-05-22 + +* fixes + +## 0.10.7.1-4.0.0.alpha.0 - 2021-05-22 + +* Base 4.0.0 foundation added +* Age based player careers implemented (4.0.0) * Reminders system improvements * Elohiem's webgl art update 2 & 3 * added new hairstyles (bangs, hime, drills) +* added slave distribution presets (PLC, Japan/Korea, Caribbean) * heavy reconstruction of the event systems * REFI conversion complete +* Cheat mode and debug mode controls for event selection * fixes * RA UI tweaks +* tooltips now managed by Tippy ## 0.10.7.1-3.9.6 - 2021-04-02 diff --git a/css/facilities/spa.css b/css/facilities/spa.css new file mode 100644 index 0000000000000000000000000000000000000000..c336fa2e2b8761c8500cd2ed08ce40cdfe7f474b --- /dev/null +++ b/css/facilities/spa.css @@ -0,0 +1,8 @@ +.spa-intro, +.spa-expand, +.spa-upgrades, +.spa-attendant, +.spa-slaves, +.spa-rename { + margin-bottom: 1em; +} diff --git a/css/gui/encyclopedia.css b/css/gui/encyclopedia.css index 9cd84398b514dfad886a5eef12650c5f4a6fc474..6ca860782e9ad394ef990160b91611365cd6540e 100644 --- a/css/gui/encyclopedia.css +++ b/css/gui/encyclopedia.css @@ -1,3 +1,14 @@ .encyclopedia.topic { font-weight: bold; } + +/* mark text that is a link/button somewhere else */ +/* Click <span class="encyclopedia interaction">X</span> to do Y */ +.encyclopedia.interaction { + background: #203e6c; + border-radius: 5px; + border: hidden; + padding: 2px 4px; + white-space: nowrap; + font-size: smaller; +} diff --git a/devTools/Script to convert SC to JS/SC to JS 1.py b/devTools/Script to convert SC to JS/SC to JS 1.py index baa14313d8526833de3a6ed5f6cfe410f296669c..b77dc0ba1ee381a958ab45dcd59cf2c91b12d866 100644 --- a/devTools/Script to convert SC to JS/SC to JS 1.py +++ b/devTools/Script to convert SC to JS/SC to JS 1.py @@ -39,6 +39,9 @@ editor.rereplace(r"<<unset (.*)>>", r"delete \1;") # Set editor.rereplace(r"<<set (.*?)>>", r"$1;") +editor.rereplace(r"<<(Master)>>", r"${$1}") +editor.rereplace(r"<<(say)>>", r"${$1}") + #Switch editor.rereplace(r"<<switch (.*?)>>", r"switch \(\1\) {") editor.rereplace(r"<</switch>>", r"}") @@ -108,3 +111,8 @@ editor.rereplace(r"_S\.", r"S.") editor.rereplace(r"\${He}adGirl", r"V.HeadGirl") editor.rereplace(r"\.}", r"}.") editor.rereplace(r"\${slave}", r"slave") +editor.rereplace(r"V.getSlave", r"getSlave") +editor.rereplace(r"V.App", r"App") + +# Compress speech macros, like <<s>> +editor.rereplace(r"`\);\n[ ]*<<([^\}]*)>>\n[ ]*r\.push\(`", r"$1") \ No newline at end of file diff --git a/devTools/javaSanityCheck/ignoredVariables b/devTools/javaSanityCheck/ignoredVariables index a9584d1f2ece9f1be32d7b575e113d5707380c7e..20a462dbff031219ad7bc0187cee56f93bdd3e50 100644 --- a/devTools/javaSanityCheck/ignoredVariables +++ b/devTools/javaSanityCheck/ignoredVariables @@ -9,4 +9,4 @@ securityHQ waterwayTime dickSize dinnerParty -sacrificeType \ No newline at end of file +seed \ No newline at end of file diff --git a/devTools/types/FC/data.d.ts b/devTools/types/FC/data.d.ts index 48e6a8e94a673b25ced0e5a153d3eb5d24006772..eee7fbaa16b826501ad409826b823341c80dd7fb 100644 --- a/devTools/types/FC/data.d.ts +++ b/devTools/types/FC/data.d.ts @@ -60,6 +60,7 @@ declare namespace FC { jobs: Record<string, JobDesc>; defaultJob: string; manager: ManagerJobDesc | null; + decorated: boolean; } namespace SlaveSummary { diff --git a/devTools/types/FC/human.d.ts b/devTools/types/FC/human.d.ts index 543ac50e627e69136a716fbd9b564a83201eea33..02bf6beaabf8558641b5c2b85e46c1fbcf52f8dd 100644 --- a/devTools/types/FC/human.d.ts +++ b/devTools/types/FC/human.d.ts @@ -221,7 +221,26 @@ declare global { | "size queen">; type BreastShape = "normal" | "perky" | "saggy" | "torpedo-shaped" | "downward-facing" | "wide-set" | "spherical"; - type HairStyle = "afro"| "braided" | "cornrows" | "curled" | "dreadlocks" | "eary" | "bun" | "messy bun" | "ponytail" | "tails" | "drills" | "luxurious" | "messy" | "neat" | "permed" | "bangs" | "hime" | "strip" | "up" | "shaved" | "trimmed" | "buzzcut" | "bald" | "undercut"; + type Clothes = "a ball gown" | "a bimbo outfit" | "a biyelgee costume" | "a bra" | "a bunny outfit" | "a burkini" | + "a burqa" | "a button-up shirt" | "a button-up shirt and panties" | "a chattel habit" | "a cheerleader outfit" | "a comfortable bodysuit" | + "a courtesan dress" | "a cybersuit" | "a dirndl" | "a fallen nuns habit" | "a Fuckdoll suit" | "a gothic lolita dress" | "a halter top dress" | + "a hanbok" | "a hijab and abaya" | "a hijab and blouse" | "a huipil" | "a kimono" | "a klan robe" | "a latex catsuit" | "a leotard" | + "a long qipao" | "a maternity dress" | "a military uniform" | "a mini dress" | "a monokini" | "a mounty outfit" | "a nice maid outfit" | + "a nice nurse outfit" | "a nice pony outfit" | "a niqab and abaya" | "a one-piece swimsuit" | "a penitent nuns habit" | "a police uniform" | + "a red army uniform" | "a Santa dress" | "a scalemail bikini" | "a schoolgirl outfit" | "a schutzstaffel uniform" | "a skimpy loincloth" | + "a slave gown" | "a slutty klan robe" | "a slutty maid outfit" | "a slutty nurse outfit" | "a slutty outfit" | "a slutty pony outfit" | + "a slutty qipao" | "a slutty schutzstaffel uniform" | "a sports bra" | "a string bikini" | "a striped bra" | "a succubus outfit" | + "a sweater" | "a sweater and cutoffs" | "a sweater and panties" | "a t-shirt" | "a t-shirt and jeans" | "a t-shirt and panties" | + "a t-shirt and thong" | "a tank-top" | "a tank-top and panties" | "a thong" | "a toga" | "a tube top" | "a tube top and thong" | + "an apron" | "an oversized t-shirt" | "an oversized t-shirt and boyshorts" | "attractive lingerie" | "attractive lingerie for a pregnant woman" | + "battlearmor" | "Imperial Plate" | "a tight Imperial bodysuit" | "battledress" | "body oil" | "boyshorts" | "chains" | "choosing her own clothes" | + "clubslut netting" | "conservative clothing" | "cutoffs" | "cutoffs and a t-shirt" | "harem gauze" | "jeans" | "kitty lingerie" | + "leather pants" | "leather pants and a tube top" | "leather pants and pasties" | "lederhosen" | "nice business attire" | "no clothing" | + "overalls" | "panties" | "panties and pasties" | "pasties" | "restrictive latex" | "shibari ropes" | "slutty business attire" | + "slutty jewelry" | "spats and a tank top" | "sport shorts" | "sport shorts and a sports bra" | "sport shorts and a t-shirt" | + "stretch pants and a crop-top" | "striped panties" | "striped underwear" | "uncomfortable straps" | "Western clothing"; + type HairStyle = "afro"| "braided" | "cornrows" | "curled" | "dreadlocks" | "eary" | "bun" | "messy bun" | "ponytail" | "tails" | + "drills" | "luxurious" | "messy" | "neat" | "permed" | "bangs" | "hime" | "strip" | "up" | "shaved" | "trimmed" | "buzzcut" | "bald" | "undercut"; type Diet = "healthy" | "restricted" | "corrective" | "muscle building" | "fattening" | "slimming" | "XX" | "XY" | "XXY" | "cum production" | "cleansing" | "fertility" | "high caloric"; type Drug = "no drugs" | diff --git a/devTools/types/extensions.d.ts b/devTools/types/extensions.d.ts index 3b69613e15631488e2508f0b97dd86b14776765b..e0d7fb808ba794473b9b11ea4d1eaa46744450e8 100644 --- a/devTools/types/extensions.d.ts +++ b/devTools/types/extensions.d.ts @@ -5,7 +5,7 @@ interface MousetrapStatic { interface Number { /** - * Returns whether the value is between the given bounds, with optional inclusivity. + * Returns whether the value is between the given bounds, with optional inclusivity. Exclusive by default. * @param min The minimum value to check against. * @param max The maximum value to check against. * @param inclusive Whether to include the bounds values. diff --git a/js/002-config/fc-js-init.js b/js/002-config/fc-js-init.js index 140abbe03acf1d48c7f4bf9f8b66081388857563..d48f8a99ba733e149fcc35a517c6b36e940f7ebe 100644 --- a/js/002-config/fc-js-init.js +++ b/js/002-config/fc-js-init.js @@ -17,6 +17,7 @@ App.Arcology.Cell = {}; App.Art = {}; App.Corporate = {}; App.Data = {}; +App.Data.clothes = new Map(); App.Data.FCTV = {}; App.Data.HeroSlaves = {}; App.Data.Policies = {}; diff --git a/js/003-data/clothes/aSlaveGown.js b/js/003-data/clothes/aSlaveGown.js new file mode 100644 index 0000000000000000000000000000000000000000..e74b9077b00c33764dde4e722ddb6c94db6cf0f0 --- /dev/null +++ b/js/003-data/clothes/aSlaveGown.js @@ -0,0 +1,451 @@ +App.Data.clothes.set("a slave gown", + { + name: "Slave gown", + exposure: 0, + fs: {loves: new Set(["FSBodyPurist"])}, + desc: { + summary: function(slave) { + const r = []; + const {He, he, his} = getPronouns(slave); + const bothFeet = hasBothLegs(slave); + const feet = bothFeet ? "feet" : "foot"; + + r.push(`a gorgeous affair`); + if (isAmputee(slave)) { + r.push(`tailored to favor ${his} lack of arms and legs.`); + } else if (!hasAnyLegs(slave)) { + r.push(`with cuts that offer tantalizing glimpses of delicate flesh.`); + } else { + r.push(`with cuts that offer tantalizing glimpses of delicate flesh.`); + r.push(`${He} completes the look with`); + switch (slave.shoes) { + case "flats": + if (bothFeet) { + r.push(`a pair of fashionable slingback sandals.`); + } else { + r.push(`a fashionable slingback sandal.`); + } + break; + case "boots": + if (bothFeet) { + r.push(`elegant worked leather boots.`); + } else { + r.push(`an elegant worked leather boot.`); + } + break; + case "heels": + if (bothFeet) { + r.push(`kitten heels.`); + } else { + r.push(`a kitten heel.`); + } + break; + case "pumps": + if (bothFeet) { + r.push(`sleek pumps.`); + } else { + r.push(`a sleek heel.`); + } + break; + case "extreme heels": + if (bothFeet) { + r.push(`daring spike heels so high ${his} butt is at dick height.`); + } else { + r.push(`a daring spike heel so high ${he} can't even stand.`); + } + break; + case "platform shoes": + if (bothFeet) { + r.push(`stylish platform shoes.`); + } else { + r.push(`a stylish platform shoe.`); + } + break; + case "platform hees": + if (bothFeet) { + r.push(`elegant platform heels.`); + } else { + r.push(`an elegant platform heel.`); + } + break; + case "extreme platform heels": + if (bothFeet) { + r.push(`elegant platform heels so high ${his} butt is at dick height.`); + } else { + r.push(`an elegant platform heel so high ${he} can't stand even with assistance.`); + } + break; + default: + r.push(`nothing on ${his} bare ${feet}.`); + } + } + return r.join(" "); + }, + upperFace: function(slave) { + return `nice frameless glasses,`; + }, + hStyle: function(slave) { + const r = []; + const { + he, his + } = getPronouns(slave); + + if (slave.fuckdoll === 0) { + switch (slave.hStyle) { + case "neat": + if (slave.hLength > 100) { + r.push(`cascades gorgeously down ${his} bare back.`); + } else if (slave.hLength > 30) { + r.push(`flows fashionably down ${his} bare back.`); + } else if (slave.hLength > 10) { + r.push(`follows the latest fashion.`); + } else { + r.push(`is gelled into a fashionable wave.`); + } + break; + case "up": + if (slave.hLength > 100) { + r.push(`is piled up on ${his} head in a perfect 60's beehive.`); + } else if (slave.hLength > 30) { + r.push(`is piled up on ${his} head in a perfect 60's beehive.`); + } else if (slave.hLength > 10) { + r.push(`is piled up on ${his} head in a perfect 60's 'do.`); + } else { + r.push(`is combed back.`); + } + break; + case "tails": + if (slave.hLength > 100) { + r.push(`is combed into beautiful long tails, one of which comes around to run down ${his} chest.`); + } else if (slave.hLength > 30) { + r.push(`is combed into beautiful tails, one of which comes around to fall between ${his} breasts.`); + } else if (slave.hLength > 10) { + r.push(`is combed into short tails set low at the nape of ${his} neck.`); + } else { + r.push(`is too short to be kept in proper tails, so it's simply combed back.`); + } + break; + case "ponytail": + if (slave.hLength > 100) { + r.push(`is combed into a beautiful long ponytail, which swooshes as ${he} moves.`); + } else if (slave.hLength > 30) { + r.push(`is combed into a beautiful ponytail, which swooshes as ${he} moves.`); + } else if (slave.hLength > 10) { + r.push(`is combed into a short ponytail set low at the nape of ${his} neck.`); + } else { + r.push(`is too short to be kept in a proper ponytail, so it's simply combed back.`); + } + break; + case "braided": + if (slave.hLength > 100) { + r.push(`is combed into beautiful long braids, one of which comes around to run down ${his} chest.`); + } else if (slave.hLength > 30) { + r.push(`is in beautiful braids, one of which comes around to fall between ${his} breasts.`); + } else if (slave.hLength > 10) { + r.push(`is combed into short braids set low at the nape of ${his} neck.`); + } else { + r.push(`is too short to be kept in proper braids, so it's simply combed back.`); + } + break; + case "dreadlocks": + if (slave.hLength > 100) { + r.push(`is in dreadlocks, spreading out in many directions and almost reaching the ground.`); + } else if (slave.hLength > 30) { + r.push(`is in dreadlocks, spreading out in many directions.`); + } else if (slave.hLength > 10) { + r.push(`is in short dreadlocks, spreading around ${his} head.`); + } else { + r.push(`is too short to be kept in proper dreadlocks, so it's simply combed back.`); + } + break; + case "curled": + if (slave.hLength > 100) { + r.push(`is curled into long flowing locks, almost reaching the ground.`); + } else if (slave.hLength > 30) { + r.push(`is curled into long locks, reaching past ${his} shoulders.`); + } else if (slave.hLength > 10) { + r.push(`is curled into short locks.`); + } else { + r.push(`is in short curls.`); + } + break; + case "permed": + if (slave.hLength > 100) { + r.push(`is permed into long flowing curls, almost reaching the ground.`); + } else if (slave.hLength > 30) { + r.push(`is permed, reaching past ${his} shoulders.`); + } else if (slave.hLength > 10) { + r.push(`is permed into short waves.`); + } else { + r.push(`is permed into short curls.`); + } + break; + case "luxurious": + if (slave.hLength > 100) { + r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); + } else if (slave.hLength > 30) { + r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); + } else if (slave.hLength > 10) { + r.push(`is in luxuriously styled short locks.`); + } else { + r.push(`is in luxuriously styled short locks.`); + } + break; + case "strip": + if (slave.hLength > 100) { + r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back.`); + } else if (slave.hLength > 30) { + r.push(`is shaved into a long braided strip.`); + } else if (slave.hLength > 10) { + r.push(`is shaved into a strip.`); + } else { + r.push(`is shaved into a mohawk.`); + } + break; + case "undercut": + if (slave.hLength > 100) { + r.push(`is shaved on one side into a long undercut that falls well past ${his} breasts.`); + } else if (slave.hLength > 30) { + r.push(`is shaved to one side, the other half falling down to their neck.`); + } else if (slave.hLength > 10) { + r.push(`is shaved to one side, the other half falling just over one eye.`); + } else { + r.push(`is shaved to one side in a pixie-like undercut.`); + } + break; + case "bangs": + if (slave.hLength > 100) { + r.push(`is cut straight across ${his} face, hiding ${his} eyes.`); + } else if (slave.hLength > 30) { + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes.`); + } else if (slave.hLength > 10) { + r.push(`is cut straight above ${his} eyebrows.`); + } else { + r.push(`is cut straight across ${his} forehead.`); + } + break; + case "hime": + if (slave.hLength > 100) { + r.push(`cascades down ${his} bare back in a hime cut with shoulder-length side-locks.`); + } else if (slave.hLength > 30) { + r.push(`flows down ${his} bare back in a hime cut with cheek-length side-locks.`); + } else if (slave.hLength > 10) { + r.push(`is styled into a hime cut with cheek-length side-locks.`); + } else { + r.push(`is styled into a hime cut with cheek-length side-locks.`); + } + break; + case "drills": + if (slave.hLength > 100) { + r.push(`is wound into enormous, exquisite coils that come to rest across ${his} chest.`); + } else if (slave.hLength > 30) { + r.push(`is wound into large coils which rest atop ${his} breasts.`); + } else if (slave.hLength > 10) { + r.push(`is in a pair of short coils.`); + } else { + r.push(`is too short to be kept in proper tails, so it's simply combed back.`); + } + break; + case "bald": + r.push(`is completely bald.`); + } + } + return r.join(" "); + }, + earPiercing: function(slave) { + const {He} = getPronouns(slave); + return `${He}'s wearing lovely diamond earrings; the stones are cut in an alluring, feminine style.`; + }, + corsetPiercing: function(slave) { + const {his} = getPronouns(slave); + return `they're revealed by the swooping back of ${his} gown and laced up with matching silk ribbon.`; + }, + clothingCorset: function(slave) { + const r =[]; + const {His, his} = getPronouns(slave); + if (slave.bellyAccessory === "a corset") { + r.push(`${His} gown has an elegant integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} gown has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is concealed by ${his} gown.`); + } + return r.join(" "); + }, + boobs: function(slave) { + const r = []; + const {his} = getPronouns(slave); + const noun = App.Desc.boobBits.noun(slave.boobs, false, false); + const adjNoun = App.Desc.boobBits.noun(slave.boobs, false, true); + r.push(`${slave.slaveName}'s slave gown`); + if (slave.boobs > 12000) { + r.push(`is no longer able to cover ${his} ${adjNoun}. Instead, it has been redesigned to draw the eye to them.`); + } else if (slave.boobs > 4000) { + r.push(`is carefully engineered and is somehow able to cover the enormous mass of ${his} breasts.`); + } else if (slave.boobs > 800) { + r.push(`is carefully tailored, tastefully covering yet enhancing ${his} ${adjNoun}.`); + } else if (slave.boobs < 300) { + r.push(`is carefully tailored to closely hug ${his} flat chest.`); + } else { + r.push(`subtly accentuates ${his} ${noun}.`); + } + return r.join(" "); + }, + belly: function(slave) { + const r = []; + const {his, him} = getPronouns(slave); + const isBellyFluidLargest = (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant); + + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material. When not worn, it looks more like a circus tent than something meant to be worn by a human being. On the slave, it gives ${him} a sensual, motherly look as it caresses ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it caresses ${his} unfathomable, hyper-swollen, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it caresses and supports ${his} unfathomable, hyper-swollen pregnant belly. Despite it's size, it still has enough give to allow ${his} unborn children to bulge and squirm as desired.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material. When not worn, it looks more like a couch cover than something meant to be worn by a human being. On ${him}, it gives ${him} a sensual, motherly look as it carefully caresses ${his} monolithic, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it carefully caresses ${his} monolithic, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it carefully caresses and supports ${his} monolithic pregnant belly. It has enough give to allow ${his} unborn children to bulge and squirm as desired.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} titanic, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} titanic bulging pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} gigantic, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} massive, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} giant, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} giant pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} massively fat belly. Every motion in ${his} impressive gut is elegantly embraced by ${his} gown.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, almost motherly look, as it carefully caresses ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`); + } else if (((slave.belly >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} small belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging even the slight bulge to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging ${his} ripped abs.`); + } + return r.join(" "); + }, + crotch: function(slave) { + const r = []; + const {his} = getPronouns(slave); + r.push(`${slave.slaveName}'s`); + if (slave.dick > 6) { + r.push(`lovely gown cannot hide the fact that something massive is lurking`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs.`); + } else { + r.push(`underneath it.`); + } + } else if (slave.dick > 3) { + r.push(`cock tents the front of ${his} lovely gown.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are hidden by ${his} lovely gown.`); + } else if (slave.dick > 0) { + r.push(`cock is hidden by ${his} lovely gown.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is concealed by ${his} lovely gown.`); + } else { + r.push(`pussy is concealed by ${his} lovely gown.`); + } + return r.join(" "); + }, + butt: function(slave) { + const r = []; + const {His, his} = getPronouns(slave); + r.push(`${His} slave gown`); + if (slave.butt > 10) { + r.push(`is tailored as tastefully as possible for ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`is tailored as tastefully as possible for ${his} massive`); + } else if (slave.butt > 3) { + r.push(`is tailored to flatter ${his} big`); + } else { + r.push(`tastefully clings to ${his}`); + } + r.push(`buttocks.`); + return r.join(" "); + }, + buttplug: function(slave) { + const r = []; + const {His, his} = getPronouns(slave); + if (slave.chastityAnus) { + r.push(`${His} pretty gown hides ${his} anal chastity accessory underneath.`); + } else { + r.push(`Though ${his} gown is very pretty, ${his} asshole is bare beneath it.`); + } + return r.join(" "); + }, + } + } +); diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index e1cebc9bf31f26d2c27a825565e79546585b189a..675d40ee6ed33e458a7c20644ff311b255169806 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -76,6 +76,7 @@ App.Data.defaultGameStateVariables = { dangerousPregnancy: 0, debugMode: 0, debugModeCustomFunction: 0, + debugModeEventSelection: 0, difficultySwitch: 0, disableLisping: 0, displayAssignments: 1, @@ -402,15 +403,12 @@ App.Data.resetOnNGPlus = { FSNonconformist: "", econAdvantage: 0, - foughtThisWeek: 0, /* rebellions */ slaveRebellion: 0, citizenRebellion: 0, repairTime: 3, arcRepairTime: 0, garrison: {}, - /* battle relevant vars */ - majorBattle: 0, SecExp: {}, reminderEntry: "", diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index 1fc2d9db490b0cf9e9b80e4d335218a724358ad5..de5939cdf8df054fbd2e8bba7992f21b8e101891 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -829,7 +829,7 @@ App.Data.Policies.Selection = { "policies.retirement.sex": [ { title: "Sexual Milestone Retirement", - get text() { return `slaves will be rewarded with their freedom once they have been fucked ${num(V.policies.retirement.sex)} times.`; }, + get text() { return `slaves will be rewarded with their freedom once they have been fucked ${V.policies.retirement.sex === 0 ? "a set number of" : num(V.policies.retirement.sex)} times.`; }, get activatedText() { const el = new DocumentFragment; let div = document.createElement("div"); @@ -859,7 +859,7 @@ App.Data.Policies.Selection = { "policies.retirement.milk": [ { title: "Productive Cow Retirement", - get text() { return `slaves will be rewarded with their freedom once they have given ${num(V.policies.retirement.milk)} liters of milk.`; }, + get text() { return `slaves will be rewarded with their freedom once they have given ${V.policies.retirement.milk === 0 ? "a set number of" : num(V.policies.retirement.milk)} liters of milk.`; }, get activatedText() { const el = new DocumentFragment; let div = document.createElement("div"); @@ -889,7 +889,7 @@ App.Data.Policies.Selection = { "policies.retirement.cum": [ { title: "Productive Bull Retirement", - get text() { return `slaves will be rewarded with their freedom once they have given ${num(V.policies.retirement.cum)} deciliters of cum.`; }, + get text() { return `slaves will be rewarded with their freedom once they have given ${V.policies.retirement.cum === 0 ? "a set number of" : num(V.policies.retirement.cum)} deciliters of cum.`; }, get activatedText() { const el = new DocumentFragment; let div = document.createElement("div"); @@ -919,7 +919,7 @@ App.Data.Policies.Selection = { "policies.retirement.births": [ { title: "Fertile Breeder Retirement", - get text() { return `slaves will be rewarded with their freedom once they add ${num(V.policies.retirement.births)} new slaves to the population of ${V.arcologies[0].name}.`; }, + get text() { return `slaves will be rewarded with their freedom once they add ${V.policies.retirement.births === 0 ? "a set number of" : num(V.policies.retirement.births)} new slaves to the population of ${V.arcologies[0].name}.`; }, get activatedText() { const el = new DocumentFragment; let div = document.createElement("div"); @@ -949,7 +949,7 @@ App.Data.Policies.Selection = { "policies.retirement.kills": [ { title: "Champion Gladiatrix Retirement", - get text() { return `slaves will be rewarded with their freedom once they have killed ${num(V.policies.retirement.kills)} of their fellow slaves in the pit.`; }, + get text() { return `slaves will be rewarded with their freedom once they have killed ${V.policies.retirement.kills === 0 ? "a set number of" : num(V.policies.retirement.kills)} of their fellow slaves in the pit.`; }, get activatedText() { const el = new DocumentFragment; let div = document.createElement("div"); @@ -1127,7 +1127,7 @@ App.Data.Policies.Selection = { V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && V.arcologies[0].FSPhysicalIdealistLaw === 0 && - V.arcologies[0].FSGenderFundamentalist > 20 + V.arcologies[0].FSGenderRadicalist > 20 ); }, } diff --git a/js/003-data/slaveBody.js b/js/003-data/slaveBody.js index 0eaa1bcecab25b7d23df3999615d735cbe3a1d7a..8f16e3a821df61e2702bcb79323831338a3a94aa 100644 --- a/js/003-data/slaveBody.js +++ b/js/003-data/slaveBody.js @@ -42,11 +42,11 @@ App.Data.Slave.body = new Map([ }], ["penis", { category: "torso", - requirements: (slave) => hasAnyNaturalArms(slave), + requirements: (slave) => slave.dick > 0, }], ["testicle", { category: "torso", - requirements: (slave) => hasAnyNaturalArms(slave), + requirements: (slave) => slave.scrotum > 0 && slave.balls > 0, isPair: true }], diff --git a/js/003-data/slaveMods.js b/js/003-data/slaveMods.js index 72411ca752541b629c86a2b4427c39440e91a901..7a6180316a05264e5357674b470f3b48236d1bea 100644 --- a/js/003-data/slaveMods.js +++ b/js/003-data/slaveMods.js @@ -511,13 +511,16 @@ App.Medicine.Modification.teeth = new Map([ `.` ); }, - get requirements() { return (V.seeExtreme === 1); } + get requirements() { return (V.seeExtreme === 1); }, + sharp: true }], ["fangs", { desc: ``, + sharp: true }], ["fang", { desc: ``, + sharp: true }], ["baby", { desc: ``, diff --git a/js/003-data/slaveTradePresets.js b/js/003-data/slaveTradePresets.js index 125ff536a66229c04456f909f982a2692a03ee64..b1ea0e2ce964e6c292c4c6042ce9166901f651e4 100644 --- a/js/003-data/slaveTradePresets.js +++ b/js/003-data/slaveTradePresets.js @@ -939,7 +939,7 @@ App.Data.NationalityPresets.Mod = new Map([ Zambian: 2844, Zimbabwean: 2355 }], - + ["Japan/Korea weighted sea trade", { Chinese: 2000, Korean: 2000, @@ -1153,7 +1153,7 @@ App.Data.NationalityPresets.Mod = new Map([ Kittitian: 2, Djiboutian: 2 }], - + ["Polish-Lithuanian Commonwealth with Silk Road", { Polish: 2000, Ukrainian: 2000, @@ -1368,8 +1368,8 @@ App.Data.NationalityPresets.Mod = new Map([ "Puerto Rican": 2, "Sri Lankan": 2 }], - - ["Carribean and Gulf of Mexico", { + + ["Caribbean and Gulf of Mexico", { Mexican: 1100, American: 1100, Guatemalan: 520, @@ -1583,5 +1583,5 @@ App.Data.NationalityPresets.Mod = new Map([ "São Toméan": 2, Sahrawi: 2 }], - + ]); diff --git a/js/003-data/slaveWearData.js b/js/003-data/slaveWearData.js index 4bc7787d66ff7b464d9c46bf01be9f90fc1d5e5c..5060a419b545b87807860d27fc225f91dd818bda 100644 --- a/js/003-data/slaveWearData.js +++ b/js/003-data/slaveWearData.js @@ -6,6 +6,24 @@ * @property {Set<FC.FutureSociety>} [hates] FS hates to see this outfit. */ + +/** + * @typedef {object} clothingDescription + * @property {function(App.Entity.SlaveState):string} [summary] General description of the outfit, tailored to the slave, but not hyper focused on a body part like boobs or butt. + * @property {function(App.Entity.SlaveState):string} [upperFace] + * @property {function(App.Entity.SlaveState):string} [hStyle] + * @property {function(App.Entity.SlaveState):string} [earPiercing] + * @property {function(App.Entity.SlaveState):string} [corsetPiercing] + * @property {function(App.Entity.SlaveState):string} [bellyImplant] + * @property {function(App.Entity.SlaveState):string} [belly] + * @property {function(App.Entity.SlaveState):string} [inflation] + * @property {function(App.Entity.SlaveState):string} [crotch] + * @property {function(App.Entity.SlaveState):string} [butt] + * @property {function(App.Entity.SlaveState):string} [buttplug] + * @property {function(App.Entity.SlaveState):string} [clothingCorset] + * @property {function(App.Entity.SlaveState):string} [boobs] + */ + /** * @typedef {object} clothes * @property {string} name @@ -16,20 +34,19 @@ * @property {boolean} [topless] * @property {boolean} [fuckdoll] * @property {string} [note] + * @property {clothingDescription} [desc] */ -/** - * @type {Map.<string, clothes>} The string here will be what is applied to the relevant slave property. Slave.clothes = "a bunny outfit", not "Bunny outfit". - */ -App.Data.clothes = new Map([ - ["a Fuckdoll suit", +/** @type {Map.<string, clothes>} The string here will be what is applied to the relevant slave property. Slave.clothes = "a bunny outfit", not "Bunny outfit".*/ +App.Data.clothes + .set("a Fuckdoll suit", { name: "Fuckdoll suit", exposure: 3, fuckdoll: true } - ], - ["attractive lingerie for a pregnant woman", + ) + .set("attractive lingerie for a pregnant woman", { name: "Maternity lingerie", fs: { @@ -39,8 +56,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.maternityLingerie === 1; }, exposure: 2 } - ], - ["a bunny outfit", + ) + .set("a bunny outfit", { name: "Bunny outfit", fs: { @@ -51,8 +68,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.bunny === 1; }, exposure: 1 } - ], - ["body oil", + ) + .set("body oil", { name: "Body oil", fs: { @@ -63,8 +80,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.oil === 1; }, exposure: 4 } - ], - ["a chattel habit", + ) + .set("a chattel habit", { name: "Chattel habit", fs: { @@ -74,8 +91,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.habit === 1; }, exposure: 3 } - ], - ["conservative clothing", + ) + .set("conservative clothing", { name: "Conservative clothing", fs: { @@ -86,8 +103,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.conservative === 1; }, exposure: 0 } - ], - ["harem gauze", + ) + .set("harem gauze", { name: "Harem gauze", fs: { @@ -97,8 +114,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.harem === 1; }, exposure: 1 } - ], - ["a huipil", + ) + .set("a huipil", { name: "Huipil", fs: { @@ -109,8 +126,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.huipil === 1; }, exposure: 0 } - ], - ["a kimono", + ) + .set("a kimono", { name: "Kimono", fs: { @@ -121,8 +138,8 @@ App.Data.clothes = new Map([ get requirements() { return (V.boughtItem.clothing.kimono === 1 || V.continent === "Japan"); }, exposure: 0 } - ], - ["a maternity dress", + ) + .set("a maternity dress", { name: "Maternity dress", fs: { @@ -132,8 +149,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.maternityDress === 1; }, exposure: 0, } - ], - ["a slutty qipao", + ) + .set("a slutty qipao", { name: "Qipao (slutty)", fs: { @@ -144,8 +161,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.qipao === 1; }, exposure: 2 } - ], - ["a long qipao", + ) + .set("a long qipao", { name: "Qipao (long)", fs: { @@ -155,8 +172,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["Imperial Plate", + ) + .set("Imperial Plate", { name: "Imperial Plate", fs: { @@ -167,8 +184,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.imperialarmor === 1; }, exposure: 0 } - ], - ["a tight Imperial bodysuit", + ) + .set("a tight Imperial bodysuit", { name: "Imperial Bodysuit", fs: { @@ -179,16 +196,16 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.imperialsuit === 1; }, exposure: 2 } - ], - ["stretch pants and a crop-top", + ) + .set("stretch pants and a crop-top", { name: "Stretch pants and a crop-top", fs: {unlocks: "FSHedonisticDecadence"}, get requirements() { return V.boughtItem.clothing.lazyClothes === 1; }, exposure: 0 } - ], - ["a toga", + ) + .set("a toga", { name: "Toga", fs: { @@ -199,8 +216,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.toga === 1; }, exposure: 1 } - ], - ["Western clothing", + ) + .set("Western clothing", { name: "Western clothing", fs: { @@ -210,8 +227,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.western === 1; }, exposure: 3 } - ], - ["a courtesan dress", + ) + .set("a courtesan dress", { name: "Courtesan dress", fs: { @@ -221,8 +238,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.courtesan === 1; }, exposure: 1 } - ], - ["a bimbo outfit", + ) + .set("a bimbo outfit", { name: "Bimbo outfit", fs: { @@ -232,8 +249,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.bimbo === 1; }, exposure: 2 } - ], - ["petite admi outfit", + ) + .set("petite admi outfit", { name: "Petite admi outfit", fs: { @@ -243,15 +260,15 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.petite === 1; }, exposure: 0 } - ], - ["battlearmor", + ) + .set("battlearmor", { name: "Battlearmor", get requirements() { return V.boughtItem.clothing.military === 1; }, exposure: 0 } - ], - ["a military uniform", + ) + .set("a military uniform", { name: "Military uniform", fs: { @@ -260,57 +277,57 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.military === 1; }, exposure: 0 } - ], - ["a red army uniform", + ) + .set("a red army uniform", { name: "Red Army uniform", get requirements() { return V.boughtItem.clothing.military === 1; }, exposure: 0 } - ], - ["battledress", + ) + .set("battledress", { name: "Battledress", get requirements() { return V.boughtItem.clothing.military === 1; }, exposure: 0 } - ], - ["a biyelgee costume", + ) + .set("a biyelgee costume", { name: "Biyelgee costume", get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["a dirndl", + ) + .set("a dirndl", { name: "Dirndl", get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["lederhosen", + ) + .set("lederhosen", { name: "Lederhosen", get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["a mounty outfit", + ) + .set("a mounty outfit", { name: "Mounty outfit", get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["a hanbok", + ) + .set("a hanbok", { name: "Hanbok", get requirements() { return V.boughtItem.clothing.cultural === 1; }, exposure: 0 } - ], - ["a burqa", + ) + .set("a burqa", { name: "Burqa", fs: { @@ -319,8 +336,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.middleEastern === 1 || V.continent === "the Middle East"; }, exposure: 0 } - ], - ["a niqab and abaya", + ) + .set("a niqab and abaya", { name: "Niqab and abaya", fs: { @@ -329,8 +346,8 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.middleEastern === 1 || V.continent === "the Middle East"; }, exposure: 0 } - ], - ["a hijab and blouse", + ) + .set("a hijab and blouse", { name: "Hijab and blouse", fs: { @@ -339,50 +356,50 @@ App.Data.clothes = new Map([ get requirements() { return (V.boughtItem.clothing.conservative === 1 || V.continent === "the Middle East"); }, exposure: 0 } - ], - ["a burkini", + ) + .set("a burkini", { name: "Burkini", get requirements() { return V.boughtItem.clothing.swimwear === 1 && (V.boughtItem.clothing.swimwear === 1 || V.continent === "the Middle East"); }, exposure: 1 } - ], - ["a Santa dress", + ) + .set("a Santa dress", { name: "Santa dress", get requirements() { return V.boughtItem.clothing.costume === 1; }, exposure: 2 } - ], - ["a klan robe", + ) + .set("a klan robe", { name: "Klan robe", get requirements() { return V.boughtItem.clothing.pol === 1; }, exposure: 0 } - ], - ["a slutty klan robe", + ) + .set("a slutty klan robe", { name: "Slutty klan robe", get requirements() { return V.boughtItem.clothing.pol === 1; }, exposure: 2 } - ], - ["a schutzstaffel uniform", + ) + .set("a schutzstaffel uniform", { name: "Schutzstaffel uniform", get requirements() { return V.boughtItem.clothing.pol === 1; }, exposure: 0 } - ], - ["a slutty schutzstaffel uniform", + ) + .set("a slutty schutzstaffel uniform", { name: "Slutty schutzstaffel uniform", get requirements() { return V.boughtItem.clothing.pol === 1; }, exposure: 2 } - ], - ["nice business attire", + ) + .set("nice business attire", { name: "Nice business attire", get requirements() { return V.boughtItem.clothing.career === 1; }, @@ -392,8 +409,8 @@ App.Data.clothes = new Map([ tolerates: new Set(["FSChattelReligionist"]), }, } - ], - ["a nice nurse outfit", + ) + .set("a nice nurse outfit", { name: "Nurse (nice)", fs: { @@ -402,15 +419,15 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.career === 1; }, exposure: 0 } - ], - ["a police uniform", + ) + .set("a police uniform", { name: "Police uniform", get requirements() { return V.boughtItem.clothing.career === 1; }, exposure: 0 } - ], - ["a nice maid outfit", + ) + .set("a nice maid outfit", { name: "Maid (nice)", get requirements() { return V.boughtItem.clothing.career === 1 || V.PC.career === "servant" || V.PC.career === "handmaiden" || V.PC.career === "child servant"; }, @@ -420,179 +437,179 @@ App.Data.clothes = new Map([ tolerates: new Set(["FSChattelReligionist"]), }, } - ], - ["a ball gown", + ) + .set("a ball gown", { name: "Ballgown", get requirements() { return V.boughtItem.clothing.dresses === 1; }, exposure: 0 } - ], - ["a gothic lolita dress", + ) + .set("a gothic lolita dress", { name: "Gothic lolita dress", get requirements() { return V.boughtItem.clothing.dresses === 1; }, exposure: 0 } - ], - ["a cybersuit", + ) + .set("a cybersuit", { name: "Cybersuit", get requirements() { return V.boughtItem.clothing.bodysuits === 1; }, exposure: 0 } - ], - ["a latex catsuit", + ) + .set("a latex catsuit", { name: "Latex catsuit", get requirements() { return V.boughtItem.clothing.bodysuits === 1; }, exposure: 1 } - ], - ["a button-up shirt and panties", + ) + .set("a button-up shirt and panties", { name: "Button-up shirt and panties", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2 } - ], - ["a button-up shirt", + ) + .set("a button-up shirt", { name: "Button-up shirt", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["cutoffs", + ) + .set("cutoffs", { name: "Cutoffs", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2 } - ], - ["jeans", + ) + .set("jeans", { name: "Jeans", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2, topless: true } - ], - ["leather pants and a tube top", + ) + .set("leather pants and a tube top", { name: "Leather pants and a tube top", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 1 } - ], - ["leather pants", + ) + .set("leather pants", { name: "Leather pants", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2, topless: true } - ], - ["an oversized t-shirt", + ) + .set("an oversized t-shirt", { name: "Oversized t-shirt", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["a sweater and cutoffs", + ) + .set("a sweater and cutoffs", { name: "Sweater and cutoffs", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 0 } - ], - ["a sweater and panties", + ) + .set("a sweater and panties", { name: "Sweater and panties", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2 } - ], - ["a sweater", + ) + .set("a sweater", { name: "Sweater", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["a t-shirt and jeans", + ) + .set("a t-shirt and jeans", { name: "T-shirt and jeans", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 0 } - ], - ["a t-shirt and panties", + ) + .set("a t-shirt and panties", { name: "T-shirt and panties", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2 } - ], - ["a t-shirt", + ) + .set("a t-shirt", { name: "T-shirt", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["a tank-top and panties", + ) + .set("a tank-top and panties", { name: "Tank-top and panties", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 2 } - ], - ["a tank-top", + ) + .set("a tank-top", { name: "Tank-top", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["a tube top", + ) + .set("a tube top", { name: "Tube top", get requirements() { return V.boughtItem.clothing.casual === 1; }, exposure: 3 } - ], - ["boyshorts", + ) + .set("boyshorts", { name: "Boyshorts", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 2, topless: true } - ], - ["a bra", + ) + .set("a bra", { name: "Bra", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 3 } - ], - ["kitty lingerie", + ) + .set("kitty lingerie", { name: "Kitty lingerie", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 2 } - ], - ["panties and pasties", + ) + .set("panties and pasties", { name: "Panties and pasties", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 2 } - ], - ["a skimpy loincloth", + ) + .set("a skimpy loincloth", { name: "Skimpy loincloth", fs: { @@ -601,175 +618,175 @@ App.Data.clothes = new Map([ get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 3 } - ], - ["a thong", + ) + .set("a thong", { name: "Thong", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 3, topless: true } - ], - ["pasties", + ) + .set("pasties", { name: "Pasties", get requirements() { return V.boughtItem.clothing.underwear === 1; }, exposure: 3 } - ], - ["leather pants and pasties", + ) + .set("leather pants and pasties", { name: "Leather pants and pasties", get requirements() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; }, exposure: 2, } - ], - ["a t-shirt and thong", + ) + .set("a t-shirt and thong", { name: "T-shirt and thong", get requirements() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; }, exposure: 3, } - ], - ["a tube top and thong", + ) + .set("a tube top and thong", { name: "Tube top and thong", get requirements() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; }, exposure: 3, } - ], - ["an oversized t-shirt and boyshorts", + ) + .set("an oversized t-shirt and boyshorts", { name: "Oversized t-shirt and boyshorts", get requirements() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; }, exposure: 0, } - ], - ["sport shorts and a sports bra", + ) + .set("sport shorts and a sports bra", { name: "Sport shorts and a sports bra", get requirements() { return V.boughtItem.clothing.sports === 1; }, exposure: 1, } - ], - ["sport shorts", + ) + .set("sport shorts", { name: "Sport shorts", get requirements() { return V.boughtItem.clothing.sports === 1; }, exposure: 2, topless: true } - ], - ["a sports bra", + ) + .set("a sports bra", { name: "Sports bra", get requirements() { return V.boughtItem.clothing.sports === 1; }, exposure: 3 } - ], - ["sport shorts and a t-shirt", + ) + .set("sport shorts and a t-shirt", { name: "Sport shorts and a t-shirt", get requirements() { return V.boughtItem.clothing.sports === 1 && V.boughtItem.clothing.casual === 1; }, exposure: 0 } - ], - ["a nice pony outfit", + ) + .set("a nice pony outfit", { name: "Pony outfit (nice)", get requirements() { return V.boughtItem.clothing.pony === 1; }, exposure: 1 } - ], - ["a slutty pony outfit", + ) + .set("a slutty pony outfit", { name: "Pony outfit (slutty)", get requirements() { return V.boughtItem.clothing.pony === 1; }, exposure: 2 } - ], - ["a monokini", + ) + .set("a monokini", { name: "Monokini", get requirements() { return V.boughtItem.clothing.swimwear === 1; }, exposure: 3, note: "Boob fetishists enjoy." } - ], - ["a one-piece swimsuit", + ) + .set("a one-piece swimsuit", { name: "One-piece swimsuit", get requirements() { return V.boughtItem.clothing.swimwear === 1; }, exposure: 1 } - ], - ["a striped bra", + ) + .set("a striped bra", { name: "Striped bra", get requirements() { return V.boughtItem.clothing.pantsu === 1 || V.continent === "Japan"; }, exposure: 3 } - ], - ["striped panties", + ) + .set("striped panties", { name: "Striped panties", get requirements() { return V.boughtItem.clothing.pantsu === 1 || V.continent === "Japan"; }, exposure: 2, topless: true } - ], - ["striped underwear", + ) + .set("striped underwear", { name: "Striped underwear", get requirements() { return V.boughtItem.clothing.pantsu === 1 || V.continent === "Japan"; }, exposure: 2, topless: true } - ], + ) // "Normal" things: - ["an apron", + .set("an apron", { name: "Apron", exposure: 2, note: "Increases just devotion for submissives, humiliation fetishists and visibly pregnant pregnancy fetishists regardless of devotion level." } - ], - ["slutty jewelry", + ) + .set("slutty jewelry", { name: "Bangles", exposure: 3, fs: {loves: new Set(["FSEgyptianRevivalist"])} } - ], - ["clubslut netting", + ) + .set("clubslut netting", { name: "Clubslut netting", exposure: 3, fs: {loves: new Set(["FSBodyPurist", "FSIntellectualDependency"])}, } - ], - ["cutoffs and a t-shirt", + ) + .set("cutoffs and a t-shirt", { name: "Cutoffs and a t-shirt", exposure: 0 } - ], - ["a comfortable bodysuit", + ) + .set("a comfortable bodysuit", { name: "Bodysuit", exposure: 1, fs: {loves: new Set(["FSBodyPurist"])}, } - ], - ["a cheerleader outfit", + ) + .set("a cheerleader outfit", { name: "Cheerleader", exposure: 2, fs: {loves: new Set(["FSGenderFundamentalist", "FSYouthPreferentialist"])}, } - ], - ["a fallen nuns habit", + ) + .set("a fallen nuns habit", { name: "Fallen nun", fs: { @@ -777,8 +794,8 @@ App.Data.clothes = new Map([ }, exposure: 3 } - ], - ["a hijab and abaya", + ) + .set("a hijab and abaya", { name: "Hijab and abaya", fs: { @@ -786,86 +803,86 @@ App.Data.clothes = new Map([ }, exposure: 0 } - ], - ["a leotard", + ) + .set("a leotard", { name: "Leotard", exposure: 1, fs: {loves: new Set(["FSBodyPurist"])}, } - ], - ["a slutty maid outfit", + ) + .set("a slutty maid outfit", { name: "Maid (slutty)", exposure: 2, fs: {loves: new Set(["FSSlaveProfessionalism", "FSIntellectualDependency"])}, } - ], - ["a mini dress", + ) + .set("a mini dress", { name: "Mini dress", exposure: 2 } - ], - ["attractive lingerie", + ) + .set("attractive lingerie", { name: "Nice lingerie", exposure: 2 } - ], - ["a slutty nurse outfit", + ) + .set("a slutty nurse outfit", { name: "Nurse (slutty)", exposure: 2 } - ], - ["overalls", + ) + .set("overalls", { name: "Overalls", exposure: 1 } - ], - ["panties", + ) + .set("panties", { name: "Panties", exposure: 2, topless: true } - ], - ["a scalemail bikini", + ) + .set("a scalemail bikini", { name: "Scalemail bikini", exposure: 2 } - ], - ["a schoolgirl outfit", + ) + .set("a schoolgirl outfit", { name: "Schoolgirl", exposure: 1, fs: {loves: new Set(["FSGenderFundamentalist", "FSYouthPreferentialist"])}, } - ], - ["a slutty outfit", + ) + .set("a slutty outfit", { name: "Slutty outfit", exposure: 2, fs: {loves: new Set(["FSIntellectualDependency"])}, } - ], - ["spats and a tank top", + ) + .set("spats and a tank top", { name: "Spats and a tank top", exposure: 0 } - ], - ["a string bikini", + ) + .set("a string bikini", { name: "String bikini", exposure: 3, fs: {loves: new Set(["FSBodyPurist", "FSIntellectualDependency"])}, } - ], - ["a succubus outfit", + ) + .set("a succubus outfit", { name: "Succubus costume", fs: { @@ -873,8 +890,8 @@ App.Data.clothes = new Map([ }, exposure: 3 } - ], - ["slutty business attire", + ) + .set("slutty business attire", { name: "Suit (slutty)", exposure: 2, @@ -882,22 +899,15 @@ App.Data.clothes = new Map([ loves: new Set(["FSMaturityPreferentialist", "FSSlaveProfessionalism"]) }, } - ], - ["a halter top dress", + ) + .set("a halter top dress", { name: "Haltertop dress", exposure: 0, fs: {loves: new Set(["FSBodyPurist", "FSSlaveProfessionalism"])}, } - ], - ["a slave gown", - { - name: "Slave gown", - exposure: 0, - fs: {loves: new Set(["FSBodyPurist"])}, - } - ], - ["chains", + ) + .set("chains", { name: "Chains", fs: { @@ -910,8 +920,8 @@ App.Data.clothes = new Map([ harsh: true, note: "Increases devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism." } - ], - ["no clothing", + ) + .set("no clothing", { name: "Go naked", exposure: 4, @@ -921,8 +931,8 @@ App.Data.clothes = new Map([ tolerates: new Set(["FSChattelReligionist"]), }, } - ], - ["a penitent nuns habit", + ) + .set("a penitent nuns habit", { name: "Penitent nun", fs: { @@ -932,8 +942,8 @@ App.Data.clothes = new Map([ harsh: true, note: "Increases devotion and fear but damages health, may cause masochism." } - ], - ["restrictive latex", + ) + .set("restrictive latex", { name: "Restrictive latex", fs: {loves: new Set(["FSBodyPurist"])}, @@ -941,8 +951,8 @@ App.Data.clothes = new Map([ harsh: true, note: "Increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives." } - ], - ["shibari ropes", + ) + .set("shibari ropes", { name: "Shibari ropes", fs: { @@ -953,8 +963,8 @@ App.Data.clothes = new Map([ harsh: true, note: "Increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives." } - ], - ["uncomfortable straps", + ) + .set("uncomfortable straps", { name: "Uncomfortable straps", exposure: 3, @@ -965,8 +975,8 @@ App.Data.clothes = new Map([ }, note: "Increases devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism." } - ] -]); + ); + /** * @typedef {object} slaveWear * @property {string} name diff --git a/player variables documentation - Pregmod.txt b/player variables documentation - Pregmod.txt index 1eddbc1385ad5c208599a727f86fa3316b49d45d..d8fd24f46feb390f6093293bbf6c92c4cb7be7fb 100644 --- a/player variables documentation - Pregmod.txt +++ b/player variables documentation - Pregmod.txt @@ -541,6 +541,21 @@ face: 100 +lips: + +lip size (0-100) +0 - 10 - thin +11 - 20 - normal +21 - 40 - pretty +41 - 70 - plush +71 - 95 - huge (lisps) +96 - 100- facepussy (mute) + +lipsImplant: + +how large her lip implants are +See .lips + reservedChildren: how many of your children will be added to the incubator diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index 5d0c318ff3484e04543706ca3428502ca6761555..2f2d540f2fbb6c4994a03913d1ca9485f34f296b 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -1,6 +1,6 @@ App.Version = { base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. - pmod: "3.9.6", + pmod: "4.0.0-alpha.0", commitHash: null, - release: 1128 // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. + release: 1130 // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. }; diff --git a/src/004-base/facility.js b/src/004-base/facility.js index 8a73a5b25e5e1201d32b852a44768becdd384fc6..dbfcf5be075cab9fc60d10ab5d5cd08a70547730 100644 --- a/src/004-base/facility.js +++ b/src/004-base/facility.js @@ -11,6 +11,7 @@ App.Data.FacilityDesc = class { this.defaultJob = ""; /** @type {FC.Data.ManagerJobDesc} */ this.manager = null; + this.decorated = false; } }; @@ -321,7 +322,7 @@ App.Entity.Facilities.Facility = class { /** Facility slave capacity * @returns {number} */ get capacity() { - return (typeof V[this.desc.baseName] === "object") ? V[this.desc.baseName].capacity : V[this.desc.baseName]; + return V[this.desc.baseName] !== null && ((typeof V[this.desc.baseName] === "object") ? V[this.desc.baseName].capacity : V[this.desc.baseName]); } get established() { @@ -381,7 +382,35 @@ App.Entity.Facilities.Facility = class { * @returns {number} */ upgrade(name) { - return this.option("Upgrade" + name); + return (typeof V[this.desc.baseName] === "object") ? V[this.desc.baseName].upgrade[name] : this.option("Upgrade" + name); + } + + /** Can this facility be decorated? */ + get isDecorated() { + return this.desc.decorated; + } + + /** How is this facility currently decorated? + * @returns {FC.FutureSocietyDeco} + */ + get decoration() { + if (!this.isDecorated) { + return "standard"; + } + return (typeof V[this.desc.baseName] === "object") ? V[this.desc.baseName].decoration : V[this.desc.baseName + "Decoration"]; + } + + /** Configure facility decoration + * @param {FC.FutureSocietyDeco} val + */ + set decoration(val) { + if (this.isDecorated) { + if (typeof V[this.desc.baseName] === "object") { + V[this.desc.baseName].decoration = val; + } else { + V[this.desc.baseName + "Decoration"] = val; + } + } } /** diff --git a/src/005-passages/facilitiesPassages.js b/src/005-passages/facilitiesPassages.js index 7cc3640ea05ce90f289661635ec2bcd189f755c3..2e1a0d93f97dfb60ee3e8926852651b9c334f70f 100644 --- a/src/005-passages/facilitiesPassages.js +++ b/src/005-passages/facilitiesPassages.js @@ -1,8 +1,12 @@ /* ### Standard Facilities ### */ -new App.DomPassage("Pit", () => { return App.Facilities.Pit.pit(); }, ["jump-to-safe", "jump-from-safe"]); +new App.DomPassage("Farmyard", () => { return App.Facilities.Farmyard.farmyard(); }, ["jump-to-safe", "jump-from-safe"]); new App.DomPassage("Incubator", () => { return App.UI.incubator(); }, ["jump-to-safe", "jump-from-safe"]); +new App.DomPassage("Pit", () => { return App.Facilities.Pit.pit(); }, ["jump-to-safe", "jump-from-safe"]); + +new App.DomPassage("Spa", () => { return App.Facilities.Spa.spa(); }, ["jump-to-safe", "jump-from-safe"]); + /* ### Slave Interact Facilities ### */ new App.DomPassage("Wardrobe", () => { @@ -40,18 +44,144 @@ new App.DomPassage("Agent Select", V.nextLink = "Neighbor Interact"; V.encyclopedia = "Agents"; - const f = document.createDocumentFragment(); - App.UI.DOM.appendNewElement("h2", f, "Appoint an Agent from your devoted slaves"); + return App.Facilities.AgentSelect(); + }, ["jump-from-safe"] +); - f.append(App.UI.SlaveList.slaveSelectionList( - s => App.Entity.facilities.arcologyAgent.manager.checkRequirements(s), - (slave) => App.UI.DOM.passageLink(SlaveFullName(slave), "Agent Workaround", - () => { V.i = V.slaves.findIndex((s) => s.ID === slave.ID); }), - s => App.Entity.facilities.arcologyAgent.manager.slaveHasExperience(s) - )); +new App.DomPassage("Attendant Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Spa"; + V.encyclopedia = "Attendant"; - return f; - }, ["jump-from-safe"] + return App.Facilities.AttendantSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("BG Select", + () => { + V.nextButton = "Back to Main"; + V.nextLink = "Main"; + V.encyclopedia = "Bodyguard"; + + return App.Facilities.BGSelect(); + }, ["jump-to-safe", "jump-from-safe"] +); + +new App.DomPassage("Concubine Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Master Suite"; + V.encyclopedia = "Concubine"; + + return App.Facilities.ConcubineSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("DJ Select", + () => { + return App.Facilities.DJSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("HG Select", + () => { + V.nextButton = "Back to Main"; + V.nextLink = "Main"; + V.encyclopedia = "Head Girl"; + + return App.Facilities.HGSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Madam Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Brothel"; + V.encyclopedia = "Madam"; + + return App.Facilities.MadamSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Milkmaid Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Dairy"; + V.encyclopedia = "Milkmaid"; + + return App.Facilities.MilkmaidSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Nurse Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Clinic"; + V.encyclopedia = "Nurse"; + + return App.Facilities.NurseSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Recruiter Select", + () => { + V.nextButton = "Back to Main"; + V.nextLink = "Main"; + V.encyclopedia = "Recruiter"; + + return App.Facilities.RecruiterSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Schoolteacher Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Schoolroom"; + V.encyclopedia = "Schoolteacher"; + + return App.Facilities.SchoolTeacherSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Stewardess Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Servants' Quarters"; + V.encyclopedia = "Stewardess"; + + return App.Facilities.StewardessSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Wardeness Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Cellblock"; + V.encyclopedia = "Wardeness"; + + return App.Facilities.WardenessSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Farmer Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Farmyard"; + V.encyclopedia = "Farmer"; + + return App.Facilities.FarmerSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] +); + +new App.DomPassage("Matron Select", + () => { + V.nextButton = "Back"; + V.nextLink = "Nursery"; + V.encyclopedia = "Matron"; + + return App.Facilities.MatronSelect(); + }, ["jump-to-safe", "jump-hidden", "jump-from-safe"] ); new App.DomPassage("Rules Assistant", diff --git a/src/005-passages/interactPassages.js b/src/005-passages/interactPassages.js index 1ad9e9e38159f468da7a691a3bab5e717f1beb67..82133efb1b3de8a4a52baa89c7c3386f30aab907 100644 --- a/src/005-passages/interactPassages.js +++ b/src/005-passages/interactPassages.js @@ -135,14 +135,6 @@ new App.DomPassage("BreedingTest", } ); -new App.DomPassage("PC Surgery Degradation", - () => { - V.nextButton = "Continue"; - V.nextLink = "Manage Personal Affairs"; - return App.UI.PCSurgeryDegradation(); - } -); - new App.DomPassage("Aztec Slave Sacrifice Penance", () => { V.nextButton = "Back to Main"; @@ -161,43 +153,62 @@ new App.DomPassage("Aztec Slave Sacrifice Life", } ); -new App.DomPassage("fLips", +new App.DomPassage("Abort", () => { - return App.Interact.fLips(getSlave(V.AS)); + V.nextButton = "Back"; + V.nextLink = "Slave Interact"; + return App.Interact.abort(getSlave(V.AS)); } ); -new App.DomPassage("fBoobs", +new App.DomPassage("FAnimalImpreg", () => { - return App.Interact.fBoobs(getSlave(V.AS)); + V.nextButton = "Back"; + V.nextLink = "Slave Interact"; + return App.Interact.fAnimalImpreg(getSlave(V.AS)); } ); -new App.DomPassage("fVagina", +new App.DomPassage("FSlaveSlaveDick", () => { - return App.Interact.fVagina(getSlave(V.AS)); + V.nextLink = "Slave Interact"; + V.nextButton = "Back"; + return App.Interact.fSlaveSlaveDick(getSlave(V.AS)); } ); -new App.DomPassage("fRival", +new App.DomPassage("FSlaveSlaveVag", () => { - return App.Interact.fRival(getSlave(V.AS)); + V.nextLink = "Slave Interact"; + V.nextButton = "Back"; + return App.Interact.fSlaveSlaveVag(getSlave(V.AS)); } ); -new App.DomPassage("fButt", + +new App.DomPassage("Matchmaking", () => { - return App.Interact.fButt(getSlave(V.AS)); + if (lastVisited("Child Interact") === 1) { + V.nextLink = "Incubator"; + } else { + V.nextLink = "Slave Interact"; + } + V.nextButton = "Continue"; + return App.Interact.matchmaking(getSlave(V.AS)); } ); -new App.DomPassage("fDick", +new App.DomPassage("FSelf", () => { - return App.Interact.fDick(getSlave(V.AS)); + V.nextLink = "Main"; + V.nextButton = "Back"; + return App.Interact.fSelf(); } ); -new App.DomPassage("fAnus", +new App.DomPassage("FMarry", () => { - return App.Interact.fAnus(getSlave(V.AS)); + V.nextButton = "Back"; + V.nextLink = "Slave Interact"; + return App.Interact.fMarry(getSlave(V.AS)); } ); diff --git a/src/005-passages/managePassages.js b/src/005-passages/managePassages.js index e3f55468fa8e3954913a3d8e9f2e0eef02e11f7f..7272233433c8ca9e537bda27e6bc70586524e352 100644 --- a/src/005-passages/managePassages.js +++ b/src/005-passages/managePassages.js @@ -84,3 +84,10 @@ new App.DomPassage("Farmyard Animals", return App.Facilities.Farmyard.animals(); } ); + + +new App.DomPassage("Elective Surgery", + () => { + return App.UI.electiveSurgery(); + } +); diff --git a/src/Corporation/corporate.js b/src/Corporation/corporate.js index c4c0a55e7a4891359ad00f179c7c5c9f04162c3e..b2b5d6729154cdfa477e3a9455d8f8a5bf809dee 100644 --- a/src/Corporation/corporate.js +++ b/src/Corporation/corporate.js @@ -18,7 +18,8 @@ globalThis.averageRange = class { } }; globalThis.evenFillArray = function(array, amount, lookupAmount) { - let perItem, changed; + let perItem; + let changed; let retval = []; do { let newArray = []; diff --git a/src/Mods/Catmod/interaction/fPet.js b/src/Mods/Catmod/interaction/fPet.js new file mode 100644 index 0000000000000000000000000000000000000000..ed7c892e707e6511161b75af228384822d1c1498 --- /dev/null +++ b/src/Mods/Catmod/interaction/fPet.js @@ -0,0 +1,144 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fPet = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, girl + } = getPronouns(slave); + + const {title: Master} = getEnunciation(slave); + + r.push(`You tell ${slave.slaveName} to`); + if (!hasAnyLegs(slave)) { + r.push(`have another slave set ${him} up onto your desk.`); + } else if (tooBigBreasts(slave)) { + r.push(`have another slave help ${him} heft ${his} tits so ${he} can be near you.`); + } else if (tooBigBelly(slave)) { + r.push(`have another slave help ${him} heft ${his} belly so ${he} can be near you.`); + } else if (tooBigButt(slave)) { + r.push(`have another slave help ${him} heft ${his} ass cheeks so ${he} can be near you.`); + } else if (tooBigDick(slave)) { + r.push(`have another slave help ${him} heft ${his} cock so ${he} can be near you.`); + } else if (tooBigBalls(slave)) { + r.push(`have another slave help ${him} heft ${his} balls so ${he} can be near you.`); + } else if (tooFatSlave(slave)) { + r.push(`have another slave help ${him} up so ${he} can be near you.`); + } else { + r.push(`move closer towards you.`); + } + + r.push(`Once ${he}'s at an acceptable petting range, you bring the overgrown cat into your embrace and gingerly run a hand from the top of ${his} head down ${his} spine, coursing through the soft fur in a massage-like petting motion.`); + + if (slave.fetish === "mindbroken") { + r.push(`${He} accepts the petting robotically, barely even comprehending what you're doing. The pleasant scritch of your fingers against ${his} back produces some sort of guttural purring sound, but that conveys the extent of the mindbroken cat's response.`); + } else if (slave.devotion > 75) { + r.push(`The cat${girl} loudly purrs and eagerly rubs up against you, arching ${his} back to give you a full range over the silky fur. ${His} tail flicks back and forth happily as you pet ${him}, flicking up to tease against your chin as you pet the purring kitten. When you finally retract your hand, ${slave.slaveName} bats ${his} eyelashes at you, still purring a little.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes glimmer`); + } else { + r.push(`expression stares`); + } + r.push(`at you contentedly.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs a little thank-you for the pets.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"Why'd you stop, ${Master}? Can I suck you off so you keep going?"`)); + } + } else if (slave.devotion > 50) { + r.push(`The cat${girl} presents ${his} back to you eagerly for petting, purring softly as you stroke your hand up and down ${his} soft fur. It's easy to let your hand practically get lost in the silky material, especially since the eager cat does all ${he} can to keep your hand running up and down ${his} spine in tender petting motions. When you finally retract your hand, ${slave.slaveName} bats ${his} eyelashes at you, still purring a little.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes glimmer`); + } else { + r.push(`expression stares`); + } + r.push(`at you contentedly.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(`${He} mrowls,`); + + r.push(Spoken(slave, `"That felt great, ${Master}. Can you pet me more often?"`)); + } + } else if (slave.devotion > 20) { + r.push(`The cat${girl} puts up a little façade of resistance, but just about immediately melts into your hands, giving you a full range of motion to pet and rub at ${his} silky fur. ${He} lets you pet along the full length of ${his} spine, rubbing under ${his} chin and exploring the curves of ${his} ass and breasts in a way that's, for once, entirely nonsexual. After about a minute, ${he} starts to purr at your petting, rumbling against your chest, and ${he} flutters ${his} eyelashes wistfully when you finally remove your hand.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes glint`); + } else { + r.push(`expression stares`); + } + r.push(`at you with a smug aura.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs a little thank-you for the pets.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"Thanks, ${Master}. That was nice."`)); + } + } else if (slave.devotion < -20 && slave.trust >= 20) { + r.push(`${He} glowers at you as you start to pet ${him}, clearly doing ${his} best to express nonverbal dissatisfaction with you. Despite that, ${he} can't help but to shiver somewhat as you gingerly pet the fluffy cat, rumbling with a deep purr that betrays ${his} distaste for you. ${He} glares up at you the entire time, even as ${he} purrs, ${his} tail swishing about in the air as you pet the furry thing vigorously. When you finally retract your hand, ${he} acts like ${he} didn't enjoy it.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes glower`); + } else { + r.push(`expression glowers`); + } + r.push(`at you.`); + } else if (!canTalk(slave)) { + r.push(`${He} makes a rude sign gesture.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"I'm a person, not some kind of dumb animal."`)); + } + } else if (slave.devotion >= -20 && slave.trust >= -20) { + r.push(`${He} flinches back when you raise your hand towards ${him}, expecting to be hit. The tender petting that occurs obviously shocks ${him}, and for the first minute it looks like ${he}'s expecting you to change your mind at any moment and hit ${him} anyway. When you don't, only then does the scared cat${girl} allow ${himself} to get pet properly, slightly arching ${his} back to give you a range of motion against the silky fur as you stroke and play with your bioengineered cat${girl}. When you finally retract your hand, ${he} bats ${his} eyelashes at you, confused.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} just stares at you, blinking a few times.`); + } else if (!canTalk(slave)) { + r.push(`${He} makes a confused sign gesture.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"I-Is that it, ${Master}..?"`)); + } + } else if (slave.trust < -20) { + r.push(`${He} flinches back when you raise your hand towards ${him}, expecting to be hit. The tender petting that occurs obviously shocks ${him}, and for the first minute it looks like ${he}'s expecting you to change your mind at any moment and hit ${him} anyway. When you don't, only then does the scared cat${girl} allow ${himself} to get pet properly, slightly arching ${his} back to give you a range of motion against the silky fur as you stroke and play with your bioengineered cat${girl}. When you finally retract your hand, ${he} bats ${his} eyelashes at you, confused.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} just stares at you, blinking a few times.`); + } else if (!canTalk(slave)) { + r.push(`${He} makes a confused sign gesture.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"I-Is that it, ${Master}..?"`)); + } + } else { + r.push(`The cat${girl} puts up a little façade of resistance, but doesn't really fight back against your petting, giving you a full range of motion to pet and rub at ${his} silky fur. ${He} lets you pet along the full length of ${his} spine, rubbing under ${his} chin and exploring the curves of ${his} ass and breasts in a way that's, for once, entirely nonsexual. Despite ${himself}, ${he} can't help but to purr a little by the time you finally remove ${his} hands.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes glint`); + } else { + r.push(`expression stares`); + } + r.push(`at you uncertainly.`); + } else if (!canTalk(slave)) { + r.push(`${He} makes a huffy mrowling noise.`); + } else { + r.push(`${He} mrowls,`); + r.push(Spoken(slave, `"Thanks, I guess..."`)); + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/Mods/Catmod/interaction/fPet.tw b/src/Mods/Catmod/interaction/fPet.tw deleted file mode 100644 index 4cdc3288775b63297b705b50b44101706b47f024..0000000000000000000000000000000000000000 --- a/src/Mods/Catmod/interaction/fPet.tw +++ /dev/null @@ -1,101 +0,0 @@ -:: FPet [nobr no-history] - -<<run Enunciate(getSlave($AS))>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You tell <<= getSlave($AS).slaveName>> to -<<if !hasAnyLegs(getSlave($AS))>> - have another slave set $him up onto your desk. -<<elseif tooBigBreasts(getSlave($AS))>> - have another slave help $him heft $his tits so $he can be near you. -<<elseif tooBigBelly(getSlave($AS))>> - have another slave help $him heft $his belly so $he can be near you. -<<elseif tooBigButt(getSlave($AS))>> - have another slave help $him heft $his ass cheeks so $he can be near you. -<<elseif tooBigDick(getSlave($AS))>> - have another slave help $him heft $his cock so $he can be near you. -<<elseif tooBigBalls(getSlave($AS))>> - have another slave help $him heft $his balls so $he can be near you. -<<elseif tooFatSlave(getSlave($AS))>> - have another slave help $him up so $he can be near you. -<<else>> - move closer towards you. -<</if>> - -Once $he's at an acceptable petting range, you bring the overgrown cat into your embrace and gingerly run a hand from the top of $his head down $his spine, coursing through the soft fur in a massage-like petting motion. - -<<if (getSlave($AS).fetish == "mindbroken")>> -$He accepts the petting robotically, barely even comprehending what you're doing. The pleasant scritch of your fingers against $his back produces some sort of guttural purring sound, but that conveys the extent of the mindbroken cat's response. - -<<elseif (getSlave($AS).devotion > 75)>> -The cat<<= $girl>> loudly purrs and eagerly rubs up against you, arching $his back to give you a full range over the silky fur. $His tail flicks back and forth happily as you pet $him, flicking up to tease against your chin as you pet the purring kitten. When you finally retract your hand, <<= getSlave($AS).slaveName>> bats $his eyelashes at you, still purring a little. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes glimmer<<else>>expression stares<</if>> at you contentedly. - <<elseif !canTalk(getSlave($AS))>> - $He signs a little thank-you for the pets. - <<else>> - $He mrowls, "Why'd you <<s>>top, <<Master>>? Can I <<s>>uck you off <<s>>o you keep going?" - <</if>> - - -<<elseif (getSlave($AS).devotion > 50)>> -The cat<<= $girl>> presents $his back to you eagerly for petting, purring softly as you stroke your hand up and down $his soft fur. It's easy to let your hand practically get lost in the silky material, especially since the eager cat does all $he can to keep your hand running up and down $his spine in tender petting motions. When you finally retract your hand, <<= getSlave($AS).slaveName>> bats $his eyelashes at you, still purring a little. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes glimmer<<else>>expression stares<</if>> at you contentedly. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - $He mrowls, "That felt great, <<Master>>. Can you pet me more often?" - <</if>> - -<<elseif (getSlave($AS).devotion > 20)>> -The cat<<= $girl>> puts up a little facade of resistance, but just about immediately melts into your hands, giving you a full range of motion to pet and rub at $his silky fur. $He lets you pet along the full length of $his spine, rubbing under $his chin and exploring the curves of $his ass and breasts in a way that's, for once, entirely nonsexual. After about a minute, $he starts to purr at your petting, rumbling against your chest, and $he flutters $his eyelashes wistfully when you finally remove your hand. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes glint<<else>>expression stares<</if>> at you with a smug aura. - <<elseif !canTalk(getSlave($AS))>> - $He signs a little thank-you for the pets. - <<else>> - $He mrowls, "Thank<<s>>, <<Master>>. That wa<<s>> nice." - <</if>> - -<<elseif (getSlave($AS).devotion < -20) && (getSlave($AS).trust >= 20)>> -$He glowers at you as you start to pet $him, clearly doing $his best to express nonverbal dissatisfaction with you. Despite that, $he can't help but to shiver somewhat as you gingerly pet the fluffy cat, rumbling with a deep purr that betrays $his distaste for you. $He glares up at you the entire time, even as $he purrs, $his tail swishing about in the air as you pet the furry thing vigorously. When you finally retract your hand, $he acts like $he didn't enjoy it. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes glower<<else>>expression glowers<</if>> at you. - <<elseif !canTalk(getSlave($AS))>> - $He makes a rude sign gesture. - <<else>> - $He mrowls, "I'm a per<<s>>on, not <<s>>ome kind of dumb animal." - <</if>> - -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust >= -20)>> -$He flinches back when you raise your hand towards $him, expecting to be hit. The tender petting that occurs obviously shocks $him, and for the first minute it looks like $he's expecting you to change your mind at any moment and hit $him anyway. When you don't, only then does the scared cat<<= $girl>> allow $himself to get pet properly, slightly arching $his back to give you a range of motion against the silky fur as you stroke and play with your bioengineered cat<<= $girl>>. When you finally retract your hand, $he bats $his eyelashes at you, confused. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He just stares at you, blinking a few times. - <<elseif !canTalk(getSlave($AS))>> - $He makes a confused sign gesture. - <<else>> - $He mrowls, "I-I<<s>> that it, <<Master>>..?" - <</if>> - -<<elseif (getSlave($AS).trust < -20)>> -$He flinches back when you raise your hand towards $him, expecting to be hit. The tender petting that occurs obviously shocks $him, and for the first minute it looks like $he's expecting you to change your mind at any moment and hit $him anyway. When you don't, only then does the scared cat<<= $girl>> allow $himself to get pet properly, slightly arching $his back to give you a range of motion against the silky fur as you stroke and play with your bioengineered cat<<= $girl>>. When you finally retract your hand, $he bats $his eyelashes at you, confused. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He just stares at you, blinking a few times. - <<elseif !canTalk(getSlave($AS))>> - $He makes a confused sign gesture. - <<else>> - $He mrowls, "I-I<<s>> that it, <<Master>>..?" - <</if>> - -<<else>> -The cat<<= $girl>> puts up a little façade of resistance, but doesn't really fight back against your petting, giving you a full range of motion to pet and rub at $his silky fur. $He lets you pet along the full length of $his spine, rubbing under $his chin and exploring the curves of $his ass and breasts in a way that's, for once, entirely nonsexual. Despite $himself, $he can't help but to purr a little by the time you finally remove $his hands. -<<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes glint<<else>>expression stares<</if>> at you uncertainly. - <<elseif !canTalk(getSlave($AS))>> - $He makes a huffy mrowling noise. - <<else>> - $He mrowls, "Thank<<s>>, I gue<<ss>>..." - <</if>> - -<</if>> diff --git a/src/Mods/SecExp/events/attackHandler.tw b/src/Mods/SecExp/events/attackHandler.tw index ec51f1ef8efb88e32de36169794d270b2f7a042b..26b59ef7fc201964f6d343a21fba5ceb75c647dd 100644 --- a/src/Mods/SecExp/events/attackHandler.tw +++ b/src/Mods/SecExp/events/attackHandler.tw @@ -1,6 +1,7 @@ :: attackHandler [nobr] <<set $nextButton = " ", $nextLink = "attackReport", $encyclopedia = "Battles">> +<<set _isMajorBattle = $SecExp.war.type.includes("Major")>> <<if $SecExp.war.result == 1 || $SecExp.war.result == -1>> /* bribery/surrender check */ <<if $SecExp.settings.showStats == 1>> @@ -48,7 +49,7 @@ <<set _armyMod = 0>> /* major battle */ - <<if $majorBattle == 1>> + <<if _isMajorBattle>> <<set _militiaMod = 1.5>> <<set _slaveMod = 1.5>> <<set _mercMod = 1.5>> @@ -666,7 +667,7 @@ <<set _armyMod = $SecExp.war.attacker.troops / 60>> <</if>> <<set _armyMod = Math.trunc(_armyMod)>> - <<if $majorBattle == 1>> + <<if _isMajorBattle>> <<set _armyMod *= 2>> <</if>> <<if _armyMod <= 0>> @@ -840,13 +841,13 @@ <</if>> <<if $SecExp.settings.showStats == 1>> - <<if $majorBattle == 1 && $SecExp.settings.battle.major.gameOver == 1 && $SecExp.war.result == -3>> + <<if _isMajorBattle && $SecExp.settings.battle.major.gameOver == 1 && $SecExp.war.result == -3>> <br><br>[[Proceed|Gameover][$gameover = "major battle defeat"]] <<else>> <br><br>[[Proceed|attackReport]] <</if>> <<else>> - <<if $majorBattle == 1 && $SecExp.settings.battle.major.gameOver == 1 && $SecExp.war.result == -3>> + <<if _isMajorBattle && $SecExp.settings.battle.major.gameOver == 1 && $SecExp.war.result == -3>> <<set $gameover = "major battle defeat">> <<goto "Gameover">> <<else>> <<goto "attackReport">> diff --git a/src/Mods/SecExp/events/attackOptions.js b/src/Mods/SecExp/events/attackOptions.js index 23e1d843361e37a2cce19eeec775386bcd4c351d..c37eea41a67394f3354777ffd6392bb66ac926c2 100644 --- a/src/Mods/SecExp/events/attackOptions.js +++ b/src/Mods/SecExp/events/attackOptions.js @@ -2,8 +2,8 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { eventPrerequisites() { return [ () => V.secExpEnabled > 0, - () => V.foughtThisWeek === 0, - () => !!(V.SecExp.war) + () => V.SecExp.war.foughtThisWeek === 0, + () => V.SecExp.war.type.includes("Attack") ]; } @@ -18,8 +18,8 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { let options; let option; - App.UI.DOM.appendNewElement("h1", node, `${(V.majorBattle === 1) ? `Major ` : ``}Attack Imminent`, ["monospace", "red"]); - if (V.majorBattle === 0) { + App.UI.DOM.appendNewElement("h1", node, `${V.SecExp.war.type} Imminent`, ["monospace", "red"]); + if (!V.SecExp.war.type.includes("Major")) { if (V.SecExp.battles.victories + V.SecExp.battles.losses > 0) { r.push(`The ominous message dominates the screens of your office, and ${V.assistant.name} quickly gathers all information available to prepare for battle.`); if (V.SecExp.war.attacker.type === "raiders") { @@ -116,6 +116,7 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { App.UI.DOM.appendNewElement("h3", node, `Recon: (AO: ${V.terrain})`); const _estimatedMen = V.SecExp.war.estimatedMen; const _expectedEquip = V.SecExp.war.expectedEquip; + const isOceanic = V.terrain === "oceanic"; r.push(`It seems your troops and your adversary will fight`); if (V.SecExp.war.terrain === "rural") { r.push(`in`, App.UI.DOM.makeElement("span", `the rural land`, "strong"), `surrounding the free city.`); @@ -133,7 +134,7 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { r.push(`in`, App.UI.DOM.makeElement("span", `the wastelands`, "strong"), `outside the free city territory.`); } else if (V.SecExp.war.terrain === "international waters") { r.push(`in`, App.UI.DOM.makeElement("span", `the water surrounding`, "strong"), `the free city.`); - } else if (["an underwater cave", "a sunken ship", "an island"].includes(V.SecExp.war.terrain)) { + } else if (["an underwater cave", "a sunken ship"].includes(V.SecExp.war.terrain)) { r.push(`in`, App.UI.DOM.makeElement("span", `${V.SecExp.war.terrain}`, "strong"), `near the free city.`); } else if (V.SecExp.war.terrain === "error") { r.push(App.UI.DOM.makeElement("span", `Error: failed to assign terrain.`, "red"), `${V.SecExp.war.terrain} reads: ${V.SecExp.war.terrain}.`); @@ -154,19 +155,19 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { r.push(`are coming, they seem to be`); if (_expectedEquip <= 0) { r.push(App.UI.DOM.makeElement("span", `poorly armed.`, "strong")); - r.push(`Old rusty small arms are the norm with just a few barely working civilian vehicles.`); + r.push(`Old rusty small arms are the norm with just a few barely working civilian ${isOceanic ? 'boats' : 'vehicles'}.`); } else if (_expectedEquip === 1) { r.push(App.UI.DOM.makeElement("span", `lightly armed,`, "strong")); - r.push(`mostly with small arms and some repurposed civilian vehicles with scattered machine gun support. There's no sign of heavy vehicles, artillery or aircraft.`); + r.push(`mostly with small arms and some repurposed civilian ${isOceanic ? 'boats' : 'vehicles'} with scattered machine gun support. There's no sign of heavy ${isOceanic ? 'boats' : 'vehicles'}, ${isOceanic ? 'submarines' : 'artillery'} or aircraft.`); } else if (_expectedEquip === 2) { r.push(App.UI.DOM.makeElement("span", `decently armed`, "strong")); - r.push(`with good quality small arms, machine guns and a few mortars. There appear to be some heavy military vehicles coming as well.`); + r.push(`with good quality small arms, machine guns and a few mortars. There appear to be some heavy military ${isOceanic ? 'boats' : 'vehicles'} coming as well.`); } else if (_expectedEquip === 3) { r.push(App.UI.DOM.makeElement("span", `well armed`, "strong")); - r.push(`with high quality small arms, snipers, demolitions teams, heavy duty machine guns and mortars. Heavy military vehicles are numerous and a few artillery pieces are accompanying the detachment.`); + r.push(`with high quality small arms, ${isOceanic ? 'spear men' : 'snipers'}, demolitions teams, heavy duty machine guns and mortars. Heavy military ${isOceanic ? 'boats' : 'vehicles'} are numerous and a few ${isOceanic ? 'submarines' : 'artillery pieces'} are accompanying the detachment.`); } else if (_expectedEquip >= 4) { r.push(App.UI.DOM.makeElement("span", `extremely well armed`, "strong")); - r.push(`with excellent small arms and specialized teams with heavy duty infantry support weapons. Heavy presence of armored military vehicles, artillery pieces and even some attack helicopters.`); + r.push(`with excellent small arms and specialized teams with heavy duty infantry support weapons. Heavy presence of armored military ${isOceanic ? 'boats' : 'vehicles'}, ${isOceanic ? 'submarines' : 'artillery pieces'} and even some attack helicopters.`); } App.Events.addParagraph(node, r); r = []; @@ -230,7 +231,7 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { node.append(options.render()); App.UI.DOM.appendNewElement("h3", node, `Troops`); - if (V.SF.Toggle && V.SF.Active >= 1 && V.majorBattle) { + if (V.SF.Toggle && V.SF.Active >= 1 && V.SecExp.war.type.includes("Major")) { options = new App.UI.OptionsGroup(); options.addOption("The incoming attack's scale warrants deploying the special force.", "deploySF", V.SecExp.war) .addValue("Green light", 1).on().addValue("Red light", 0).off() @@ -360,7 +361,7 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { if (App.SecExp.battle.deployedUnits() > 0) { option.addButton(`Send your orders`, () => { V.SecExp.war.result = 4; - V.foughtThisWeek = 1; + V.SecExp.war.foughtThisWeek = 1; /* sets V.SecExp.war.result value outside accepted range (-3, 3) to avoid evaluation problems */ }, `attackHandler`); } else { @@ -368,11 +369,11 @@ App.Events.attackOptions = class attackOptions extends App.Events.BaseEvent { } option.addButton(`Surrender`, () => { V.SecExp.war.result = -1; - V.foughtThisWeek = 1; + V.SecExp.war.foughtThisWeek = 1; }, "attackReport"); option.addButton(`Attempt to bribe`, () => { V.SecExp.war.result = 1; - V.foughtThisWeek = 1; + V.SecExp.war.foughtThisWeek = 1; }, `attackHandler`); option.addComment(`Will cost around ${cashFormat(Math.round(App.SecExp.battle.bribeCost() * (1 + either(-1, 1) * random(2) * 0.1)))} (estimate).`); node.append(options.render()); diff --git a/src/Mods/SecExp/events/attackReport.js b/src/Mods/SecExp/events/attackReport.js index f2d2e87c5e6d76e7fa9afaa76c479671e90f767a..04b854456f4ac0420736454f24dcd5cc6ba85077 100644 --- a/src/Mods/SecExp/events/attackReport.js +++ b/src/Mods/SecExp/events/attackReport.js @@ -20,13 +20,13 @@ App.Events.attackReport = function() { V.SecExp.core.totalKills += V.SecExp.war.attacker.losses; V.SecExp.war.losses = Math.trunc(V.SecExp.war.losses); let loot = 0; - let lostSlaves; let captives; const lossesList = []; /* result */ - const majorBattleMod = (V.majorBattle === 0) ? 1 : 2; - if (V.majorBattle !== 0) { + const majorBattle = V.SecExp.war.type.includes("Major"); + const majorBattleMod = !majorBattle ? 1 : 2; + if (majorBattle) { V.SecExp.battles.major++; } if (V.SecExp.war.result === 3) { @@ -56,337 +56,176 @@ App.Events.attackReport = function() { V.SecExp.battles.victories++; } let end = (V.SecExp.battles.victoryStreak >= 2 || V.SecExp.battles.lossStreak >= 2) ? `,` : `.`; + + r.push(`Today, ${asDateString(V.week, random(0, 7))}, our arcology was attacked by`); if (V.SecExp.war.attacker.type === "raiders") { - r.push(`Today, ${asDateString(V.week, random(0, 7))}, our arcology was attacked by a band of wild raiders, ${num(Math.trunc(V.SecExp.war.attacker.troops))} men strong.`); - if (V.SecExp.war.result !== 1 && V.SecExp.war.result !== 0 && V.SecExp.war.result !== -1) { - r.push(`Our defense forces, ${num(Math.trunc(App.SecExp.battle.troopCount()))} strong, clashed with them`); + r.push(`a band of wild raiders`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`a contingent of mercenaries hired by a competing free city`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`a group of freedom fighters bent on the destruction of the institution of slavery`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`an old world nation boasting a misplaced sense of superiority`); + } + + r.push(`, ${num(Math.trunc(V.SecExp.war.attacker.troops))} men strong.`); + if (V.SecExp.war.result !== 1 && V.SecExp.war.result !== 0 && V.SecExp.war.result !== -1) { + r.push(`Our defense forces, ${num(Math.trunc(App.SecExp.battle.troopCount()))} strong, clashed with them`); + if (V.SecExp.war.terrain === "urban") { + r.push(`in the streets of`); if (V.SecExp.war.terrain === "urban") { - r.push(`in the streets of`); - if (V.SecExp.war.terrain === "urban") { - r.push(`the old world city surrounding the arcology,`); - } else { - r.push(`of the free city,`); - } - } else if (V.SecExp.war.terrain === "rural") { - r.push(`in the rural land surrounding the free city,`); - } else if (V.SecExp.war.terrain === "hills") { - r.push(`on the hills around the free city,`); - } else if (V.SecExp.war.terrain === "coast") { - r.push(`along the coast just outside the free city,`); - } else if (V.SecExp.war.terrain === "outskirts") { - r.push(`just against the walls of the arcology,`); - } else if (V.SecExp.war.terrain === "mountains") { - r.push(`in the mountains overlooking the arcology,`); - } else if (V.SecExp.war.terrain === "wasteland") { - r.push(`in the wastelands outside the free city territory,`); - } - if (V.SecExp.war.attacker.losses !== V.SecExp.war.attacker.troops) { - r.push(`inflicting`); - num(Math.trunc(V.SecExp.war.attacker.losses)); - r.push(`casualties, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty`); - } else { - r.push(`zero`); - } - r.push(`themselves.`); + r.push(`the old world city surrounding the arcology,`); } else { - r.push(`completely annihilating their troops, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties.`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty.`); - } else { - r.push(`zero casualties.`); - } + r.push(`of the free city,`); } + } else if (V.SecExp.war.terrain === "rural") { + r.push(`in the rural land surrounding the free city,`); + } else if (V.SecExp.war.terrain === "hills") { + r.push(`on the hills around the free city,`); + } else if (V.SecExp.war.terrain === "coast") { + r.push(`along the coast just outside the free city,`); + } else if (V.SecExp.war.terrain === "outskirts") { + r.push(`just against the walls of the arcology,`); + } else if (V.SecExp.war.terrain === "mountains") { + r.push(`in the mountains overlooking the arcology,`); + } else if (V.SecExp.war.terrain === "wasteland") { + r.push(`in the wastelands outside the free city territory,`); + } else if (V.SecExp.war.terrain === "international waters") { + r.push(`in the water surrounding the free city,`); + } else if (["an underwater cave", "a sunken ship"].includes(V.SecExp.war.terrain)) { + r.push(`in <strong>${V.SecExp.war.terrain}</strong> near the free city`); } - if (V.SecExp.war.result === 3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men easily stopped the disorganized horde's futile attempt at raiding your arcology${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard, but in the end our men stopped the disorganized horde attempt at raiding your arcology${end}`); + if (V.SecExp.war.attacker.losses !== V.SecExp.war.attacker.troops) { + r.push(`inflicting ${V.SecExp.war.attacker.losses} casualties, while sustaining`); + if (V.SecExp.war.losses > 1) { + r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties`); + } else if (V.SecExp.war.losses > 0) { + r.push(`a casualty`); } else { - r.push(`The fight was long and hard, but our men managed to stop the horde raiding party${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`adding another victory to the growing list of our military's successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`finally putting an end to a series of unfortunate defeats.`); - } - } else if (V.SecExp.war.result === -3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men were easily crushed by the barbaric horde of raiders${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard and in the end the bandits proved too much to handle for our men${end}`); + r.push(`zero`); + } + r.push(`themselves.`); + } else { + r.push(`completely annihilating their troops, while sustaining`); + if (V.SecExp.war.losses > 1) { + r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties.`); + } else if (V.SecExp.war.losses > 0) { + r.push(`a casualty.`); } else { - r.push(`The fight was long and hard, but despite their bravery the horde proved too much for our men${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`so interrupting a long series of military successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`confirming the long list of recent failures our armed forces collected.`); - } - } else if (V.SecExp.war.result === 2) { - r.push(`The fight was long and hard, but in the end our men managed to repel the raiders, though not without difficulty.`); - } else if (V.SecExp.war.result === -2) { - r.push(`The fight was long and hard. Our men in the end had to yield to the horde raiders, which was fortunately unable to capitalized on their victory.`); - } else if (V.SecExp.war.result === -1) { - r.push(`You gave your troops the order to surrender, obediently they stand down.`); - } else if (V.SecExp.war.result === 0) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); - } else if (V.SecExp.war.result === 1) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); + r.push(`zero casualties.`); + } } - } else if (V.SecExp.war.attacker.type === "free city") { - r.push(`Today, ${asDateString(V.week, random(0, 7))}, our arcology was attacked by a contingent of mercenaries hired by a competing free city, ${num(Math.trunc(V.SecExp.war.attacker.troops))} men strong.`); - if (V.SecExp.war.result !== 1 && V.SecExp.war.result !== 0 && V.SecExp.war.result !== -1) { - r.push(`Our defense forces, ${num(Math.trunc(App.SecExp.battle.troopCount()))} strong, clashed with them`); - if (V.SecExp.war.terrain === "urban") { - r.push(`in the streets of`); - if (V.SecExp.war.terrain === "urban") { - r.push(`the old world city surrounding the arcology,`); - } else { - r.push(`of the free city,`); - } - } else if (V.SecExp.war.terrain === "rural") { - r.push(`in the rural land surrounding the free city,`); - } else if (V.SecExp.war.terrain === "hills") { - r.push(`on the hills around the free city,`); - } else if (V.SecExp.war.terrain === "coast") { - r.push(`along the coast just outside the free city,`); - } else if (V.SecExp.war.terrain === "outskirts") { - r.push(`just against the walls of the arcology,`); - } else if (V.SecExp.war.terrain === "mountains") { - r.push(`in the mountains overlooking the arcology,`); - } else if (V.SecExp.war.terrain === "wasteland") { - r.push(`in the wastelands outside the free city territory,`); - } - if (V.SecExp.war.attacker.losses !== V.SecExp.war.attacker.troops) { - r.push(`inflicting ${V.SecExp.war.attacker.losses} casualties, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty`); - } else { - r.push(`zero`); - } - r.push(`themselves.`); - } else { - r.push(`completely annihilating their troops, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties.`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty.`); - } else { - r.push(`zero casualties.`); - } + } + if (V.SecExp.war.result === 3) { + if (V.SecExp.war.turns <= 5) { + r.push(`The fight was quick and one sided, our men easily stopped the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`disorganized horde's futile attempt at raiding your arcology${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`mercenaries dead in their tracks${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters dead in their tracks${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world soldiers dead in their tracks${end}`); + } + } else if (V.SecExp.war.turns <= 7) { + r.push(`The fight was hard, but in the end our men stopped the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`disorganized horde attempt at raiding your arcology${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`slavers attempt at weakening your arcology${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`fighters attack${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`soldiers of the old world${end}`); + } + } else { + r.push(`The fight was long and hard, but our men managed to stop the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`horde raiding party${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`free city mercenaries${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world soldiers${end}`); } } - if (V.SecExp.war.result === 3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men easily stopped the mercenaries dead in their tracks${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard, but in the end our men stopped the slavers attempt at weakening your arcology${end}`); - } else { - r.push(`The fight was long and hard, but our men managed to stop the free city mercenaries${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`adding another victory to the growing list of our military's successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`finally putting an end to a series of unfortunate defeats.`); - } - } else if (V.SecExp.war.result === -3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men were easily crushed by the consumed mercenary veterans sent against us${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard and in the end the slavers proved too much to handle for our men${end}`); - } else { - r.push(`The fight was long and hard, but despite their bravery the mercenary slavers proved too much for our men${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`so interrupting a long series of military successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`confirming the long list of recent failures our armed forces collected.`); - } - } else if (V.SecExp.war.result === 2) { - r.push(`The fight was long and hard, but in the end our men managed to repel the mercenaries, though not without difficulty.`); - } else if (V.SecExp.war.result === -2) { - r.push(`The fight was long and hard. Our men in the end had to yield to the slavers, which were fortunately unable to capitalized on their victory.`); - } else if (V.SecExp.war.result === -1) { - r.push(`You gave your troops the order to surrender, obediently they stand down.`); - } else if (V.SecExp.war.result === 0) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); - } else if (V.SecExp.war.result === 1) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); + if (V.SecExp.battles.victoryStreak >= 2) { + r.push(`adding another victory to the growing list of our military's successes.`); + } else if (V.SecExp.battles.lossStreak >= 2) { + r.push(`finally putting an end to a series of unfortunate defeats.`); } - } else if (V.SecExp.war.attacker.type === "freedom fighters") { - r.push(`Today, ${asDateString(V.week, random(0, 7))}, our arcology was attacked by a group of freedom fighters bent on the destruction of the institution of slavery, ${num(Math.trunc(V.SecExp.war.attacker.troops))} men strong.`); - if (V.SecExp.war.result !== 1 && V.SecExp.war.result !== 0 && V.SecExp.war.result !== -1) { - r.push(`Our defense forces, ${num(Math.trunc(App.SecExp.battle.troopCount()))} strong, clashed with them`); - if (V.SecExp.war.terrain === "urban") { - r.push(`in the streets of`); - if (V.SecExp.war.terrain === "urban") { - r.push(`the old world city surrounding the arcology,`); - } else { - r.push(`of the free city,`); - } - } else if (V.SecExp.war.terrain === "rural") { - r.push(`in the rural land surrounding the free city,`); - } else if (V.SecExp.war.terrain === "hills") { - r.push(`on the hills around the free city,`); - } else if (V.SecExp.war.terrain === "coast") { - r.push(`along the coast just outside the free city,`); - } else if (V.SecExp.war.terrain === "outskirts") { - r.push(`just against the walls of the arcology,`); - } else if (V.SecExp.war.terrain === "mountains") { - r.push(`in the mountains overlooking the arcology,`); - } else if (V.SecExp.war.terrain === "wasteland") { - r.push(`in the wastelands outside the free city territory,`); - } - if (V.SecExp.war.attacker.losses !== V.SecExp.war.attacker.troops) { - r.push(`inflicting ${V.SecExp.war.attacker.losses} casualties, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty`); - } else { - r.push(`zero`); - } - r.push(`themselves.`); - } else { - r.push(`completely annihilating their troops, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties.`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty.`); - } else { - r.push(`zero casualties.`); - } + } else if (V.SecExp.war.result === -3) { + if (V.SecExp.war.turns <= 5) { + r.push(`The fight was quick and one sided, our men were easily crushed by the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`barbaric horde of raiders${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`consumed mercenary veterans sent against us${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`fanatical fury of the freedom fighters${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`discipline of the old world armies${end}`); + } + } else if (V.SecExp.war.turns <= 7) { + r.push(`The fight was hard and in the end the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`bandits proved too much to handle for our men${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`slavers proved too much to handle for our men${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters proved too much to handle for our men${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world proved too much to handle for our men${end}`); + } + } else { + r.push(`The fight was long and hard, but despite their bravery the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`horde proved too much for our men${end}`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`mercenary slavers proved too much for our men${end}`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters fury proved too much for our men${end}`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world troops proved too much for our men${end}`); } } - if (V.SecExp.war.result === 3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men easily stopped the freedom fighters dead in their tracks${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard, but in the end our men stopped the fighters attack${end}`); - } else { - r.push(`The fight was long and hard, but our men managed to stop the freedom fighters${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`adding another victory to the growing list of our military's successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`finally putting an end to a series of unfortunate defeats.`); - } - } else if (V.SecExp.war.result === -3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men were easily crushed by the fanatical fury of the freedom fighters${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard and in the end the freedom fighters proved too much to handle for our men${end}`); - } else { - r.push(`The fight was long and hard, but despite their bravery the freedom fighters fury proved too much for our men${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`so interrupting a long series of military successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`confirming the long list of recent failures our armed forces collected.`); - } - } else if (V.SecExp.war.result === 2) { - r.push(`The fight was long and hard, but in the end our men managed to repel the freedom fighters, though not without difficulty.`); - } else if (V.SecExp.war.result === -2) { - r.push(`The fight was long and hard. Our men in the end had to yield to the freedom fighters, which were fortunately unable to capitalized on their victory.`); - } else if (V.SecExp.war.result === -1) { - r.push(`You gave your troops the order to surrender, obediently they stand down.`); - } else if (V.SecExp.war.result === 0) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); - } else if (V.SecExp.war.result === 1) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); + if (V.SecExp.battles.victoryStreak >= 2) { + r.push(`so interrupting a long series of military successes.`); + } else if (V.SecExp.battles.lossStreak >= 2) { + r.push(`confirming the long list of recent failures our armed forces collected.`); } - } else if (V.SecExp.war.attacker.type === "old world") { - r.push(`Today, ${asDateString(V.week, random(0, 7))}, our arcology was attacked by an old world nation boasting a misplaced sense of superiority, ${num(Math.trunc(V.SecExp.war.attacker.troops))} men strong.`); - if (V.SecExp.war.result !== 1 && V.SecExp.war.result !== 0 && V.SecExp.war.result !== -1) { - r.push(`Our defense forces, ${num(Math.trunc(App.SecExp.battle.troopCount()))} strong, clashed with them`); - if (V.SecExp.war.terrain === "urban") { - r.push(`in the streets of`); - if (V.SecExp.war.terrain === "urban") { - r.push(`the old world city surrounding the arcology,`); - } else { - r.push(`of the free city,`); - } - } else if (V.SecExp.war.terrain === "rural") { - r.push(`in the rural land surrounding the free city,`); - } else if (V.SecExp.war.terrain === "hills") { - r.push(`on the hills around the free city,`); - } else if (V.SecExp.war.terrain === "coast") { - r.push(`along the coast just outside the free city,`); - } else if (V.SecExp.war.terrain === "outskirts") { - r.push(`just against the walls of the arcology,`); - } else if (V.SecExp.war.terrain === "mountains") { - r.push(`in the mountains overlooking the arcology,`); - } else if (V.SecExp.war.terrain === "wasteland") { - r.push(`in the wastelands outside the free city territory,`); - } - if (V.SecExp.war.attacker.losses !== V.SecExp.war.attacker.troops) { - r.push(`inflicting ${V.SecExp.war.attacker.losses} casualties, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty`); - } else { - r.push(`zero`); - } - r.push(`themselves.`); - } else { - r.push(`completely annihilating their troops, while sustaining`); - if (V.SecExp.war.losses > 1) { - r.push(`${num(Math.trunc(V.SecExp.war.losses))} casualties.`); - } else if (V.SecExp.war.losses > 0) { - r.push(`a casualty.`); - } else { - r.push(`zero casualties.`); - } - } + } else if (V.SecExp.war.result === 2) { + r.push(`The fight was long and hard, but in the end our men managed to repel the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`raiders, though not without difficulty.`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`mercenaries, though not without difficulty.`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters, though not without difficulty.`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world soldiers, though not without difficulty.`); } - if (V.SecExp.war.result === 3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men easily stopped the old world soldiers dead in their tracks${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard, but in the end our men stopped the soldiers of the old world${end}`); - } else { - r.push(`The fight was long and hard, but our men managed to stop the old world soldiers${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`adding another victory to the growing list of our military's successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`finally putting an end to a series of unfortunate defeats.`); - } - } else if (V.SecExp.war.result === -3) { - if (V.SecExp.war.turns <= 5) { - r.push(`The fight was quick and one sided, our men were easily crushed by the discipline of the old world armies${end}`); - } else if (V.SecExp.war.turns <= 7) { - r.push(`The fight was hard and in the end the old world proved too much to handle for our men${end}`); - } else { - r.push(`The fight was long and hard, but despite their bravery the determination of the old world troops proved too much for our men${end}`); - } - if (V.SecExp.battles.victoryStreak >= 2) { - r.push(`so interrupting a long series of military successes.`); - } else if (V.SecExp.battles.lossStreak >= 2) { - r.push(`confirming the long list of recent failures our armed forces collected.`); - } - } else if (V.SecExp.war.result === 2) { - r.push(`The fight was long and hard, but in the end our men managed to repel the old world soldiers, though not without difficulty.`); - } else if (V.SecExp.war.result === -2) { - r.push(`The fight was long and hard. Our men in the end had to yield to the old world soldiers, which were fortunately unable to capitalized on their victory.`); - } else if (V.SecExp.war.result === -1) { - r.push(`You gave your troops the order to surrender, obediently they stand down.`); - } else if (V.SecExp.war.result === 0) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); - } else if (V.SecExp.war.result === 1) { - r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); + } else if (V.SecExp.war.result === -2) { + r.push(`The fight was long and hard. Our men in the end had to yield to the`); + if (V.SecExp.war.attacker.type === "raiders") { + r.push(`horde raiders, which was fortunately unable to capitalize on their victory.`); + } else if (V.SecExp.war.attacker.type === "free city") { + r.push(`slavers, which were fortunately unable to capitalize on their victory.`); + } else if (V.SecExp.war.attacker.type === "freedom fighters") { + r.push(`freedom fighters, which were fortunately unable to capitalize on their victory.`); + } else if (V.SecExp.war.attacker.type === "old world") { + r.push(`old world soldiers, which were fortunately unable to capitalize on their victory.`); } + } else if (V.SecExp.war.result === -1) { + r.push(`You gave your troops the order to surrender, obediently they stand down.`); + } else if (V.SecExp.war.result === 0) { + r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); + } else if (V.SecExp.war.result === 1) { + r.push(`You decided in favor of a financial approach rather than open hostilities. Your troops remain inside the arcology's walls.`); } + App.Events.addParagraph(node, r); r = []; /* calculates effects on the city */ @@ -402,8 +241,8 @@ App.Events.attackReport = function() { repX(7500 * majorBattleMod, "war"); V.SecExp.core.authority += 1500 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(6000 * majorBattleMod, "war"); - V.SecExp.core.authority += 1200 * majorBattleMod; + repX(8000 * majorBattleMod, "war"); + V.SecExp.core.authority += 1600 * majorBattleMod; } if (V.SecExp.war.attacker.troops - V.SecExp.war.attacker.losses <= 50) { r.push(`a small amount of attackers,`); @@ -465,8 +304,8 @@ App.Events.attackReport = function() { repX(forceNeg(750 * majorBattleMod), "war"); V.SecExp.core.authority -= 750 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(forceNeg(600 * majorBattleMod), "war"); - V.SecExp.core.authority -= 600 * majorBattleMod; + repX(forceNeg(800 * majorBattleMod), "war"); + V.SecExp.core.authority -= 800 * majorBattleMod; } App.Events.addParagraph(node, r); r = []; @@ -475,43 +314,23 @@ App.Events.attackReport = function() { cashX(forceNeg(5000 * majorBattleMod), "war"); if (V.week <= 30) { V.lowerClass -= random(100) * majorBattleMod; - lostSlaves = random(150) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(150) * majorBattleMod); V.arcologies[0].prosperity -= random(5) * majorBattleMod; } else if (V.week <= 60) { V.lowerClass -= random(120) * majorBattleMod; - lostSlaves = random(170) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(170) * majorBattleMod); V.arcologies[0].prosperity -= random(10) * majorBattleMod; } else if (V.week <= 90) { V.lowerClass -= random(140) * majorBattleMod; - lostSlaves = random(190) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(190) * majorBattleMod); V.arcologies[0].prosperity -= random(15) * majorBattleMod; } else if (V.week <= 120) { V.lowerClass -= random(160) * majorBattleMod; - lostSlaves = random(210) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(210) * majorBattleMod); V.arcologies[0].prosperity -= random(20) * majorBattleMod; } else { V.lowerClass -= random(180) * majorBattleMod; - lostSlaves = random(230) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(230) * majorBattleMod); V.arcologies[0].prosperity -= random(25) * majorBattleMod; } if (V.SecExp.battles.lossStreak >= 3) { @@ -530,8 +349,8 @@ App.Events.attackReport = function() { repX(2000 * majorBattleMod, "war"); V.SecExp.core.authority += 450 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(1500 * majorBattleMod, "war"); - V.SecExp.core.authority += 300 * majorBattleMod; + repX(2100 * majorBattleMod, "war"); + V.SecExp.core.authority += 500 * majorBattleMod; } r.push(`which once sold produced`); if (V.SecExp.war.attacker.equip === 0) { @@ -561,11 +380,7 @@ App.Events.attackReport = function() { r.push(`${IncreasePCSkills('engineering', 0.1)}`); cashX(forceNeg(2000 * majorBattleMod), "war"); V.lowerClass -= random(10) * majorBattleMod; - lostSlaves = random(20) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(20) * majorBattleMod); } else if (V.SecExp.war.result === -2) { r.push(`It was a close defeat, but nonetheless your <span class="red">reputation</span> and <span class="red">authority</span> slightly decreased. Your troops were not able to capture anyone or anything.`); if (V.SecExp.war.attacker.type === "raiders") { @@ -578,8 +393,8 @@ App.Events.attackReport = function() { repX(forceNeg(75 * majorBattleMod), "war"); V.SecExp.core.authority -= 75 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(forceNeg(60 * majorBattleMod), "war"); - V.SecExp.core.authority -= 60 * majorBattleMod; + repX(forceNeg(80 * majorBattleMod), "war"); + V.SecExp.core.authority -= 80 * majorBattleMod; } App.Events.addParagraph(node, r); r = []; @@ -589,43 +404,23 @@ App.Events.attackReport = function() { cashX(forceNeg(3000 * majorBattleMod), "war"); if (V.week <= 30) { V.lowerClass -= random(50) * majorBattleMod; - lostSlaves = random(75) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(75) * majorBattleMod); V.arcologies[0].prosperity -= random(2) * majorBattleMod; } else if (V.week <= 60) { V.lowerClass -= random(60) * majorBattleMod; - lostSlaves = random(85) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(85) * majorBattleMod); V.arcologies[0].prosperity -= random(5) * majorBattleMod; } else if (V.week <= 90) { V.lowerClass -= random(70) * majorBattleMod; - lostSlaves = random(95) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(95) * majorBattleMod); V.arcologies[0].prosperity -= random(7) * majorBattleMod; } else if (V.week <= 120) { V.lowerClass -= random(80) * majorBattleMod; - lostSlaves = random(105) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(105) * majorBattleMod); V.arcologies[0].prosperity -= random(10) * majorBattleMod; } else { V.lowerClass -= random(90) * majorBattleMod; - lostSlaves = random(115) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(115) * majorBattleMod); V.arcologies[0].prosperity -= random(12) * majorBattleMod; } } else if (V.SecExp.war.result === -1) { @@ -640,8 +435,8 @@ App.Events.attackReport = function() { repX(forceNeg(1000 * majorBattleMod), "war"); V.SecExp.core.authority -= 1000 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(forceNeg(800 * majorBattleMod), "war"); - V.SecExp.core.authority -= 800 * majorBattleMod; + repX(forceNeg(1200 * majorBattleMod), "war"); + V.SecExp.core.authority -= 1200 * majorBattleMod; } App.Events.addParagraph(node, r); r = []; @@ -650,43 +445,23 @@ App.Events.attackReport = function() { cashX(forceNeg(1000 * majorBattleMod), "war"); if (V.week <= 30) { V.lowerClass -= random(80) * majorBattleMod; - lostSlaves = random(120) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(120) * majorBattleMod); V.arcologies[0].prosperity -= random(5) * majorBattleMod; } else if (V.week <= 60) { V.lowerClass -= random(100) * majorBattleMod; - lostSlaves = random(140) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(140) * majorBattleMod); V.arcologies[0].prosperity -= random(10) * majorBattleMod; } else if (V.week <= 90) { V.lowerClass -= random(120) * majorBattleMod; - lostSlaves = random(160) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(160) * majorBattleMod); V.arcologies[0].prosperity -= random(15) * majorBattleMod; } else if (V.week <= 120) { V.lowerClass -= random(140) * majorBattleMod; - lostSlaves = random(180) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(180) * majorBattleMod); V.arcologies[0].prosperity -= random(20) * majorBattleMod; } else { V.lowerClass -= random(160) * majorBattleMod; - lostSlaves = random(200) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(200) * majorBattleMod); V.arcologies[0].prosperity -= random(25) * majorBattleMod; } } else if (V.SecExp.war.result === 0) { @@ -707,8 +482,8 @@ App.Events.attackReport = function() { repX(forceNeg(750 * majorBattleMod), "war"); V.SecExp.core.authority -= 750 * majorBattleMod; } else if (V.SecExp.war.attacker.type === "old world") { - repX(forceNeg(600 * majorBattleMod), "war"); - V.SecExp.core.authority -= 600 * majorBattleMod; + repX(forceNeg(800 * majorBattleMod), "war"); + V.SecExp.core.authority -= 800 * majorBattleMod; } App.Events.addParagraph(node, r); r = []; @@ -717,43 +492,23 @@ App.Events.attackReport = function() { cashX(-1000, "war"); if (V.week <= 30) { V.lowerClass -= random(80) * majorBattleMod; - lostSlaves = random(120) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(120) * majorBattleMod); V.arcologies[0].prosperity -= random(5) * majorBattleMod; } else if (V.week <= 60) { V.lowerClass -= random(100) * majorBattleMod; - lostSlaves = random(140) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(140) * majorBattleMod); V.arcologies[0].prosperity -= random(10) * majorBattleMod; } else if (V.week <= 90) { V.lowerClass -= random(120) * majorBattleMod; - lostSlaves = random(160) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(160) * majorBattleMod); V.arcologies[0].prosperity -= random(15) * majorBattleMod; } else if (V.week <= 120) { V.lowerClass -= random(140) * majorBattleMod; - lostSlaves = random(180) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(180) * majorBattleMod); V.arcologies[0].prosperity -= random(20) * majorBattleMod; } else { V.lowerClass -= random(160) * majorBattleMod; - lostSlaves = random(200) * majorBattleMod; - V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * lostSlaves); - V.menials -= Math.trunc((V.menials / V.ASlaves) * lostSlaves); - V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * lostSlaves); - V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * lostSlaves); + App.SecExp.slavesDamaged(random(200) * majorBattleMod); V.arcologies[0].prosperity -= random(25) * majorBattleMod; } App.Events.addParagraph(node, r); @@ -768,7 +523,7 @@ App.Events.attackReport = function() { } else if (V.SecExp.war.attacker.type === "freedom fighters") { repX(1000 * majorBattleMod, "war"); } else if (V.SecExp.war.attacker.type === "old world") { - repX(750 * majorBattleMod, "war"); + repX(1250 * majorBattleMod, "war"); } cashX(forceNeg(App.SecExp.battle.bribeCost()), "war"); } @@ -933,12 +688,7 @@ App.Events.attackReport = function() { r.push(`During the fighting <span class="red">you were wounded.</span> Your medics assure you it's nothing life threatening, but you'll be weakened for a few weeks.`); } } else if (V.SecExp.war.commander === "assistant") { - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`let your personal assistant lead the troops.`); + r.push(`${V.assistant.name} lead the troops.`); if (App.SecExp.battle.deployedUnits('mercs') >= 1 || App.SecExp.battle.deployedUnits('militia') >= 1 || App.SecExp.battle.deployedUnits('slaves') >= 1) { r.push(`No soldier trusts a computer to be their commander,`); if (oldRep < 10000 && oldAuth < 10000) { @@ -960,25 +710,20 @@ App.Events.attackReport = function() { r.push(`You find`); } if (V.assistant.power === 0) { - r.push(`your assistant gives a rather poor field performance, due to the limited computing power available to ${himA}.`); + r.push(`your assistant gave a rather poor field performance, due to the limited computing power available to ${himA}.`); } else if (V.assistant.power === 1) { - r.push(`your assistant performs decently. While nothing to write home about your men are pleasantly surprised.`); + r.push(`your assistant performed decently. While nothing to write home about your men are pleasantly surprised.`); } else if (V.assistant.power === 2) { - r.push(`your assistant performs admirably. ${HisA} upgraded computing power allows ${himA} to monitor the battlefield closely, enhancing the efficiency of your troops and the effectiveness of your battle plan.`); + r.push(`your assistant performed admirably. ${HisA} upgraded computing power allows ${himA} to monitor the battlefield closely, enhancing the efficiency of your troops and the effectiveness of your battle plan.`); } else if (V.assistant.power >= 3) { - r.push(`your assistant performs admirably. ${HisA} vast computing power allows ${himA} to be everywhere on the battlefield, greatly enhancing the efficiency of your troops and the effectiveness of your battle plan.`); + r.push(`your assistant performed admirably. ${HisA} vast computing power allows ${himA} to be everywhere on the battlefield, greatly enhancing the efficiency of your troops and the effectiveness of your battle plan.`); } } else if (V.SecExp.war.commander === "bodyguard") { const { His, He, his, he, him } = getPronouns(S.Bodyguard); - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`decided it will be your bodyguard that leads the troops.`); + r.push(`Your bodyguard lead the troops.`); if (App.SecExp.battle.deployedUnits('slaves') >= 1) { if (S.Bodyguard.devotion < -20) { r.push(`${His} low devotion has a negative impact on the morale of your slave soldiers.`); @@ -1151,12 +896,7 @@ App.Events.attackReport = function() { His, He, his, he, him } = getPronouns(S.HeadGirl); - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`decided it will be your Head Girl that leads the troops.`); + r.push(`Your Head Girl lead the troops.`); if (App.SecExp.battle.deployedUnits('slaves') >= 1) { if (S.HeadGirl.devotion < -20) { r.push(`${His} low devotion has a negative impact on the morale of your slave soldiers.`); @@ -1323,12 +1063,7 @@ App.Events.attackReport = function() { } } } else if (V.SecExp.war.commander === "citizen") { - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`decided to appoint one of your volunteers as the commander.`); + r.push(`One of your volunteers was the commander.`); if (V.arcologies[0].FSDegradationist === "unset" && V.arcologies[0].FSPaternalist === "unset") { if (App.SecExp.battle.deployedUnits('militia') >= 1) { r.push(`Your volunteers are honored and pleased that one of their own is leading the defense force of the city.`); @@ -1373,12 +1108,7 @@ App.Events.attackReport = function() { r.push(`During the battle a stray bullet managed to reach the leader. Your troops were greatly affected by the loss.`); } } else if (V.SecExp.war.commander === "mercenary") { - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`decided to appoint one of your mercenary officers as the commander.`); + r.push(`One of your mercenary officers took command.`); if (App.SecExp.battle.deployedUnits('mercs') >= 1) { r.push(`Your mercenaries of course approve of your decision.`); } @@ -1397,12 +1127,7 @@ App.Events.attackReport = function() { r.push(`During the battle a stray bullet managed to reach the mercenary. Your troops were greatly affected by the loss of their leader.`); } } else if (V.SecExp.war.commander === "colonel") { - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { - r.push(`You`); - } - r.push(`decided to appoint The Colonel as the commander.`); + r.push(`The Colonel was the commander.`); if (App.SecExp.battle.deployedUnits('mercs') >= 1) { r.push(`Your mercenaries approve of such decisions, as they feel more confident by having a good, experienced commander.`); } @@ -1428,10 +1153,10 @@ App.Events.attackReport = function() { r = []; /* tactics */ - if (V.auto === 1) { - r.push(`${V.assistant.name}`); - } else { + if (V.SecExp.war.commander === "PC") { r.push(`You`); + } else { + r.push(`Your commander`); } if (V.SecExp.war.chosenTactic === "Bait and Bleed") { r.push(`chose to employ "bait and bleed" tactics or relying on quick attacks and harassment to tire and wound the enemy until their surrender.`); @@ -1576,6 +1301,60 @@ App.Events.attackReport = function() { } else if (V.SecExp.war.chosenTactic === "Human Wave") { r.push(`The wastelands, while rough, are mostly open terrain, where your men are able to mount effective mass assaults.`); } + } else if (V.SecExp.war.terrain === "international waters") { + if (V.SecExp.war.chosenTactic === "Bait and Bleed") { + r.push(`The open terrain of international waters does not lend itself well to bait and bleed tactics, making it harder for your men to achieve tactical superiority.`); + } else if (V.SecExp.war.chosenTactic === "Guerrilla") { + r.push(`The open terrain of international waters does not offer many hiding spots, making it harder for your men to perform guerrilla actions effectively.`); + } else if (V.SecExp.war.chosenTactic === "Choke Points") { + r.push(`The open terrain of international waters does not offer many natural choke points, making it hard for your troops to funnel the enemy towards highly defended positions.`); + } else if (V.SecExp.war.chosenTactic === "Interior Lines") { + r.push(`The open terrain allows your men to easily exploit the superior mobility of the defender, making excellent use of interior lines to strike where it hurts.`); + } else if (V.SecExp.war.chosenTactic === "Pincer Maneuver") { + r.push(`The open terrain affords your men great mobility, allowing them to easily position themselves for envelopment.`); + } else if (V.SecExp.war.chosenTactic === "Defense In Depth") { + r.push(`The open terrain affords your men great mobility, allowing them to exploit overextended assaults and concentrate where and when it matters.`); + } else if (V.SecExp.war.chosenTactic === "Blitzkrieg") { + r.push(`The open terrain affords your men great mobility, making it easier to accomplish concentrated lightning strikes.`); + } else if (V.SecExp.war.chosenTactic === "Human Wave") { + r.push(`The open terrain affords your men great mobility, making it easier to overwhelm the enemy with mass assaults.`); + } + } else if (V.SecExp.war.terrain === "an underwater cave") { + if (V.SecExp.war.chosenTactic === "Bait and Bleed") { + r.push(`The tight terrain of an underwater cave does not lend itself well to bait and bleed tactics, making it harder for your men to achieve tactical superiority.`); + } else if (V.SecExp.war.chosenTactic === "Guerrilla") { + r.push(`The tight terrain of an underwater cave does offers many hiding spots, making it easier for your men to perform guerrilla actions effectively.`); + } else if (V.SecExp.war.chosenTactic === "Choke Points") { + r.push(`The tight terrain of an underwater cave offers many natural choke points, making it easy for your troops to funnel the enemy towards highly defended positions.`); + } else if (V.SecExp.war.chosenTactic === "Interior Lines") { + r.push(`The tight terrain makes it hard for your men to easily exploit the superior mobility of the defender.`); + } else if (V.SecExp.war.chosenTactic === "Pincer Maneuver") { + r.push(`The tight terrain hinders the mobility of your army, allowing them to easily position themselves for envelopment.`); + } else if (V.SecExp.war.chosenTactic === "Defense In Depth") { + r.push(`The tight terrain hinders the mobility of your army, allowing them to exploit overextended assaults and concentrate where and when it matters.`); + } else if (V.SecExp.war.chosenTactic === "Blitzkrieg") { + r.push(`The tight terrain hinders the mobility of your army, making it easier to accomplish concentrated lightning strikes.`); + } else if (V.SecExp.war.chosenTactic === "Human Wave") { + r.push(`The tight terrain hinders the mobility of your army, making it easier to overwhelm the enemy with mass assaults.`); + } + } else if (V.SecExp.war.terrain === "a sunken ship") { + if (V.SecExp.war.chosenTactic === "Bait and Bleed") { + r.push(`The tight terrain of a sunken ship lends itself well to bait and bleed tactics, making it easier for your men to achieve tactical superiority.`); + } else if (V.SecExp.war.chosenTactic === "Guerrilla") { + r.push(`The tight terrain of a sunken ship offers many hiding spots, making it easy for your men to perform guerrilla actions effectively.`); + } else if (V.SecExp.war.chosenTactic === "Choke Points") { + r.push(`The tight terrain of a sunken ship offers many natural choke points, making it easy for your troops to funnel the enemy towards highly defended positions.`); + } else if (V.SecExp.war.chosenTactic === "Interior Lines") { + r.push(`The tight terrain does not allow your men to easily exploit the superior mobility of the defender.`); + } else if (V.SecExp.war.chosenTactic === "Pincer Maneuver") { + r.push(`The open terrain hinders the mobility of your army, allowing them to easily position themselves for envelopment.`); + } else if (V.SecExp.war.chosenTactic === "Defense In Depth") { + r.push(`The open terrain affords your men great mobility, allowing them to exploit overextended assaults and concentrate where and when it matters.`); + } else if (V.SecExp.war.chosenTactic === "Blitzkrieg") { + r.push(`The open terrain affords your men great mobility, making it easier to accomplish concentrated lightning strikes.`); + } else if (V.SecExp.war.chosenTactic === "Human Wave") { + r.push(`The open terrain affords your men great mobility, making it easier to overwhelm the enemy with mass assaults.`); + } } if (V.SecExp.war.chosenTactic === "Bait and Bleed") { @@ -1708,41 +1487,47 @@ App.Events.attackReport = function() { captives = Math.trunc(captives); if (captives > 0) { + let candidates = 0; r.push(`During the battle ${captives} attackers were captured.`); - /* - if (random(1,100) <= 25) { - roll = random(1,100); + if (random(1, 100) <= 25) { + candidates = 1; + const roll = random(1, 100); if (roll <= 33) { - r.push(`Three of them have the potential to be sex slaves.`); candidates = 3; - } else if (roll <= 66) { - r.push(`Two of them have the potential to be sex slaves.`); candidates = 2; - } else { - r.push(`One of them have the potential to be sex slaves.`); - candidates = 1; } + r.push(`${capFirstChar(num(candidates, true))} of them have the potential to be sex slaves.`); } - */ + const sell = function() { cashX((menialPrice * captives), "menialTransfer"); return `Captives sold`; }; const keep = function() { - V.menials += captives; - return `Captives added as menial slaves`; + V.menials += (captives - candidates); + for (let i = 0; i < candidates; i++) { + const generateFemale = random(0, 99) < V.seeDicks; + let slave = GenerateNewSlave((generateFemale ? "XY" : "XX"), {minAge: 16, maxAge: 32, disableDisability: 1}); + slave.weight = (generateFemale ? random(-20, 30) : random(0, 30)); + slave.muscles = (generateFemale ? random(15, 80) : random(25, 80)); + slave.waist = (generateFemale ? random(10, 80) : random(-20, 20)); + slave.skill.combat = 1; + const {He} = getPronouns(slave); + slave.origin = `${He} is an enslaved ${V.SecExp.war.attacker.type} soldier captured during a battle.`; + newSlave(slave); // skip New Slave Intro + } + return `All captives added as slaves.`; }; App.Events.addResponses(node, [ new App.Events.Result(`sell them all immediately`, sell), - new App.Events.Result(`sell them all immediately`, keep), + new App.Events.Result(`keep them as slaves`, keep), ]); } /* resets variables */ - V.majorBattle = 0; V.SecExp.units.bots.isDeployed = 0; for (const squad of App.SecExp.unit.humanSquads()) { squad.isDeployed = 0; @@ -1767,7 +1552,7 @@ App.Events.attackReport = function() { if (unit.training < 100) { if (random(1, 100) > 60) { r.push(`Experience has increased.`); - unit.training += random(5, 15) + V.majorBattle * random(5, 15); + unit.training += random(5, 15) + (majorBattle ? 1 : 0) * random(5, 15); } } App.Events.addNode(el, r, "div"); @@ -1788,7 +1573,6 @@ App.Events.attackReport = function() { /* generates a list of randomized losses, from which each unit picks one at random */ let losses = V.SecExp.war.losses; const averageLosses = Math.trunc(losses / App.SecExp.battle.deployedUnits()); - let validityCount = 0; let assignedLosses; for (let i = 0; i < App.SecExp.battle.deployedUnits(); i++) { assignedLosses = Math.trunc(Math.clamp(averageLosses + random(-5, 5), 0, 100)); @@ -1799,7 +1583,6 @@ App.Events.attackReport = function() { losses -= assignedLosses; } lossesList.push(assignedLosses); - validityCount += assignedLosses; } if (losses > 0) { lossesList[random(lossesList.length - 1)] += losses; @@ -1910,7 +1693,7 @@ App.Events.attackReport = function() { if (unit.training < 100) { if (random(1, 100) > 60) { r.push(`Experience has increased.`); - unit.training += random(5, 15) + V.majorBattle * random(5, 15); + unit.training += random(5, 15) + (majorBattle ? 1 : 0) * random(5, 15); } } App.Events.addNode(el, r, "div"); diff --git a/src/Mods/SecExp/events/rebellionOptions.tw b/src/Mods/SecExp/events/rebellionOptions.tw index 98f16da666774eea322ff5f3d44b59379188e925..5a8e8d2dcf5771c6711e660418812e07caafed68 100644 --- a/src/Mods/SecExp/events/rebellionOptions.tw +++ b/src/Mods/SecExp/events/rebellionOptions.tw @@ -106,5 +106,5 @@ In order to preserve the structural integrity of the building and the lives of o <</if>> <br><br> <<includeDOM App.SecExp.unit.replenishAll()>> -[[Proceed|rebellionHandler][$SecExp.war.result = 4, $foughtThisWeek = 1]] /* sets $SecExp.war.result to a value outside accepted range (-3,3) to avoid evaluation problems */ -<br>[[Surrender|rebellionReport][$SecExp.war.result = -1, $foughtThisWeek = 1]] +[[Proceed|rebellionHandler][$SecExp.war.result = 4, $SecExp.war.foughtThisWeek = 1]] /* sets $SecExp.war.result to a value outside accepted range (-3,3) to avoid evaluation problems */ +<br>[[Surrender|rebellionReport][$SecExp.war.result = -1, $SecExp.war.foughtThisWeek = 1]] diff --git a/src/Mods/SecExp/events/unitsRebellionReport.tw b/src/Mods/SecExp/events/unitsRebellionReport.tw index f017ea8c6fb7d963c505b281d46bd14835952a69..375fd29ba1ec291197a73e92fbeddc3db22daa9f 100644 --- a/src/Mods/SecExp/events/unitsRebellionReport.tw +++ b/src/Mods/SecExp/events/unitsRebellionReport.tw @@ -204,7 +204,7 @@ <<if $SecExp.units.militia.squads[_j].training < 100>> <<if random(1,100) > 60>> Experience has increased. - <<set $SecExp.units.militia.squads[_j].training += random(5,15) + $majorBattle * random(5,15)>> + <<set $SecExp.units.militia.squads[_j].training += random(5,15)>> <</if>> <</if>> <<if $SecExp.units.militia.squads[_j].troops <= 0>> @@ -250,7 +250,7 @@ <<if $SecExp.units.slaves.squads[_j].training < 100>> <<if random(1,100) > 60>> Experience gained. - <<set $SecExp.units.slaves.squads[_j].training += random(5,15) + $majorBattle * random(5,15)>> + <<set $SecExp.units.slaves.squads[_j].training += random(5,15)>> <</if>> <</if>> <<if $SecExp.units.slaves.squads[_j].troops <= 0>> @@ -292,7 +292,7 @@ <<if $SecExp.units.mercs.squads[_j].training < 100>> <<if random(1,100) > 60>> Experience gained. - <<set $SecExp.units.mercs.squads[_j].training += random(5,15) + $majorBattle * random(5,15)>> + <<set $SecExp.units.mercs.squads[_j].training += random(5,15)>> <</if>> <</if>> <<if $SecExp.units.mercs.squads[_j].troops <= 0>> @@ -493,4 +493,4 @@ <</if>> <<run cashX(forceNeg(1000 * _mercRebelledID.length), "war")>> <<run $SecExp.units.mercs.squads.deleteWith((u) => _mercRebelledID.includes(u.ID))>> -<</if>> +<</if>> \ No newline at end of file diff --git a/src/Mods/SecExp/js/secExp.js b/src/Mods/SecExp/js/secExp.js index be6f467b4c9e93574b4b590acb2393ee124793ed..f2ad76912d6edb36ad6870a6ba797e090c81e3f1 100644 --- a/src/Mods/SecExp/js/secExp.js +++ b/src/Mods/SecExp/js/secExp.js @@ -5,7 +5,6 @@ App.SecExp.generator = (function() { }; function shared() { - V.SecExp.war = V.SecExp.war || {}; V.SecExp.war.commander = "assistant"; V.SecExp.war.losses = 0; V.SecExp.war.attacker = {losses: 0}; @@ -13,8 +12,8 @@ App.SecExp.generator = (function() { function attack() { let attackChance = 0; // attackChance value is the chance out of 100 of an attack happening this week - // attacks are deactivated if the arcology is in the middle of the ocean, security drones are not around yet, there is not a rebellion this week or the last attack/rebellion happened within 3 weeks - if (V.terrain !== "oceanic" && V.arcologyUpgrade.drones === 1 && V.citizenRebellion === 0 && V.slaveRebellion === 0 && V.SecExp.battles.lastEncounterWeeks > 3 && V.SecExp.rebellions.lastEncounterWeeks > 3) { + // attacks are deactivated if security drones are not around yet, there is not a rebellion this week or the last attack/rebellion happened within 3 weeks + if (V.arcologyUpgrade.drones === 1 && V.citizenRebellion === 0 && V.slaveRebellion === 0 && V.SecExp.battles.lastEncounterWeeks > 3 && V.SecExp.rebellions.lastEncounterWeeks > 3) { if (V.week < 30) { attackChance = 5; } else if (V.week < 60) { @@ -33,9 +32,9 @@ App.SecExp.generator = (function() { if (V.SecExp.battles.lastEncounterWeeks >= 10) { attackChance += V.SecExp.battles.lastEncounterWeeks/2; // attackChance += 5; } - /* if (V.terrain === "oceanic") { + if (V.terrain === "oceanic") { attackChance -= 10; - } */ + } attackChance *= V.SecExp.settings.battle.frequency; // battle frequency } @@ -121,6 +120,7 @@ App.SecExp.generator = (function() { troops = random(30, 60); } + V.SecExp.war.type = 'Attack'; if (V.terrain === "urban") { terrain = either("outskirts", "urban", "wasteland"); } else if (V.terrain === "rural") { @@ -129,8 +129,8 @@ App.SecExp.generator = (function() { terrain = either("hills", "mountains", "outskirts", "wasteland"); } else if (V.terrain === "marine") { terrain = either("coast", "hills", "outskirts", "wasteland"); - // } else if (V.terrain === "oceanic") { - // terrain = either("international waters", "an underwater cave", "a sunken ship", "an island"); + } else if (V.terrain === "oceanic") { + terrain = either("international waters", "an underwater cave", "a sunken ship"); } else { terrain = "error"; } @@ -154,7 +154,7 @@ App.SecExp.generator = (function() { if (V.SecExp.settings.battle.major.enabled === 1) { // major battles have a 50% chance of firing after week 120 if ((V.week >= 120 && random(1, 100) >= 50) || V.SecExp.settings.battle.major.force === 1) { - V.majorBattle = 1; + V.SecExp.war.type = 'Major Attack'; const sfActive = V.SF.Toggle && V.SF.Active >= 1; troops *= sfActive ? random(4, 6) : random(2, 3); equip = sfActive ? either(3, 4) : either(2, 3, 4); @@ -199,7 +199,7 @@ App.SecExp.generator = (function() { } } - if (V.SecExp.settings.rebellion.force === 1 && V.foughtThisWeek === 0) { + if (V.SecExp.settings.rebellion.force === 1 && V.SecExp.war.foughtThisWeek === 0) { type = random(1, 100) <= 50 ? V.slaveRebellion = 1 : V.citizenRebellion = 1; } @@ -351,9 +351,9 @@ App.SecExp.initTrade = function() { } else if (V.terrain === "ravine") { init -= jsRandom(5, 5); } - if (["BlackHat", "capitalist", "celebrity", "wealth"].includes(V.PC.career)) { + if (isPCCareerInCategory("wealth") || isPCCareerInCategory("capitalist") || isPCCareerInCategory("celebrity") || isPCCareerInCategory("BlackHat")) { init += jsRandom(5, 5); - } else if (["escort", "gang", "servant"].includes(V.PC.career)) { + } else if (isPCCareerInCategory("escort") || isPCCareerInCategory("gang") || isPCCareerInCategory("servant")) { init -= jsRandom(5, 5); } V.SecExp.core.trade = init; @@ -773,7 +773,7 @@ App.SecExp.battle = (function() { } else { cost = 30000 + baseBribePerAttacker * V.SecExp.war.attacker.troops; } - cost *= V.majorBattle > 0 ? 3 : 1; + cost *= (V.SecExp.war.type.includes("Major") ? 3 : 1); return Math.trunc(Math.clamp(cost, 0, 1000000)); } })(); @@ -950,3 +950,10 @@ App.SecExp.inflictBattleWound = (function() { return doWound; })(); + +App.SecExp.slavesDamaged = function(adjustValue) { + V.NPCSlaves -= Math.trunc((V.NPCSlaves / V.ASlaves) * adjustValue); + V.menials -= Math.trunc((V.menials / V.ASlaves) * adjustValue); + V.fuckdolls -= Math.trunc((V.fuckdolls / V.ASlaves) * adjustValue); + V.menialBioreactors -= Math.trunc((V.menialBioreactors / V.ASlaves) * adjustValue); +}; diff --git a/src/Mods/SecExp/js/terrainAndTactics.js b/src/Mods/SecExp/js/terrainAndTactics.js index 1848e1f1cdb563c5ae137bf97f4ac824cb06b5d6..8d23124ebdb5ab3fa8ca422d05e4980c99b00eb9 100644 --- a/src/Mods/SecExp/js/terrainAndTactics.js +++ b/src/Mods/SecExp/js/terrainAndTactics.js @@ -348,4 +348,130 @@ App.Data.SecExp.TerrainAndTactics = new Map([ tacChance: 0.25, }, }], + ["international waters", { + "Bait and Bleed": { + atkMod: -0.05, + defMod: -0.10, + tacChance: -0.15, + }, + "Guerrilla": { + atkMod: -0.10, + defMod: -0.10, + tacChance: -0.20, + }, + "Choke Points": { + atkMod: -0.10, + defMod: -0.15, + tacChance: -0.25, + }, + "Interior Lines": { + atkMod: 0.10, + defMod: 0.15, + tacChance: 0.25, + }, + "Pincer Maneuver": { + atkMod: 0.15, + defMod: 0.10, + tacChance: 0.25, + }, + "Defense In Depth": { + atkMod: 0.15, + defMod: 0.15, + tacChance: 0.30, + }, + "Blitzkrieg": { + atkMod: 0.15, + defMod: 0.10, + tacChance: 0.25, + }, + "Human Wave": { + atkMod: 0.20, + defMod: 0.05, + tacChance: 0.25, + }, + }], + ["an underwater cave", { + "Bait and Bleed": { + atkMod: -0.05, + defMod: -0.05, + tacChance: -0.10, + }, + "Guerrilla": { + atkMod: 0.30, + defMod: 0.30, + tacChance: 0.5, + }, + "Choke Points": { + atkMod: 0.30, + defMod: 0.30, + tacChance: 0.5, + }, + "Interior Lines": { + atkMod: -0.10, + defMod: -0.15, + tacChance: -0.05, + }, + "Pincer Maneuver": { + atkMod: -0.15, + defMod: -0.10, + tacChance: -0.25, + }, + "Defense In Depth": { + atkMod: 0.15, + defMod: 0.15, + tacChance: 0.35, + }, + "Blitzkrieg": { + atkMod: -0.15, + defMod: -0.15, + tacChance: -0.30, + }, + "Human Wave": { + atkMod: -0.20, + defMod: -0.05, + tacChance: -0.25, + }, + }], + ["a sunken ship", { + "Bait and Bleed": { + atkMod: 0.30, + defMod: 0.30, + tacChance: 0.5, + }, + "Guerrilla": { + atkMod: 0.30, + defMod: 0.30, + tacChance: 0.5, + }, + "Choke Points": { + atkMod: 0.30, + defMod: 0.30, + tacChance: 0.5, + }, + "Interior Lines": { + atkMod: -0.10, + defMod: -0.15, + tacChance: -0.05, + }, + "Pincer Maneuver": { + atkMod: -0.15, + defMod: -0.10, + tacChance: -0.05, + }, + "Defense In Depth": { + atkMod: -0.05, + defMod: -0.10, + tacChance: -0.15, + }, + "Blitzkrieg": { + atkMod: -0.15, + defMod: -0.15, + tacChance: -0.30, + }, + "Human Wave": { + atkMod: -0.20, + defMod: -0.05, + tacChance: -0.25, + }, + }], ]); diff --git a/src/Mods/SecExp/potentialToDo.txt b/src/Mods/SecExp/potentialToDo.txt index 488310875d036463afb62232e545990f7bfe81d8..eb00bfaed65dd8144fbdff1c78cfe73640c7060a 100644 --- a/src/Mods/SecExp/potentialToDo.txt +++ b/src/Mods/SecExp/potentialToDo.txt @@ -10,7 +10,7 @@ Hexall90's last merged commit: 52dde0b3 - Does having a large standing army give any bonus to authority/reputation growth? - Fix broken immigration stuff (https://gitgud.io/pregmodfan/fc-pregmod/-/issues/2073 && https://gitgud.io/pregmodfan/fc-pregmod/-/merge_requests/7375) - My personal asst keeps getting the credit, even though I choose to personally lead my forces. (Has been this way for a fewish days): Military01.swf -- Enable oceanic battles + Fine, I'll Do It Myself Pirates? Enemy navies? - 328279 Pirates could raid trade routs and such ,even could capture a high class cruise liner and you have to move retake it with an army similar to the ground battles. you could have an event where you gain a old world port to ship your goods to, and you have to defend it . -328413 diff --git a/src/Mods/SpecialForce/SpecialForce.js b/src/Mods/SpecialForce/SpecialForce.js index e736864af8311eefd84f18295e113230bd948d9b..905fd6ae265c9b91b99eab4406850c4462fc0034 100644 --- a/src/Mods/SpecialForce/SpecialForce.js +++ b/src/Mods/SpecialForce/SpecialForce.js @@ -1454,7 +1454,7 @@ App.SF.AAR = function(endWeekCall = 1) { r += `<span class='red'>barely enough to cover expenses.</span> More growth will be needed to ensure profitability; <span class='yellow'>purchasing more upgrades may help.</span>`; r += ` Per estimates provided, an additional <span class='yellowgreen'>${cashFormat(Math.abs(profit))}</span> is required for sufficient cover.`; } - r += ` A difference of ${num(Math.abs(((profit/V.SF.lastWeeksProfit)*100).toFixed(2)))}% since last week.`; + r += ` This represents a difference of ${num(Math.abs(((profit/V.SF.lastWeeksProfit)*100).toFixed(2)))}% since last week.`; V.SF.lastWeeksProfit = profit; r += `<br>${FNG} new soldiers were recruited this week, and your reputation has <span class='green'>increased through the improvement of trade security.</span>`; diff --git a/src/arcologyBuilding/penthouse.js b/src/arcologyBuilding/penthouse.js index 269cd7ba502d1d1ff567b517ed4c26d7c5cb49ff..8f6e68af561fb8b9795ebae794725064b534d878 100644 --- a/src/arcologyBuilding/penthouse.js +++ b/src/arcologyBuilding/penthouse.js @@ -64,7 +64,8 @@ App.Arcology.Cell.Penthouse = class extends App.Arcology.Cell.BaseCell { if (V.incubator.capacity > 0) { const inc = App.Entity.facilities.incubator; const link = App.UI.DOM.passageLink(inc.UIName, "Incubator"); - const desc = `(${numberWithPluralOne(inc.capacity - V.incubator.tanks.length, "empty tank")})`; + const desc = `(${numberWithPluralOne(inc.capacity + - (V.incubator.tanks.length + FetusGlobalReserveCount("incubator")), "empty tank")})`; if (V.incubator.readySlaves > 0) { wrapper.append(createFacilityDiv(link, App.UI.DOM.combineNodes(desc, App.UI.DOM.makeElement("span", "[!]", "noteworthy")))); diff --git a/src/art/assistantArt.js b/src/art/assistantArt.js index 7bd3d84c446ae9ed207ea498ddadc170ab3b1520..0245032fd5d05218a1350cc4d2fb38e0c01bcabf 100644 --- a/src/art/assistantArt.js +++ b/src/art/assistantArt.js @@ -128,7 +128,7 @@ globalThis.assistantArt = function(sizePlacement) { }; /** - * + * * @param {3} [sizePlacement] * @returns {HTMLElement} */ diff --git a/src/cheats/cheatEditArcology.js b/src/cheats/cheatEditArcology.js index 4ada16dc7ec108387229412002509b4838d02fd0..d55cd450efccafbaca399da315c222588a2917b0 100644 --- a/src/cheats/cheatEditArcology.js +++ b/src/cheats/cheatEditArcology.js @@ -1,6 +1,5 @@ /** - * - * @param {Number} num + * @param {number} num * @returns {DocumentFragment} */ App.UI.Cheat.arcology = function(num) { diff --git a/src/cheats/cheatEditSlave.js b/src/cheats/cheatEditSlave.js index 39835b4cb3096d7791a83bcfde0a3ca1e76eb5bb..35c2be24e62f969221dd9e41b6b401f1bd008258 100644 --- a/src/cheats/cheatEditSlave.js +++ b/src/cheats/cheatEditSlave.js @@ -135,7 +135,7 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) { option = options.addOption(`Porn ${he} is known for`, "fameType", porn).addValue("None", "none").pulldown(); for (const genre of App.Porn.getAllGenres()) { - option.addValue(genre.uiName(), genre.fameVar); + option.addValue(genre.uiName(), genre.fameName); } option = options.addOption(`Porn the studio focuses on`, "focus", porn).addValue("None", "none").pulldown(); diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js index a202550464b45fb8c33116926dcff1511fd35754..5973ea3894dc67824d18940dc36885124c14bb57 100644 --- a/src/data/backwardsCompatibility/backwardsCompatibility.js +++ b/src/data/backwardsCompatibility/backwardsCompatibility.js @@ -256,7 +256,7 @@ App.Update.globalVariables = function(node) { // PC { - PCDatatypeCleanup(); + PCDatatypeCleanup(V.PC); V.enduringTrust = Number(V.enduringTrust) || 0; V.enduringDevotion = Number(V.enduringDevotion) || 0; V.averageTrust = Number(V.averageTrust) || 0; diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index 4fe8e5fb2bcecf94b96e6b2045f63507dcc9eaf1..39e8a0fe205ead99d24ac712402ec74a969d18ab 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -579,7 +579,7 @@ globalThis.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() { slave.hLength = Math.clamp(+slave.hLength, 0, 300) || 60; } if (typeof slave.hStyle !== "string") { - slave.hStyle = "long"; + slave.hStyle = "neat"; } slave.haircuts = Math.clamp(+slave.haircuts, 0, 1) || 0; slave.bald = Math.clamp(+slave.bald, 0, 1) || 0; @@ -1143,6 +1143,7 @@ globalThis.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() { } slave.heels = Math.clamp(+slave.heels, 0, 1) || 0; slave.PLimb = Math.clamp(+slave.PLimb, 0, 2) || 0; + slave.PTail = Math.clamp(+slave.PTail, 0, 1) || 0; if (slave.voice !== 0) { slave.voice = Math.clamp(+slave.voice, 0, 3) || 1; } @@ -1199,194 +1200,491 @@ globalThis.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() { } })(); -/* Make sure any new PC variables put into use are added to this! */ -globalThis.PCDatatypeCleanup = function() { - const PC = V.PC; +/* See slave datatype cleanup for details */ +globalThis.PCDatatypeCleanup = (function PCDatatypeCleanup() { + "use strict"; - if (PC.title !== 0) { - PC.title = Math.clamp(+PC.title, 0, 1) || 1; - } - if (PC.dick !== 0) { - PC.dick = Math.clamp(+PC.dick, 0, 5) || 4; - } - if (PC.vagina !== -1) { - PC.vagina = Math.clamp(+PC.vagina, 0, 5) || 0; - } - if (typeof PC.genes !== "string") { - PC.genes = "XY"; - } - if (typeof PC.nationality !== "string") { - PC.nationality = "Stateless"; - } - if (typeof PC.race !== "string") { - PC.race = "white"; - } - if (typeof PC.skin !== "string") { - PC.skin = "light"; - } - if (typeof PC.markings !== "string") { - PC.markings = "none"; - } - if (typeof PC.hColor !== "string") { - PC.hColor = "blonde"; - } - if (typeof PC.eye.origColor !== "string") { - PC.eye.origColor = "blue"; - } - PC.belly = Math.max(+PC.belly, 0) || 0; - PC.fertPeak = Math.clamp(+PC.fertPeak, 0, 4) || 0; - PC.pregMood = Math.clamp(+PC.pregMood, 0, 2) || 0; - PC.boobs = Math.clamp(+PC.boobs, 100, 1500) || 100; - PC.boobsImplant = Math.clamp(+PC.boobsImplant, 0, 1000) || 0; - PC.butt = Math.clamp(+PC.butt, 0, 5) || 2; - PC.buttImplant = Math.clamp(+PC.buttImplant, 0, 5) || 0; - PC.balls = Math.clamp(+PC.balls, 0, 100) || 0; - PC.ballsImplant = Math.clamp(+PC.ballsImplant, 0, 100) || 0; - PC.prostate = Math.clamp(+PC.prostate, 0, 1) || 0; - PC.degeneracy = Math.max(+PC.degeneracy, 0) || 0; - PC.birthWeek = Math.clamp(+PC.birthWeek, 0, 51) || 0; - if (PC.sexualEnergy !== 0) { - PC.sexualEnergy = +PC.sexualEnergy || 4; - } - if (typeof PC.refreshment !== "string") { - PC.refreshment = "cigar"; + return PCDatatypeCleanup; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCDatatypeCleanup(PC) { + PCAgeDatatypeCleanup(PC); + PCPhysicalDatatypeCleanup(PC); + PCFaceDatatypeCleanup(PC); + PCHairDatatypeCleanup(PC); + PCBoobsDatatypeCleanup(PC); + PCButtDatatypeCleanup(PC); + PCPregnancyDatatypeCleanup(PC); + PCBellyDatatypeCleanup(PC); + PCGenitaliaDatatypeCleanup(PC); + PCImplantsDatatypeCleanup(PC); + PCCosmeticsDatatypeCleanup(PC); + PCDietDatatypeCleanup(PC); + PCRelationDatatypeCleanup(PC); + PCSkillsDatatypeCleanup(PC); + PCStatCountDatatypeCleanup(PC); + PCPreferencesDatatypeCleanup(PC); + PCRulesDatatypeCleanup(PC); + PCCustomStatsDatatypeCleanup(PC); + PCMiscellaneousDatatypeCleanup(PC); + App.Entity.Utils.migratePronouns(PC); + generatePlayerPronouns(PC); } - if (!(V.ver.startsWith("0.10"))) { - if (V.PC.refreshment === "cigar") { - V.PC.refreshmentType = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCAgeDatatypeCleanup(PC) { + if (PC.birthWeek > 51) { + PC.birthWeek = PC.birthWeek % 52; + } + PC.birthWeek = Math.clamp(+PC.birthWeek, 0, 51) || 0; + if (PC.age > 0) { + PC.actualAge = Math.clamp(+PC.actualAge, 10, 80) || PC.age; /* if undefined, this sets to PC.age */ + delete PC.age; } else { - V.PC.refreshmentType = 1; - } - } - PC.refreshmentType = Math.clamp(+PC.refreshmentType, 0, 6) || 0; - PC.skill.trading = Math.clamp(+PC.skill.trading, -100, 100) || 0; - PC.skill.warfare = Math.clamp(+PC.skill.warfare, -100, 100) || 0; - PC.skill.slaving = Math.clamp(+PC.skill.slaving, -100, 100) || 0; - PC.skill.engineering = Math.clamp(+PC.skill.engineering, -100, 100) || 0; - PC.skill.medicine = Math.clamp(+PC.skill.medicine, -100, 100) || 0; - PC.skill.hacking = Math.clamp(+PC.skill.hacking, -100, 100) || 0; - PC.skill.cumTap = Math.max(+PC.skill.cumTap, 0) || 0; - PC.mother = +PC.mother || 0; - PC.father = +PC.father || 0; - PC.labor = Math.clamp(+PC.labor, 0, 1) || 0; - PC.counter.birthsTotal = Math.max(+PC.counter.birthsTotal, 0) || 0; - PC.counter.birthElite = Math.max(+PC.counter.birthElite, 0) || 0; - PC.counter.birthMaster = Math.max(+PC.counter.birthMaster, 0) || 0; - PC.counter.birthDegenerate = Math.max(+PC.counter.birthDegenerate, 0) || 0; - PC.counter.birthClient = Math.max(+PC.counter.birthClient, 0) || 0; - PC.counter.birthOther = Math.max(+PC.counter.birthOther, 0) || 0; - PC.counter.birthArcOwner = Math.max(+PC.counter.birthArcOwner, 0) || 0; - PC.counter.birthCitizen = Math.max(+PC.counter.birthCitizen, 0) || 0; - PC.counter.birthSelf = Math.max(+PC.counter.birthSelf, 0) || 0; - PC.counter.birthLab = Math.max(+PC.counter.birthLab, 0) || 0; - PC.counter.birthFutaSis = Math.max(+PC.counter.birthFutaSis, 0) || 0; - PC.counter.slavesFathered = Math.max(+PC.counter.slavesFathered, 0) || 0; - PC.counter.slavesKnockedUp = Math.max(+PC.counter.slavesKnockedUp, 0) || 0; - PC.counter.storedCum = Math.max(+PC.counter.storedCum, 0) || 0; - PC.intelligence = 100; - PC.face = 100; - PC.actualAge = Math.clamp(+PC.actualAge, 14, 80) || 35; - PC.physicalAge = Math.clamp(+PC.physicalAge, 14, 80) || PC.actualAge; - PC.visualAge = Math.clamp(+PC.visualAge, 14, 80) || PC.actualAge; - PC.ovaryAge = Math.clamp(+PC.ovaryAge, 14, 80) || PC.physicalAge; - if (V.playerAging !== 0) { - V.playerAging = Math.clamp(+V.playerAging, 0, 2) || 2; - } - PC.newVag = Math.clamp(+PC.newVag, 0, 1) || 0; - PC.fertDrugs = Math.clamp(+PC.fertDrugs, 0, 1) || 0; - PC.forcedFertDrugs = Math.max(+PC.forcedFertDrugs, 0) || 0; - PC.staminaPills = Math.clamp(+PC.staminaPills, 0, 1) || 0; - PC.mpreg = 0; /* So knockMeUp() may be used with the PC */ - PC.lactation = Math.max(+PC.lactation, 0) || 0; - PC.lactationDuration = Math.max(+PC.lactationDuration, 0) || 0; - PC.muscles = Math.clamp(+PC.muscles, -100, 100) || 50; - PC.hLength = Math.clamp(+PC.hLength, 0, 150) || 2; - PC.voice = Math.clamp(+PC.voice, 1, 3) || 1; - if (typeof PC.health === "number") { - const condition = PC.health; - PC.health = {}; - PC.health.condition = condition; - } - PC.health.condition = Math.clamp(PC.health.condition, -100, 100) || 0; - if (PC.majorInjury !== undefined) { - if (PC.majorInjury > 0) { - PC.health.shortDamage = Math.max(PC.majorInjury * 20, 30); + PC.actualAge = Math.clamp(+PC.actualAge, 10, Infinity) || 35; + } + PC.physicalAge = Math.clamp(+PC.physicalAge, 14, 80) || PC.actualAge; + PC.visualAge = Math.clamp(+PC.visualAge, 14, 80) || PC.actualAge; + PC.ovaryAge = Math.clamp(+PC.ovaryAge, 14, 80) || PC.physicalAge; + if (V.playerAging !== 0) { + V.playerAging = Math.clamp(+V.playerAging, 0, 2) || 2; + } + PC.pubertyAgeXX = Math.max(+PC.pubertyAgeXX, 0) || 13; + if (PC.actualAge > PC.pubertyAgeXX || PC.preg > 0) { + PC.pubertyXX = 1; + } + PC.pubertyAgeXY = Math.max(+PC.pubertyAgeXY, 0) || 13; + if (PC.actualAge > PC.pubertyAgeXY) { + PC.pubertyXY = 1; + } + if (typeof PC.health === "number") { + const condition = PC.health; + PC.health = {}; + PC.health.condition = condition; + } + PC.health.condition = Math.clamp(PC.health.condition, -100, 100) || 0; + if (PC.majorInjury !== undefined) { + if (PC.majorInjury > 0) { + PC.health.shortDamage = Math.max(PC.majorInjury * 20, 30); + } else { + PC.health.shortDamage = 0; + } + delete PC.majorInjury; } else { - PC.health.shortDamage = 0; + PC.health.shortDamage = Math.max(+PC.health.shortDamage, 0) || 0; } - delete PC.majorInjury; - } else { + PC.health.longDamage = Math.max(+PC.health.longDamage, 0) || 0; + PC.health.illness = Math.max(+PC.health.illness, 0) || 0; + PC.health.tired = Math.clamp(+PC.health.tired, 0, 100) || 0; + PC.health.health = Math.clamp(PC.health.condition - PC.health.shortDamage - PC.health.longDamage, -100, 100) || 0; + } + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCPhysicalDatatypeCleanup(PC) { + if (PC.title !== 0) { + PC.title = Math.clamp(+PC.title, 0, 1) || 1; + } + if (typeof PC.genes !== "string") { + PC.genes = "XY"; + } + if (typeof PC.nationality !== "string") { + PC.nationality = "Stateless"; + } + if (typeof PC.race !== "string") { + PC.race = "white"; + } + if (typeof PC.origRace !== "string") { + PC.origRace = PC.race; + } + if (typeof PC.skin !== "string") { + PC.skin = "light"; + } + if (typeof PC.origSkin !== "string") { + PC.origSkin = PC.skin; + } + + // why is this duplicated? + PC.health.condition = Math.clamp(PC.health.condition, -100, 200) || 0; PC.health.shortDamage = Math.max(+PC.health.shortDamage, 0) || 0; + PC.health.longDamage = Math.max(+PC.health.longDamage, 0) || 0; + PC.health.illness = Math.max(+PC.health.illness, 0) || 0; + PC.health.tired = Math.clamp(+PC.health.tired, 0, 100) || 0; + PC.health.health = Math.clamp(PC.health.condition - PC.health.shortDamage - PC.health.longDamage, -100, 100) || 0; + + PC.muscles = Math.clamp(+PC.muscles, -100, 100) || 0; + PC.weight = Math.clamp(+PC.weight, -100, 200) || 0; + PC.waist = Math.clamp(+PC.waist, -100, 100) || 0; + PC.height = Math.round(Math.max(+PC.height, 0)) || Math.round(Height.mean(PC)); + PC.shoulders = Math.clamp(+PC.shoulders, -2, 2) || 0; + PC.hips = Math.clamp(+PC.hips, -2, 3) || 0; } - PC.health.longDamage = Math.max(+PC.health.longDamage, 0) || 0; - PC.health.illness = Math.max(+PC.health.illness, 0) || 0; - PC.health.tired = Math.clamp(+PC.health.tired, 0, 100) || 0; - PC.health.health = Math.clamp(PC.health.condition - PC.health.shortDamage - PC.health.longDamage, -100, 100) || 0; - if (typeof PC.rules.living !== "string") { - PC.rules.living = "normal"; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCFaceDatatypeCleanup(PC) { + if (typeof PC.eye.origColor !== "string") { + PC.eye.origColor = "blue"; + } + PC.face = 100; + if (PC.lips !== 0) { + PC.lips = Math.clamp(+PC.lips, 0, 100) || 15; + } } - if (typeof PC.rules.lactation !== "string") { - PC.rules.lactation = "none"; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCHairDatatypeCleanup(PC) { + if (typeof PC.hColor !== "string") { + PC.hColor = "blonde"; + } + if (typeof PC.origHColor !== "string") { + PC.origHColor = PC.hColor; + } + if (PC.hLength !== 0) { + PC.hLength = Math.clamp(+PC.hLength, 0, 300) || 2; + } + if (typeof PC.hStyle !== "string") { + PC.hStyle = "neat"; + } + if (typeof PC.pubicHColor !== "string") { + PC.pubicHColor = PC.hColor; + } + if (typeof PC.pubicHStyle !== "string") { + PC.pubicHStyle = "hairless"; + } + if (typeof PC.underArmHColor !== "string") { + PC.underArmHColor = PC.hColor; + } + if (typeof PC.underArmHStyle !== "string") { + PC.underArmHStyle = "hairless"; + } + if (typeof PC.eyebrowHColor !== "string") { + PC.eyebrowHColor = PC.hColor; + } + if (typeof PC.eyebrowHStyle !== "string") { + PC.eyebrowHStyle = "natural"; + } + if (typeof PC.eyebrowFullness !== "string") { + PC.eyebrowFullness = "natural"; + } } - if (typeof PC.rules.rest !== "string") { - PC.rules.rest = "permissive"; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCBoobsDatatypeCleanup(PC) { + PC.boobs = Math.max(+PC.boobs, 200) || 200; + if (typeof PC.boobShape !== "string") { + PC.boobShape = "normal"; + } + if (PC.boobShape === "spherical" && PC.boobsImplant === 0) { + PC.boobShape = "normal"; + } + if (typeof PC.nipples !== "string") { + PC.nipples = "tiny"; + } + PC.areolae = Math.clamp(+PC.areolae, 0, 4) || 0; + PC.lactation = Math.max(+PC.lactation, 0) || 0; + PC.lactationDuration = Math.max(+PC.lactationDuration, 0) || 0; + if (PC.boobsMilk > 0 && PC.boobs - PC.boobsMilk - PC.boobsImplant < 0) { + // should never get here, but if it does, just immediately abort! + PC.boobsMilk = 0; + } + PC.lactationAdaptation = Math.clamp(+PC.lactationAdaptation, 0, 100) || 0; } - App.Entity.Utils.migratePronouns(PC); - generatePlayerPronouns(PC); - if (PC.age !== undefined) { - delete PC.age; + /** + * @param {App.Entity.PlayerState} PC + */ + function PCButtDatatypeCleanup(PC) { + if (PC.butt !== 0) { + PC.butt = Math.clamp(+PC.butt, 0, 20) || 2; + } + PC.anus = Math.clamp(+PC.anus, 0, 4) || 0; + PC.analArea = Math.max(+PC.analArea, 0) || 0; } - if (PC.indenture !== undefined) { - delete PC.indenture; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCPregnancyDatatypeCleanup(PC) { + PC.induce = Math.clamp(+PC.induce, 0, 1) || 0; + PC.labor = Math.clamp(+PC.labor, 0, 1) || 0; + PC.prematureBirth = Math.clamp(+PC.prematureBirth, 0, 1) || 0; + PC.ovaries = Math.clamp(+PC.ovaries, 0, 1) || 0; + PC.vasectomy = Math.clamp(+PC.vasectomy, 0, 1) || 0; + PC.mpreg = Math.clamp(+PC.mpreg, 0, 1) || 0; + if (PC.pregAdaptation !== 0) { + PC.pregAdaptation = Math.max(+PC.pregAdaptation, 0) || 50; + } + if (PC.pubertyXX === 0 && (PC.ovaries > 0 || PC.mpreg > 0) && PC.preg === -1) { + PC.preg = 0; // no contraceptives for prepubescent slaves + } + PC.fertPeak = Math.clamp(+PC.fertPeak, 0, 4) || 0; + PC.pregSource = +PC.pregSource || 0; + PC.pregMood = Math.clamp(+PC.pregMood, 0, 2) || 0; + PC.fertDrugs = Math.clamp(+PC.fertDrugs, 0, 1) || 0; + PC.forcedFertDrugs = Math.max(+PC.forcedFertDrugs, 0) || 0; + WombNormalizePreg(PC); } - if (PC.indentureRestrictions !== undefined) { - delete PC.indentureRestrictions; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCBellyDatatypeCleanup(PC) { + PC.inflation = Math.clamp(+PC.inflation, 0, 3) || 0; + if (typeof PC.inflationType !== "string") { + PC.inflationType = "none"; + } + PC.inflationMethod = Math.clamp(+PC.inflationMethod, 0, 3) || 0; + PC.milkSource = Math.max(+PC.milkSource, 0) || 0; + PC.cumSource = Math.max(+PC.cumSource, 0) || 0; + if (PC.bellyImplant !== 0) { + PC.bellyImplant = Math.max(+PC.bellyImplant, -1) || -1; + } + PC.cervixImplant = Math.clamp(+PC.cervixImplant, 0, 3) || 0; + PC.bellySag = Math.max(+PC.bellySag, 0) || 0; + PC.bellySagPreg = Math.max(+PC.bellySagPreg, 0) || PC.bellySag; + PC.bellyPain = Math.clamp(+PC.bellyPain, 0, 2) || 0; + SetBellySize(PC); } - if (PC.boobsImplant > 0) { - // update with 4.0.0 - PC.boobsImplantType = "normal"; - } else { - PC.boobsImplantType = "none"; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCGenitaliaDatatypeCleanup(PC) { + PC.newVag = Math.clamp(+PC.newVag, 0, 1) || 0; + if (PC.vagina !== -1) { + PC.vagina = Math.clamp(+PC.vagina, 0, 10) || 1; + } + PC.vaginaLube = Math.clamp(+PC.vaginaLube, 0, 2) || 0; + PC.labia = Math.clamp(+PC.labia, 0, 3) || 0; + PC.clit = Math.clamp(+PC.clit, 0, 5) || 0; + PC.foreskin = Math.max(+PC.foreskin, 0) || 0; + if (PC.dick !== 0) { + PC.dick = Math.max(+PC.dick, 1) || 4; + PC.prostate = Math.clamp(+PC.prostate, 0, 1) || 1; + PC.balls = Math.max(+PC.balls, 0) || 3; + } else { + PC.prostate = Math.clamp(+PC.prostate, 0, 1) || 0; + PC.balls = Math.max(+PC.balls, 0) || 0; + } + if (PC.scrotum !== 0) { + PC.scrotum = Math.max(+PC.scrotum, 0) || PC.balls; + } } - if (PC.buttImplant > 0) { - PC.buttImplantType = "normal"; - } else { - PC.buttImplantType = "none"; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCImplantsDatatypeCleanup(PC) { + PC.ageImplant = Math.clamp(+PC.ageImplant, 0, 1) || 0; + PC.faceImplant = Math.clamp(+PC.faceImplant, 0, 100) || 0; + PC.lipsImplant = Math.clamp(+PC.lipsImplant, 0, 100) || 0; + PC.voiceImplant = Math.clamp(+PC.voiceImplant, -1, 1) || 0; + PC.boobsImplant = Math.clamp(+PC.boobsImplant, 0, PC.boobs) || 0; + if (PC.boobsImplant === 0) { + PC.boobsImplantType = "none"; + } else if (PC.boobsImplant > 0 && PC.boobsImplantType === "none") { + if (PC.boobsImplant > 10000) { + PC.boobsImplantType = "hyper fillable"; + } else if (PC.boobsImplant > 2200) { + PC.boobsImplantType = "advanced fillable"; + } else if (PC.boobsImplant > 1000) { + PC.boobsImplantType = "fillable"; + } else { + PC.boobsImplantType = "normal"; + } + } + PC.breastMesh = Math.clamp(+PC.breastMesh, 0, 1) || 0; + PC.buttImplant = Math.clamp(+PC.buttImplant, 0, Math.min(PC.butt, 20)) || 0; + if (typeof PC.buttImplantType !== "string") { + if (PC.buttImplant === 0) { + PC.buttImplantType = "none"; + } else if (PC.buttImplant > 0) { + PC.buttImplantType = "normal"; + } + } + PC.heightImplant = Math.clamp(+PC.heightImplant, -10, 10) || 0; + PC.earImplant = Math.clamp(+PC.earImplant, 0, 1) || 0; + PC.shouldersImplant = Math.clamp(+PC.shouldersImplant, -10, 10) || 0; + PC.hipsImplant = Math.clamp(+PC.hipsImplant, -10, 10) || 0; + PC.ballsImplant = Math.clamp(+PC.ballsImplant, 0, 100) || 0; } - if (V.PC.customTitle === "") { - V.PC.customTitle = undefined; - V.PC.customTitleLisp = undefined; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCCosmeticsDatatypeCleanup(PC) { + if (typeof PC.clothes !== "string") { + PC.clothes = "nice business attire"; + } + if (typeof PC.eyewear !== "string") { + PC.eyewear = "none"; + } + if (typeof PC.markings !== "string") { + PC.markings = "none"; + } } - if (typeof V.PC.counter.oral === "undefined") { - V.PC.counter.oral = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCDietDatatypeCleanup(PC) { + if (typeof PC.refreshment !== "string") { + PC.refreshment = "cigar"; + } + if (!(V.ver.startsWith("0.10"))) { + if (PC.refreshment === "cigar") { + PC.refreshmentType = 0; + } else { + PC.refreshmentType = 1; + } + } + PC.refreshmentType = Math.clamp(+PC.refreshmentType, 0, 6) || 0; + if (typeof PC.diet !== "string") { + PC.diet = "healthy"; + } + PC.hormones = Math.clamp(+PC.hormones, -2, 2) || 0; + PC.hormoneBalance = Math.clamp(+PC.hormoneBalance, -500, 500) || 0; + if (typeof PC.drugs !== "string") { + PC.drugs = "no drugs"; + } + PC.aphrodisiacs = Math.clamp(+PC.aphrodisiacs, -1, 2) || 0; + PC.staminaPills = Math.clamp(+PC.staminaPills, 0, 1) || 0; } - if (typeof V.PC.counter.vaginal === "undefined") { - V.PC.counter.vaginal = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCRelationDatatypeCleanup(PC) { + PC.mother = +PC.mother || 0; + PC.father = +PC.father || 0; } - if (typeof V.PC.counter.anal === "undefined") { - V.PC.counter.anal = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCSkillsDatatypeCleanup(PC) { + PC.skill.trading = Math.clamp(+PC.skill.trading, -100, 100) || 0; + PC.skill.warfare = Math.clamp(+PC.skill.warfare, -100, 100) || 0; + PC.skill.slaving = Math.clamp(+PC.skill.slaving, -100, 100) || 0; + PC.skill.engineering = Math.clamp(+PC.skill.engineering, -100, 100) || 0; + PC.skill.medicine = Math.clamp(+PC.skill.medicine, -100, 100) || 0; + PC.skill.hacking = Math.clamp(+PC.skill.hacking, -100, 100) || 0; + PC.skill.cumTap = Math.max(+PC.skill.cumTap, 0) || 0; } - if (typeof V.PC.counter.mammary === "undefined") { - V.PC.counter.mammary = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCStatCountDatatypeCleanup(PC) { + PC.counter.oral = Math.max(+PC.counter.oral, 0) || 0; + PC.counter.vaginal = Math.max(+PC.counter.vaginal, 0) || 0; + PC.counter.anal = Math.max(+PC.counter.anal, 0) || 0; + PC.counter.mammary = Math.max(+PC.counter.mammary, 0) || 0; + PC.counter.penetrative = Math.max(+PC.counter.penetrative, 0) || 0; + PC.counter.milk = Math.max(+PC.counter.milk, 0) || 0; + PC.counter.cum = Math.max(+PC.counter.cum, 0) || 0; + PC.counter.birthsTotal = Math.max(+PC.counter.birthsTotal, 0) || 0; + PC.counter.birthElite = Math.max(+PC.counter.birthElite, 0) || 0; + PC.counter.birthMaster = Math.max(+PC.counter.birthMaster, 0) || 0; + PC.counter.birthDegenerate = Math.max(+PC.counter.birthDegenerate, 0) || 0; + PC.counter.birthClient = Math.max(+PC.counter.birthClient, 0) || 0; + PC.counter.birthOther = Math.max(+PC.counter.birthOther, 0) || 0; + PC.counter.birthArcOwner = Math.max(+PC.counter.birthArcOwner, 0) || 0; + PC.counter.birthCitizen = Math.max(+PC.counter.birthCitizen, 0) || 0; + PC.counter.birthSelf = Math.max(+PC.counter.birthSelf, 0) || 0; + PC.counter.birthLab = Math.max(+PC.counter.birthLab, 0) || 0; + PC.counter.birthFutaSis = Math.max(+PC.counter.birthFutaSis, 0) || 0; + PC.counter.abortions = Math.max(+PC.counter.abortions, 0) || 0; + PC.counter.miscarriages = Math.max(+PC.counter.miscarriages, 0) || 0; + PC.counter.slavesFathered = Math.max(+PC.counter.slavesFathered, 0) || 0; + PC.counter.slavesKnockedUp = Math.max(+PC.counter.slavesKnockedUp, 0) || 0; + PC.counter.storedCum = Math.max(+PC.counter.storedCum, 0) || 0; + PC.bodySwap = Math.max(+PC.bodySwap, 0) || 0; } - if (typeof V.PC.counter.penetrative === "undefined") { - V.PC.counter.penetrative = 0; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCPreferencesDatatypeCleanup(PC) { + if (PC.sexualEnergy !== 0) { + PC.sexualEnergy = +PC.sexualEnergy || 4; + } + PC.energy = Math.clamp(+PC.energy, 0, 100) || 80; + PC.need = Math.max(+PC.need, 0) || 0; + PC.degeneracy = Math.max(+PC.degeneracy, 0) || 0; } - WombInit(V.PC); - if (typeof V.PC.ID === "undefined") { - V.PC.ID = -1; + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCRulesDatatypeCleanup(PC) { + if (typeof PC.rules.living !== "string") { + PC.rules.living = "normal"; + } + if (typeof PC.rules.lactation !== "string") { + PC.rules.lactation = "none"; + } + if (typeof PC.rules.rest !== "string") { + PC.rules.rest = "permissive"; + } } - if (typeof V.PC.partners !== "object") { - V.PC.partners = new Set(); + + /** + * @param {App.Entity.PlayerState} PC + */ + function PCCustomStatsDatatypeCleanup(PC) { + if (PC.customTitle === "") { + PC.customTitle = undefined; + PC.customTitleLisp = undefined; + } } - /* None of these are in use */ - PC.bellyPreg = PC.belly; - PC.ageImplant = 0; - PC.voiceImplant = 0; - PC.accent = 0; -}; + /** + * @param {App.Entity.PlayerState} PC + */ + function PCMiscellaneousDatatypeCleanup(PC) { + if (typeof PC.ID === "undefined") { + PC.ID = -1; + } + PC.chem = Math.max(+PC.chem, 0) || 0; + PC.addict = Math.max(+PC.addict, 0) || 0; + PC.intelligence = 100; + PC.intelligenceImplant = Math.clamp(+PC.intelligenceImplant, -15, 30) || 30; + PC.hears = Math.clamp(+PC.hears, -2, 0) || 0; + PC.smells = Math.clamp(+PC.smells, -1, 0) || 0; + PC.tastes = Math.clamp(+PC.tastes, -1, 0) || 0; + PC.PLimb = Math.clamp(+PC.PLimb, 0, 2) || 0; + if (PC.voice !== 0) { + PC.voice = Math.clamp(+PC.voice, 0, 3) || 1; + } + PC.electrolarynx = Math.clamp(+PC.electrolarynx, 0, 1) || 0; + if (typeof PC.origBodyOwner !== "string") { + PC.origBodyOwner = ""; + } + PC.origBodyOwnerID = Math.max(+PC.origBodyOwnerID, 0) || 0; + if (PC.indenture !== undefined) { + delete PC.indenture; + } + if (PC.indentureRestrictions !== undefined) { + delete PC.indentureRestrictions; + } + if (typeof PC.partners !== "object") { + PC.partners = new Set(); + } + PC.accent = 0; // Might not use? Would be related to changing languages. Might not work out. + } +})(); globalThis.EconomyDatatypeCleanup = function() { V.AProsperityCap = Math.max(+V.AProsperityCap, 0) || 0; @@ -2294,10 +2592,6 @@ App.Entity.Utils.PCCheatCleanup = function() { V.PC.pregWeek = 0; } - if (V.PC.boobs < 300) { - V.PC.boobs = 100; - V.PC.boobsImplant = 0; - } if (V.PC.boobsImplant > V.PC.boobs) { V.PC.boobsImplant = V.PC.boobs; } @@ -2329,7 +2623,7 @@ App.Entity.Utils.PCCheatCleanup = function() { } ibc.recalculate_coeff_id(-1); - PCDatatypeCleanup(); + PCDatatypeCleanup(V.PC); V.upgradeMultiplierArcology = upgradeMultiplier('engineering'); V.upgradeMultiplierMedicine = upgradeMultiplier('medicine'); V.upgradeMultiplierTrade = upgradeMultiplier('trading'); diff --git a/src/debugging/debugJS.js b/src/debugging/debugJS.js index 0b3c3108147e62e8d8aa4ab4f761b80c2aae8df9..503a6f8b0d8425c1f6f9295d05e342b396fa56d7 100644 --- a/src/debugging/debugJS.js +++ b/src/debugging/debugJS.js @@ -16,7 +16,9 @@ Shamelessly copied from https://codereview.stackexchange.com/a/11580 Finds and returns the difference between two objects. Potentially will have arbitrary nestings of objects. */ globalThis.difference = function(o1, o2) { - let k, kDiff, diff = {}; + let k; + let kDiff; + let diff = {}; for (k in o1) { if (!o1.hasOwnProperty(k)) { } else if (typeof o1[k] !== 'object' || typeof o2[k] !== 'object') { diff --git a/src/endWeek/economics/reputation.js b/src/endWeek/economics/reputation.js index 4101c219c39ccd83a36cd02cda79fe973f816ab5..72630715bd638d8d3e64406171ea3798ee9097e3 100644 --- a/src/endWeek/economics/reputation.js +++ b/src/endWeek/economics/reputation.js @@ -580,7 +580,7 @@ App.EndWeek.reputation = function() { repX(-50, "PCactions"); if (canGetPregnant(V.PC)) { r.push(`That's not all that leaks out of you, considering all your shoots are rubber free.`); - r.push(knockMeUp(V.PC, 20, 0, -5, true)); + knockMeUp(V.PC, 20, 0, -5); } } diff --git a/src/endWeek/endWeek.js b/src/endWeek/endWeek.js index 89bc0b634c66679a9743558b906fb4d098db6a14..b2aa078cb8a0498a6ad1fe08b27b7c5bf3f524b9 100644 --- a/src/endWeek/endWeek.js +++ b/src/endWeek/endWeek.js @@ -14,6 +14,9 @@ globalThis.endWeek = (function() { } setUseWeights(); saveWeekTotals(); + if (V.secExpEnabled > 0) { + V.SecExp.war = {foughtThisWeek: 0, type: ""}; + } // pass time for objects that need it weather(); diff --git a/src/endWeek/events/retire.js b/src/endWeek/events/retire.js index 62872652fdb3329e93e311fcc9dd16a9b0700293..c81d54ab585e57de6ef68269fc079b68c552f941 100644 --- a/src/endWeek/events/retire.js +++ b/src/endWeek/events/retire.js @@ -256,7 +256,7 @@ globalThis.retireScene = function(originalSlave) { r.push(`as usual, ${he} doesn't care that the phallus you fuck ${him} with is actually a strap-on. ${He} manages to pretend it's a cock knocking ${him} up.`); } } else if (slave.fetish === "dom" && slave.fetishKnown === 1) { - r.push(`After some mutually aggressive dancing that leaves you both panting and sweaty, you work together to attract another free dancer, a ${girlU} who ${slave.slaveName} had ${his} eye on already. Before long, the poor ${girlU} is screaming with orgasm in a private booth as you take _himU together.`); + r.push(`After some mutually aggressive dancing that leaves you both panting and sweaty, you work together to attract another free dancer, a ${girlU} who ${slave.slaveName} had ${his} eye on already. Before long, the poor ${girlU} is screaming with orgasm in a private booth as you take ${himU} together.`); } else if (slave.fetish === "sadist" && slave.fetishKnown === 1) { r.push(`After some mutually aggressive dancing that leaves you both panting and sweaty, you mutually select one of the club's slaves, and drag ${himU} back to a private booth. Before long, ${hisU} screams for mercy are audible on the floor.`); } else if (slave.fetish === "masochist" && slave.fetishKnown === 1) { @@ -412,7 +412,7 @@ globalThis.retireScene = function(originalSlave) { r.push(`The suit has a pair of gaps for its monstrous breasts, bare expanses of ${slave.skin} skin.`); } if (slave.belly >= 5000) { - r.push(`The suit has a gap for its big belly; a round dome of slave.skin skin.`); + r.push(`The suit has a gap for its big belly; a round dome of ${slave.skin} skin.`); } if (slave.lips > 40) { r.push(`Its upper hole is surrounded by a ludicrous set of swollen lips.`); diff --git a/src/endWeek/nextWeek/nextWeek.js b/src/endWeek/nextWeek/nextWeek.js index a9926dd3060bea79f6ed066009f08a6f5e15228f..ea1410dd64c08a763b17ded6fd50c88c5547bee1 100644 --- a/src/endWeek/nextWeek/nextWeek.js +++ b/src/endWeek/nextWeek/nextWeek.js @@ -37,6 +37,9 @@ App.EndWeek.nextWeek = function() { } else if (V.PC.fertPeak !== 0) { V.PC.fertPeak = 0; } + if (V.PC.health.shortDamage > 0) { + V.PC.health.shortDamage--; + } // Adding random changes to the economy if (V.difficultySwitch === 1) { @@ -298,12 +301,11 @@ App.EndWeek.nextWeek = function() { V.eventQueue.shift(); if (V.secExpEnabled > 0) { - V.foughtThisWeek = 0; if (V.SecExp.buildings.riotCenter) { V.SecExp.buildings.riotCenter.sentUnitCooldown = Math.max(V.SecExp.buildings.riotCenter.sentUnitCooldown - 1, 0); } V.SecExp.proclamation.cooldown = Math.max(V.SecExp.proclamation.cooldown - 1, 0); - delete V.SecExp.war; + V.SecExp.war = {foughtThisWeek: 0, type: ""}; } App.EndWeek.weather(); diff --git a/src/endWeek/nextWeek/resetGlobals.js b/src/endWeek/nextWeek/resetGlobals.js index 9674eefe92fffd6e5bb1528a070271c1587f4fee..8f37de1191f79e7e716c780c09b62cc923996dd7 100644 --- a/src/endWeek/nextWeek/resetGlobals.js +++ b/src/endWeek/nextWeek/resetGlobals.js @@ -35,7 +35,6 @@ App.EndWeek.resetGlobals = function() { V.activeSlave = 0; V.eventSlave = 0; V.subSlave = 0; - V.relation = 0; V.relative = 0; V.relative2 = 0; diff --git a/src/endWeek/reports/arcadeReport.js b/src/endWeek/reports/arcadeReport.js index 86bf873ce2d12ff2cfdc5e2524ac597a777e43a3..e35ddd2adff93972ea58804a61866408562d912a 100644 --- a/src/endWeek/reports/arcadeReport.js +++ b/src/endWeek/reports/arcadeReport.js @@ -82,7 +82,7 @@ App.EndWeek.arcadeReport = function() { if (V.showEWD !== 0) { const {He} = getPronouns(slave); const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -102,6 +102,7 @@ App.EndWeek.arcadeReport = function() { "div", "indent" ); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/brothelReport.js b/src/endWeek/reports/brothelReport.js index f984c14f4b80ec9207951a27fd28f72f62fa12f8..41342c1dbb46183f9cb69e92df8508dca76de2c6 100644 --- a/src/endWeek/reports/brothelReport.js +++ b/src/endWeek/reports/brothelReport.js @@ -101,7 +101,7 @@ App.EndWeek.brothelReport = function() { r.push(`${He} understands how to read the customer and please them effectively.`); } else if (S.Madam.skill.madam > 20) { r.push(`${He} has basic knowledge of how to run a whorehouse.`); - } + } if (S.Madam.skill.madam < V.masteredXP) { const skillIncrease = jsRandom(1, Math.ceil((S.Madam.intelligence + S.Madam.intelligenceImplant) / 15) + 8); r.push(slaveSkillIncrease('madam', S.Madam, skillIncrease)); @@ -266,7 +266,7 @@ App.EndWeek.brothelReport = function() { tired(madam); if (V.showEWD !== 0) { const madamEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(madamEntry, madam); + const artSpan = App.UI.DOM.appendNewElement("span", madamEntry); App.SlaveAssignment.appendSlaveLinks(madamEntry, madam); App.Events.addNode( madamEntry, @@ -276,6 +276,7 @@ App.EndWeek.brothelReport = function() { ] ); madamEntry.append(App.SlaveAssignment.standardSlaveReport(madam, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, madam); } else { App.SlaveAssignment.standardSlaveReport(madam, true); } @@ -331,14 +332,14 @@ App.EndWeek.brothelReport = function() { if (slave.trust < 30) { slave.trust += 5; } - if (slave.energy > 40 && slave.energy < 95) { + if (slave.energy.isBetween(40, 95)) { slave.energy++; } if (V.showEWD !== 0) { const {He} = getPronouns(slave); const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -359,6 +360,7 @@ App.EndWeek.brothelReport = function() { "indent" ); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/cellblockReport.js b/src/endWeek/reports/cellblockReport.js index 61ec702120605a74bbb01a048374a819e5305de2..3a3e58683bbc7485cab5730c7d579ec1fd3cf0e4 100644 --- a/src/endWeek/reports/cellblockReport.js +++ b/src/endWeek/reports/cellblockReport.js @@ -103,7 +103,7 @@ App.EndWeek.cellblockReport = function() { devBonus--; trustMalus--; idleBonus--; - r.push(`${His} kindness sometimes shows through ${his} tough facade, letting prisoners get off easier than they should.`); + r.push(`${His} kindness sometimes shows through ${his} tough façade, letting prisoners get off easier than they should.`); } if (S.Wardeness.dick > 2 && canPenetrate(S.Wardeness)) { devBonus++; @@ -174,7 +174,7 @@ App.EndWeek.cellblockReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const wardenessEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(wardenessEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", wardenessEntry); App.SlaveAssignment.appendSlaveLinks(wardenessEntry, slave); App.Events.addNode( wardenessEntry, @@ -184,6 +184,7 @@ App.EndWeek.cellblockReport = function() { ] ); wardenessEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -293,7 +294,7 @@ App.EndWeek.cellblockReport = function() { if (V.showEWD !== 0) { const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -311,6 +312,7 @@ App.EndWeek.cellblockReport = function() { continue; // slave has been reassigned; remaining report will run at her new assignment } slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/clinicReport.js b/src/endWeek/reports/clinicReport.js index aa3c9fbc5e4f4a7643a17e0a69ad7de453c0b4e4..880417468ff838174f6c08124bc1d6de8a92c0ab 100644 --- a/src/endWeek/reports/clinicReport.js +++ b/src/endWeek/reports/clinicReport.js @@ -257,10 +257,11 @@ App.EndWeek.clinicReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const nurseEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(nurseEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", nurseEntry); App.SlaveAssignment.appendSlaveLinks(nurseEntry, slave); $(nurseEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as the clinical nurse.`); nurseEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -398,7 +399,7 @@ App.EndWeek.clinicReport = function() { if (V.showEWD !== 0) { const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); $(slaveEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> `); if (slave.choosesOwnAssignment === 2) { @@ -412,6 +413,7 @@ App.EndWeek.clinicReport = function() { $(patientContent).append(`${He} stays in the clinic ${toSentence(remainReasons)}.`); } slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/clubReport.js b/src/endWeek/reports/clubReport.js index 0d79a0438f806d6330378088e544e6c5a4a113c2..172bf78bbaed0ee0b1d3b790d1fd306bf4ce1b9e 100644 --- a/src/endWeek/reports/clubReport.js +++ b/src/endWeek/reports/clubReport.js @@ -151,7 +151,7 @@ App.EndWeek.clubReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const DJEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(DJEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", DJEntry); App.SlaveAssignment.appendSlaveLinks(DJEntry, slave); App.Events.addNode( DJEntry, @@ -161,6 +161,7 @@ App.EndWeek.clubReport = function() { ] ); DJEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -203,7 +204,7 @@ App.EndWeek.clubReport = function() { if (V.showEWD !== 0) { const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -225,6 +226,7 @@ App.EndWeek.clubReport = function() { "indent" ); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index c2a319a5a7641eef896eb86680c310cd685c01f4..73d5840e7feccbdf44bf09f57cd04f9de120e63e 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -59,7 +59,7 @@ App.EndWeek.dairyReport = function() { slave.counter.vaginal += 10; V.vaginalTotal += 10; } - knockMeUp(slave, 100, 2, V.MilkmaidID, true); + knockMeUp(slave, 100, 2, V.MilkmaidID); } } /* how much effort the MM must take to force a slave into a stall */ @@ -339,7 +339,7 @@ App.EndWeek.dairyReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const milkMaidEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(milkMaidEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", milkMaidEntry); App.SlaveAssignment.appendSlaveLinks(milkMaidEntry, slave); App.Events.addNode( milkMaidEntry, @@ -349,6 +349,7 @@ App.EndWeek.dairyReport = function() { ] ); milkMaidEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -461,7 +462,7 @@ App.EndWeek.dairyReport = function() { cumWeek += milkResults.cum; if (V.showEWD !== 0) { const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -483,6 +484,7 @@ App.EndWeek.dairyReport = function() { "indent" ); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/farmyardReport.js b/src/endWeek/reports/farmyardReport.js index 409f6c450579c10e5aaf39f446d5dc02a84aec5a..93ed24e49df3d6a970d7ba5e1c29d98bdde3b3f8 100644 --- a/src/endWeek/reports/farmyardReport.js +++ b/src/endWeek/reports/farmyardReport.js @@ -11,15 +11,17 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { - // MARK: Farmer + // Farmer function farmerChanges() { - farmerHealth(Farmer); - farmerDevotion(Farmer); - farmerTrust(Farmer); - farmerLivingRules(Farmer); - farmerRestRules(Farmer); - farmerCashBonus(Farmer); + if (Farmer) { + farmerHealth(Farmer); + farmerDevotion(Farmer); + farmerTrust(Farmer); + farmerLivingRules(Farmer); + farmerRestRules(Farmer); + farmerCashBonus(Farmer); + } } function farmerHealth(slave) { @@ -125,9 +127,9 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { const {he, his, himself, He} = getPronouns(slave); if (fetish === 1) { - return `${He} isn't above sampling the merchandise ${himself}; before long it's obvious to ${his} workers that ${he} <span class="lightcoral">really likes fucking them.</span> `; + return `${He} isn't above sampling the merchandise ${himself}; before long it's obvious to ${his} workers that ${he} <span class="fetish gain">really likes fucking them.</span> `; } else if (fetish === 2) { - return `${He}'s careful that all of the farmhands under ${his} supervision are all ready to work every morning, and ${he} <span class="lightsalmon">becomes more dominant.</span> `; + return `${He}'s careful that all of the farmhands under ${his} supervision are all ready to work every morning, and ${he} <span class="fetish inc">becomes more dominant.</span> `; } } @@ -139,13 +141,13 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { if (slave.skill.farmer <= 10) { r.push(`Though ${slave.slaveName} does ${his} best to manage the farmyard, with ${his} lack of skill ${he} can do little.`); } else if (slave.skill.farmer <= 30) { - r.push(`${slave.slaveName}'s basic skills marginally <span class="yellowgreen">improve</span> business at ${V.farmyardName}.`); + r.push(`${slave.slaveName}'s basic skills marginally <span class="cash">improve</span> business at ${V.farmyardName}.`); } else if (slave.skill.farmer <= 60) { - r.push(`${slave.slaveName}'s skills <span class="yellowgreen">improve</span> business at ${V.farmyardName}.`); + r.push(`${slave.slaveName}'s skills <span class="cash">improve</span> business at ${V.farmyardName}.`); } else if (slave.skill.farmer < 100) { - r.push(`${slave.slaveName}'s skills greatly <span class="yellowgreen">improve</span> business at ${V.farmyardName}.`); + r.push(`${slave.slaveName}'s skills greatly <span class="cash">improve</span> business at ${V.farmyardName}.`); } else { - r.push(`${slave.slaveName}'s mastery immensely <span class="yellowgreen">improves</span> business at ${V.farmyardName}.`); + r.push(`${slave.slaveName}'s mastery immensely <span class="cash">improves</span> business at ${V.farmyardName}.`); } if (slave.actualAge > 35) { @@ -217,9 +219,9 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { let seed = V.farmyardShowgirls ? App.Facilities.Farmyard.farmShowsIncome(slave) : jsRandom(1, 10) * (jsRandom(150, 170) + (farmerBonus * 10)); if (V.farmyardShows && !V.farmyardShowgirls) { - r.push(`<p class="indent">Since ${he} doesn't have enough showgirls to entertain your arcology's citizens, ${he} puts on shows with your animals on ${his} own, earning <span class="yellowgreen">${cashFormat(seed)}.</span></p>`); + r.push(`<p class="indent">Since ${he} doesn't have enough showgirls to entertain your arcology's citizens, ${he} puts on shows with your animals on ${his} own, earning <span class="cash">${cashFormat(seed)}.</span></p>`); } else if (!V.farmyardFarmers) { - r.push(`<p class="indent">Since ${V.farmyardName} doesn't have anyone tending to the crops, ${he} looks after them ${himself}, earning <span class="yellowgreen">${cashFormat(seed)}.</span></p>`); + r.push(`<p class="indent">Since ${V.farmyardName} doesn't have anyone tending to the crops, ${he} looks after them ${himself}, earning <span class="cash">${cashFormat(seed)}.</span></p>`); } return r; @@ -256,10 +258,11 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { if (V.showEWD) { const farmerEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(farmerEntry, Farmer); - App.SlaveAssignment.appendSlaveLinks(farmerEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", farmerEntry); + App.SlaveAssignment.appendSlaveLinks(farmerEntry, Farmer); $(farmerEntry).append(`<span class="slave-name">${SlaveFullName(Farmer)}</span> is serving as the Farmer.`); farmerEntry.append(App.SlaveAssignment.standardSlaveReport(Farmer, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, Farmer); } else { App.SlaveAssignment.standardSlaveReport(Farmer, true); } @@ -270,7 +273,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { - // MARK: Farmhands + // Farmhands function farmhandCount(count) { return `<strong>There ${count > 1 ? `are ${count} farmhands` : `is one farmhand`} working out of ${V.farmyardName}.</strong>`; @@ -278,7 +281,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { function farmhandLivingRules(slave) { switch (V.farmyardDecoration) { - case 'Degradation': + case 'Degradationist': case 'standard': slave.rules.living = 'spare'; break; @@ -336,7 +339,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { } function farmhandEnergy(slave) { - if (slave.energy > 40 && slave.energy < 95) { + if (slave.energy.isBetween(40, 95)) { slave.energy++; } } @@ -351,7 +354,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { if (V.showEWD) { const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); $(slaveEntry).append(`<span class="slave-name">${SlaveFullName(slave)}</span> `); @@ -374,6 +377,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { $(farmhandContent).append(App.SlaveAssignment.workTheFarm(slave)); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // silently discard return values App.SlaveAssignment.workTheFarm(slave); App.SlaveAssignment.standardSlaveReport(slave, true); @@ -383,7 +387,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { - // MARK: Menials + // Menials if (V.farmMenials) { let farmMenialProductivity = 9; @@ -409,7 +413,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { - // MARK: Farmyard + // Farmyard function farmyardStatsRecords() { const f = V.facility.farmyard; @@ -448,11 +452,11 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { r.push(`${farmyardNameCaps}'s customer's enjoyed`); if (V.seeBestiality && V.policies.bestialityOpenness && (V.canine || V.hooved || V.feline)) { - r.push(`<span class="green">watching farmhands fuck animals in ${V.farmyardDecoration} surroundings.</span>`); + r.push(`<span class="reputation inc">watching farmhands fuck animals in ${V.farmyardDecoration} surroundings.</span>`); } else if (V.farmyardShows) { - r.push(`<span class="green">watching farmhands put on shows in ${V.farmyardDecoration} surroundings.</span>`); + r.push(`<span class="reputation inc">watching farmhands put on shows in ${V.farmyardDecoration} surroundings.</span>`); } else { - r.push(`<span class="green">partaking of ${V.farmyardName}'s fine produce in its ${V.farmyardDecoration} décor.</span>`); + r.push(`<span class="reputation inc">partaking of ${V.farmyardName}'s fine produce in its ${V.farmyardDecoration} décor.</span>`); } $(decorationEffects).append(r.join(' ')); @@ -473,7 +477,7 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { r.push(farmyardNameCaps); if (profit) { - r.push(`makes you <span class="yellowgreen">${cashFormat(Math.trunc(profit))}</span>`); + r.push(`makes you <span class="cash">${cashFormat(Math.trunc(profit))}</span>`); } if (V.foodMarket) { @@ -490,7 +494,6 @@ App.Facilities.Farmyard.farmyardReport = function farmyardReport() { return $(profitContent).append(r.join(' ')); } - // FIXME: no idea what I'm doing here const statsSpan = document.createElement("span"); farmyardStatsRecords(); diff --git a/src/endWeek/reports/masterSuiteReport.js b/src/endWeek/reports/masterSuiteReport.js index a86843b1f2863211a74f593f440f6f715155de1e..ed0f38e73410e9f2271b9cce676fb03e4927eac5 100644 --- a/src/endWeek/reports/masterSuiteReport.js +++ b/src/endWeek/reports/masterSuiteReport.js @@ -286,7 +286,7 @@ App.EndWeek.masterSuiteReport = function() { slave.boobs -= slave.boobsMilk; slave.boobsMilk = 0; } - if (slave.energy > 40 && slave.energy < 95) { + if (slave.energy.isBetween(40, 95)) { r.push(`Being a constant part of the fuckpit orgy <span class="green">greatly heightens ${his} libido.</span>`); slave.energy += 2; } @@ -431,16 +431,18 @@ App.EndWeek.masterSuiteReport = function() { if (concubine) { tired(concubine); const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, concubine); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, concubine); App.Events.addNode(slaveEntry, [concubineText(), commonText(concubine)]); + App.SlaveAssignment.appendSlaveArt(artSpan, concubine); } for (const slave of App.SlaveAssignment.reportSlaves(slaves)) { const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); App.Events.addNode(slaveEntry, [nonConcubineText(slave), commonText(slave)]); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } if (pregnantSlaves > 0 && V.arcologies[0].FSRestart !== "unset" && V.propOutcome !== 1 && V.eugenicsFullControl !== 1) { diff --git a/src/endWeek/reports/nurseryReport.js b/src/endWeek/reports/nurseryReport.js index 71540f5f0838db2452450ae5e20beb594806d10d..821fb0ec56f529330b29b3aacbb9875a0a6d49a2 100644 --- a/src/endWeek/reports/nurseryReport.js +++ b/src/endWeek/reports/nurseryReport.js @@ -140,10 +140,11 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() { if (V.showEWD !== 0) { const matronEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(matronEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", matronEntry); App.SlaveAssignment.appendSlaveLinks(matronEntry, slave); $(matronEntry).append(`<span class="slave-name">${SlaveFullName(slave)}</span> is serving as your Matron.`); matronEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -196,7 +197,7 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() { if (V.showEWD) { const {He} = getPronouns(slave); const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); $(slaveEntry).append(`<span class="slave-name">${SlaveFullName(slave)}</span> `); @@ -211,6 +212,7 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() { $(nannyContent).append(`${He} ${App.SlaveAssignment.nanny(slave, matronBonus)}`); // FIXME: nanny() takes one argument slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // silently discard return values App.SlaveAssignment.nanny(slave, matronBonus); // FIXME: nanny() takes one argument App.SlaveAssignment.standardSlaveReport(slave, true); diff --git a/src/endWeek/reports/schoolroomReport.js b/src/endWeek/reports/schoolroomReport.js index c80b267bce98021a3dcd09f286e50fdf4df08413..ba4a6f594458051a15fcb69094a63ab6c28ea28f 100644 --- a/src/endWeek/reports/schoolroomReport.js +++ b/src/endWeek/reports/schoolroomReport.js @@ -152,10 +152,11 @@ App.EndWeek.schoolroomReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const schoolteacherEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(schoolteacherEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", schoolteacherEntry); App.SlaveAssignment.appendSlaveLinks(schoolteacherEntry, slave); $(schoolteacherEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as your Schoolteacher.`); schoolteacherEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -225,7 +226,7 @@ App.EndWeek.schoolroomReport = function() { if (V.showEWD !== 0) { const {He} = getPronouns(slave); const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); $(slaveEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> `); if (slave.choosesOwnAssignment === 2) { @@ -242,6 +243,7 @@ App.EndWeek.schoolroomReport = function() { const studentContent = App.UI.DOM.appendNewElement("div", slaveEntry, '', "indent"); $(studentContent).append(`${He} ${App.SlaveAssignment.takeClasses(slave)}`); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/servantsQuartersReport.js b/src/endWeek/reports/servantsQuartersReport.js index 8e571b990e1655124582820f3d637cf3db7f9897..623406d9ee9c823a59866839db35da43ab83c65d 100644 --- a/src/endWeek/reports/servantsQuartersReport.js +++ b/src/endWeek/reports/servantsQuartersReport.js @@ -59,7 +59,7 @@ App.EndWeek.servantsQuartersReport = function() { if (V.stewardessImpregnates === 1 && canPenetrate(S.Stewardess) && S.Stewardess.pubertyXY === 1 && !slaveResting(S.Stewardess)) { for (const slave of slaves) { if (canImpreg(slave, S.Stewardess) && slave.pregKnown === 0) { - knockMeUp(slave, 100, 2, S.Stewardess.ID, true); + knockMeUp(slave, 100, 2, S.Stewardess.ID); if (slave.mpreg === 1) { seX(S.Stewardess, "penetrative", slave, "anal", 10); if (slave.anus === 0) { @@ -241,10 +241,11 @@ App.EndWeek.servantsQuartersReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const stewardessEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(stewardessEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", stewardessEntry); App.SlaveAssignment.appendSlaveLinks(stewardessEntry, slave); $(stewardessEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as your Stewardess.`); stewardessEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -314,7 +315,7 @@ App.EndWeek.servantsQuartersReport = function() { if (V.showEWD !== 0) { const {He} = getPronouns(slave); const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); $(slaveEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> `); if (slave.choosesOwnAssignment === 2) { @@ -332,6 +333,7 @@ App.EndWeek.servantsQuartersReport = function() { SQMilkSale += milkResults.milkSale; } slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/reports/spaReport.js b/src/endWeek/reports/spaReport.js index 1e9884e14d96cc0fce638c9d15d2a94928ee2c4d..0c728e041c022e9bb5d43c2e3897f874bab77ac5 100644 --- a/src/endWeek/reports/spaReport.js +++ b/src/endWeek/reports/spaReport.js @@ -289,7 +289,7 @@ App.EndWeek.spaReport = function() { /* apply following SA passages to facility leader */ if (V.showEWD !== 0) { const attendantEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(attendantEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", attendantEntry); App.SlaveAssignment.appendSlaveLinks(attendantEntry, slave); App.Events.addNode( attendantEntry, @@ -299,6 +299,7 @@ App.EndWeek.spaReport = function() { App.SlaveAssignment.standardSlaveReport(slave, false), ] ); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { App.SlaveAssignment.standardSlaveReport(slave, true); } @@ -374,7 +375,7 @@ App.EndWeek.spaReport = function() { if (V.showEWD !== 0) { const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report"); - App.SlaveAssignment.appendSlaveArt(slaveEntry, slave); + const artSpan = App.UI.DOM.appendNewElement("span", slaveEntry); App.SlaveAssignment.appendSlaveLinks(slaveEntry, slave); r = []; r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); @@ -402,6 +403,7 @@ App.EndWeek.spaReport = function() { } App.Events.addNode(slaveEntry, r, "div", "indent"); slaveEntry.append(App.SlaveAssignment.standardSlaveReport(slave, false)); + App.SlaveAssignment.appendSlaveArt(artSpan, slave); } else { // discard return values silently App.SlaveAssignment.choosesOwnJob(slave); diff --git a/src/endWeek/saAgent.js b/src/endWeek/saAgent.js index 7e176c5c07436bcf7058eae1e3cdb0c331d30ead..550c48cdb10209f14978a7ce5141f6e3ec6cdc06 100644 --- a/src/endWeek/saAgent.js +++ b/src/endWeek/saAgent.js @@ -593,7 +593,7 @@ App.SlaveAssignment.agent = function(slave) { slave.vaginaLube += 1; } if (slave.geneMods.NCS === 0) { - if (slave.hips < 2 && random(70 - slave.physicalAge, 300) < slave.hormoneBalance && slave.physicalAge > 9 && slave.physicalAge < 20) { + if (slave.hips < 2 && random(70 - slave.physicalAge, 300) < slave.hormoneBalance && slave.physicalAge.isBetween(9, 20)) { slave.hips += 1; } } diff --git a/src/endWeek/saBeYourHeadGirl.js b/src/endWeek/saBeYourHeadGirl.js index 1900aed06ecaaf22a22be30aa625808764980957..4b8cd5bc40243a1063b1cc4d645348298b350b43 100644 --- a/src/endWeek/saBeYourHeadGirl.js +++ b/src/endWeek/saBeYourHeadGirl.js @@ -3,8 +3,12 @@ App.SlaveAssignment.beYourHeadGirl = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife, wives; + let he; + let him; + let his; + let himself; + let He; + let His; let fetishChange; let arcology; @@ -21,8 +25,7 @@ App.SlaveAssignment.beYourHeadGirl = (function() { arcology = V.arcologies[0]; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife, wives + he, him, his, himself, He, His, } = getPronouns(slave)); updateHGState(slave); diff --git a/src/endWeek/saChoosesOwnClothes.js b/src/endWeek/saChoosesOwnClothes.js index 64bb9e809ee76cfd1e9245bc270639d0871b025c..ceb1ba6616af889d203a7886d82325f0da7c4c5d 100644 --- a/src/endWeek/saChoosesOwnClothes.js +++ b/src/endWeek/saChoosesOwnClothes.js @@ -3,9 +3,12 @@ App.SlaveAssignment.choosesOwnClothes = (function() { let player; let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, himself, He, His; - + let He; + let His; + let he; + let him; + let his; + let himself; /** * @param {App.Entity.SlaveState} slave @@ -16,8 +19,7 @@ App.SlaveAssignment.choosesOwnClothes = (function() { r = ""; if (slave.choosesOwnClothes !== 1) { return r; } ({ - he, him, his, himself, - He, His + He, His, he, him, his, himself, } = getPronouns(slave)); if (slave.fetish === "mindbroken") { diff --git a/src/endWeek/saChoosesOwnJob.js b/src/endWeek/saChoosesOwnJob.js index cc1a4e7f439d3235bd259f84c9c818f2106ee559..ff7f150b586c899409b3d80c40f761d44faeda40 100644 --- a/src/endWeek/saChoosesOwnJob.js +++ b/src/endWeek/saChoosesOwnJob.js @@ -3,8 +3,12 @@ App.SlaveAssignment.choosesOwnJob = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let himself; + let girl; + let He; let clinicL; let schoolL; @@ -39,8 +43,7 @@ App.SlaveAssignment.choosesOwnJob = (function() { arcology = V.arcologies[0]; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + He, he, him, his, himself, girl, } = getPronouns(slave)); if (slave.choosesOwnAssignment === 0 || slave.fuckdoll > 0 || slave.fetish === "mindbroken") { diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 264f98be307f196bed79832a74d044c77e794e4f..af6c41d459aa1291ac9b4e77733187d167b1aa42 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -4,8 +4,11 @@ App.SlaveAssignment.clothes = (function() { let r; let arcology; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let He; + let His; return saClothes; @@ -19,8 +22,7 @@ App.SlaveAssignment.clothes = (function() { arcology = V.arcologies[0]; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + He, His, he, him, his, } = getPronouns(slave)); updateAccessories(slave); diff --git a/src/endWeek/saDevotion.js b/src/endWeek/saDevotion.js index 060a87bdaf8b119d8d3f8cb34e4404cefc0af856..df0eb49ce3c43d759a9091de6e6b957631cb33b6 100644 --- a/src/endWeek/saDevotion.js +++ b/src/endWeek/saDevotion.js @@ -3,8 +3,12 @@ App.SlaveAssignment.devotion = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, He, His; + let He; + let His; + let he; + let him; + let his; + let himself; let playerPronouns; let PC; let gettingPersonalAttention; @@ -21,8 +25,7 @@ App.SlaveAssignment.devotion = (function() { PC = V.PC; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His + He, His, he, him, his, himself } = getPronouns(slave)); playerPronouns = getPronouns(PC); @@ -666,12 +669,12 @@ App.SlaveAssignment.devotion = (function() { if (PC.vagina > 0) { seX(slave, "penetrative", PC, "vaginal", App.EndWeek.saVars.freeSexualEnergy); if (canImpreg(PC, slave)) { - knockMeUp(PC, App.EndWeek.saVars.freeSexualEnergy, 0, slave.ID, true); + knockMeUp(PC, App.EndWeek.saVars.freeSexualEnergy, 0, slave.ID); } } else if (PC.anus > 0) { seX(slave, "penetrative", PC, "anal", App.EndWeek.saVars.freeSexualEnergy); if (canImpreg(PC, slave)) { - knockMeUp(PC, App.EndWeek.saVars.freeSexualEnergy, 1, slave.ID, true); + knockMeUp(PC, App.EndWeek.saVars.freeSexualEnergy, 1, slave.ID); } } if (V.policies.sexualOpenness === 0) { diff --git a/src/endWeek/saDiet.js b/src/endWeek/saDiet.js index adeb0b2ef46d466cad6a186abd6f5b270c946830..f7ea1f2bd89920fe6689e9aa479168e8d995a00e 100644 --- a/src/endWeek/saDiet.js +++ b/src/endWeek/saDiet.js @@ -3,8 +3,12 @@ App.SlaveAssignment.diet = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let himself; + let He; + let His; let weightGain; let weightLoss; @@ -33,8 +37,7 @@ App.SlaveAssignment.diet = (function() { buttSize = slave.butt - slave.buttImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, himself, He, His } = getPronouns(slave)); if (V.feeder === 1) { @@ -589,10 +592,11 @@ App.SlaveAssignment.diet = (function() { } if (random(1, roll) <= target && buttSize > 0) { // FIXME: identical branches - if (slave.geneMods.NCS === 1 && buttSize > 2) { // TODO: WRITE BRANCH + if (slave.geneMods.NCS === 1 && buttSize > 2) { r.push(`<span class="change negative">${His} butt gets a little smaller.</span>`); slave.butt -= 1; } else { + // TODO: write this r.push(`<span class="change negative">${His} butt gets a little smaller.</span>`); slave.butt -= 1; } diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js index d0c56e860e37eac3455e33848a8764bc2ed04b7c..71bc9502f62108b34c47c07e8868f658cbb1f414 100644 --- a/src/endWeek/saDrugs.js +++ b/src/endWeek/saDrugs.js @@ -3,8 +3,12 @@ App.SlaveAssignment.drugs = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let himself; + let He; + let His; let intensive; let gigantomastiaMod; @@ -28,8 +32,7 @@ App.SlaveAssignment.drugs = (function() { buttSize = slave.butt - slave.buttImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, himself, He, His } = getPronouns(slave)); if (slave.drugs !== "no drugs") { diff --git a/src/endWeek/saGetMilked.js b/src/endWeek/saGetMilked.js index 7ae4fc0e5b406ded47faed735663e0f28c7f7b76..abe447c9f927e7a4ddbae23d781ebf85b9f60ed4 100644 --- a/src/endWeek/saGetMilked.js +++ b/src/endWeek/saGetMilked.js @@ -37,7 +37,11 @@ App.SlaveAssignment.getMilked = (function() { let cumHormones; let implantEffect; - let he, him, his, He, His; + let he; + let him; + let his; + let He; + let His; return saGetMilked; diff --git a/src/endWeek/saGuardYou.js b/src/endWeek/saGuardYou.js index 6cd1bf9433b532136e7ce432087e902c304d7bb4..65777a086bde165f5b27f95215669204acd7228c 100644 --- a/src/endWeek/saGuardYou.js +++ b/src/endWeek/saGuardYou.js @@ -3,8 +3,11 @@ App.SlaveAssignment.guardYou = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, He, His; + let he; + let him; + let his; + let He; + let His; let BGImpressiveness; @@ -24,8 +27,7 @@ App.SlaveAssignment.guardYou = (function() { r = []; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His + he, him, his, He, His } = getPronouns(slave)); BGImpressiveness = deadliness(slave); diff --git a/src/endWeek/saHormonesEffects.js b/src/endWeek/saHormonesEffects.js index 6cc50080d1d4fbf6eef1e5f161316f92cd4744a1..e51986ce7ee9fd66d812b26189b73471fbb72fbf 100644 --- a/src/endWeek/saHormonesEffects.js +++ b/src/endWeek/saHormonesEffects.js @@ -3,8 +3,11 @@ App.SlaveAssignment.hormonesEffects = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let He; + let His; let gigantomastiaMod; let rearLipedemaMod; @@ -31,8 +34,7 @@ App.SlaveAssignment.hormonesEffects = (function() { faceValue = slave.face - slave.faceImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, He, His, } = getPronouns(slave)); hormoneBalance(slave); @@ -690,7 +692,7 @@ App.SlaveAssignment.hormonesEffects = (function() { } } } - if (faceValue > 0 && faceValue < 100) { + if (faceValue.isBetween(0, 100)) { r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`); faceDec = 1 + V.hormoneUpgradePower; slave.face = Math.clamp(slave.face - faceDec, -100, 100); @@ -729,11 +731,11 @@ App.SlaveAssignment.hormonesEffects = (function() { } if (slave.geneMods.NCS === 0) { - if (slave.dick > 0 && slave.dick < 5) { + if (slave.dick.isBetween(0, 5)) { r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`); slave.dick++; } - if (slave.balls > 0 && slave.balls < 5) { + if (slave.balls.isBetween(0, 5)) { r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`); slave.balls++; } @@ -779,7 +781,7 @@ App.SlaveAssignment.hormonesEffects = (function() { } } } - if (faceValue > 0 && faceValue < 100) { + if (faceValue.isBetween(0, 100)) { r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`); faceDec = 1 + V.hormoneUpgradePower; slave.face = Math.clamp(slave.face - faceDec, -100, 100); @@ -819,11 +821,11 @@ App.SlaveAssignment.hormonesEffects = (function() { } if (slave.geneMods.NCS === 0) { - if (slave.dick > 0 && slave.dick < 5) { + if (slave.dick.isBetween(0, 5)) { r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`); slave.dick++; } - if (slave.balls > 0 && slave.balls < 5 && slave.ballType !== "sterile") { + if (slave.balls.isBetween(0, 5) && slave.ballType !== "sterile") { r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`); slave.balls++; } @@ -864,7 +866,7 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.faceShape = "androgynous"; } } - if (faceValue > 20 && faceValue < 100) { + if (faceValue.isBetween(20, 100)) { r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`); faceDec = 1 + V.hormoneUpgradePower; slave.face = Math.clamp(slave.face - faceDec, -100, 100); @@ -904,11 +906,11 @@ App.SlaveAssignment.hormonesEffects = (function() { } if (slave.geneMods.NCS === 0) { - if (slave.dick > 0 && slave.dick < 4) { + if (slave.dick.isBetween(0, 4)) { r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`); slave.dick++; } - if (slave.balls > 0 && slave.balls < 4 && slave.ballType !== "sterile") { + if (slave.balls.isBetween(0, 4) && slave.ballType !== "sterile") { r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`); slave.balls++; } @@ -949,7 +951,7 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.faceShape = "androgynous"; } } - if (faceValue > 40 && faceValue < 100) { + if (faceValue.isBetween(40, 100)) { r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`); faceDec = 1 + V.hormoneUpgradePower; slave.face = Math.clamp(slave.face - faceDec, -100, 100); @@ -987,11 +989,11 @@ App.SlaveAssignment.hormonesEffects = (function() { } if (slave.geneMods.NCS === 0) { - if (slave.dick > 0 && slave.dick < 3) { + if (slave.dick.isBetween(0, 3)) { r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`); slave.dick++; } - if (slave.balls > 0 && slave.balls < 3 && slave.ballType !== "sterile") { + if (slave.balls.isBetween(0, 3) && slave.ballType !== "sterile") { r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`); slave.balls++; } @@ -1026,7 +1028,7 @@ App.SlaveAssignment.hormonesEffects = (function() { } } else if (slave.hormoneBalance <= -100) { if (slave.geneMods.NCS === 0) { - if (faceValue > 60 && faceValue < 100) { + if (faceValue.isBetween(60, 100)) { r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`); faceDec = 1 + V.hormoneUpgradePower; slave.face = Math.clamp(slave.face - faceDec, -100, 100); @@ -1070,11 +1072,11 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.waist += 2 + V.hormoneUpgradePower; } - if (slave.dick > 0 && slave.dick < 2) { + if (slave.dick.isBetween(0, 2)) { r.push(`Hormonal effects cause <span class="lime">${his} micropenis to return to a more normal size.</span>`); slave.dick++; } - if (slave.balls > 0 && slave.balls < 2) { + if (slave.balls.isBetween(0, 2)) { r.push(`Hormonal effects cause <span class="lime">${his} balls to drop.</span>`); slave.balls++; } diff --git a/src/endWeek/saInflation.js b/src/endWeek/saInflation.js index 2ce8a41b70dd120c2b5beb27bcdfd74d74f9158e..ccf41fcd879afadbec1e8044758adfabc528b6f4 100644 --- a/src/endWeek/saInflation.js +++ b/src/endWeek/saInflation.js @@ -3,8 +3,12 @@ App.SlaveAssignment.inflation = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let himself; + let He; + let His; let gigantomastiaMod; let rearLipedemaMod; @@ -34,8 +38,7 @@ App.SlaveAssignment.inflation = (function() { } ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, himself, He, His, } = getPronouns(slave)); inflationCancellation(slave); diff --git a/src/endWeek/saLiveWithHG.js b/src/endWeek/saLiveWithHG.js index 434fa9aad5acf3f637ea4bed501f04c0b33c14d3..f9207d4e6057fb60cbce9d33a7721693481a729f 100644 --- a/src/endWeek/saLiveWithHG.js +++ b/src/endWeek/saLiveWithHG.js @@ -6,8 +6,21 @@ App.SlaveAssignment.liveWithHG = (function() { let r; let arcology; - let he, him, his, himself, girl, He, wife; - let he2, him2, his2, himself2, He2, His2, wife2; + let he; + let him; + let his; + let himself; + let girl; + let He; + let wife; + + let he2; + let him2; + let his2; + let himself2; + let He2; + let His2; + let wife2; let diet; let hormones; @@ -448,7 +461,7 @@ App.SlaveAssignment.liveWithHG = (function() { */ function HGTrainsSlave(slave, HG) { if (slave.skill.oral <= 30) { - r.push(`${HG.slaveName} wants to come home to a talented tongue, so ${he2} trains slave.slaveName's oral skills.`); + r.push(`${HG.slaveName} wants to come home to a talented tongue, so ${he2} trains ${slave.slaveName}'s oral skills.`); r.push(slaveSkillIncrease('oral', slave, 10)); } else if (slave.vagina > 0 && canDoVaginal(slave) && slave.skill.vaginal <= 30) { r.push(`${HG.slaveName} wants ${his2} personal sex slave to be as skilled with ${his} pussy as possible, so ${he2} trains ${slave.slaveName}'s vaginal skills.`); @@ -518,7 +531,7 @@ App.SlaveAssignment.liveWithHG = (function() { } } else if (slave.anus === 3) { if (HG.dick > 5 && HG.energy > 95 && random(1, 100) > 80) { - r.push(`${HG.slaveName} uses slave.slaveName's loose anus to vent ${his2} sexual addiction. Constant assrape from the Head Girl's monster cock eventually leaves it <span class="change positive">gaping.</span>`); + r.push(`${HG.slaveName} uses ${slave.slaveName}'s loose anus to vent ${his2} sexual addiction. Constant assrape from the Head Girl's monster cock eventually leaves it <span class="change positive">gaping.</span>`); slave.anus += 1; } } @@ -540,10 +553,10 @@ App.SlaveAssignment.liveWithHG = (function() { r.push(`${slave.slaveName}. ${His2} eagerness completely exposes ${his2} hidden <span class="fetish gain">pregnancy kink.</span>`); HG.fetishKnown = 1; } - knockMeUp(slave, 100, 2, V.HeadGirlID, true); + knockMeUp(slave, 100, 2, V.HeadGirlID); if (HG.fetishStrength > 70 && canImpreg(HG, slave)) { r.push(`Unsurprisingly, ${he2} gives in to ${his2} own cravings and also takes ${slave.slaveName}'s loads until ${he2} <span class="pregnant">gets pregnant</span> too.`); - knockMeUp(HG, 100, 2, slave.ID, true); + knockMeUp(HG, 100, 2, slave.ID); } } else if (HG.fetishKnown === 1) { r.push(`${HG.slaveName} knows better than to even consider knocking up ${slave.slaveName}.`); @@ -559,13 +572,13 @@ App.SlaveAssignment.liveWithHG = (function() { HG.fetishKnown = 1; HG.devotion += 4; } - knockMeUp(HG, 100, 2, slave.ID, true); + knockMeUp(HG, 100, 2, slave.ID); } else if (HG.fetishKnown === 1) { r.push(`${HG.slaveName} knows better than to even consider getting knocked up by ${slave.slaveName}.`); } } else if (arcology.FSRepopulationFocusPregPolicy === 1 && canImpreg(slave, HG) && slave.pregKnown === 0) { r.push(`${HG.slaveName} wastes no time in chasing the current trend and hurries to <span class="pregnant">impregnate</span> ${slave.slaveName}.`); - knockMeUp(slave, 100, 2, V.HeadGirlID, true); + knockMeUp(slave, 100, 2, V.HeadGirlID); } else if (slave.pregKnown === 1) { if (slave.breedingMark === 1) { r.push(`Since ${slave.slaveName} is marked as a breeding slave, ${HG.slaveName} feels it is ${his2} duty to keep ${his} pregnancy safe.`); @@ -585,7 +598,7 @@ App.SlaveAssignment.liveWithHG = (function() { r.push(`planting <span class="pregnant">another child</span> in ${him}.`); } } - knockMeUp(slave, 100, 2, V.HeadGirlID, true); + knockMeUp(slave, 100, 2, V.HeadGirlID); } else { if (HG.fetishKnown === 1) { if (slave.bellyPreg > 500) { diff --git a/src/endWeek/saLongTermEffects.js b/src/endWeek/saLongTermEffects.js index 60da4bdcb282fe593496a616b43e6d9ee14b52dc..a7f1cbbdc61f0693bab79b40dcdf515932eac6e1 100644 --- a/src/endWeek/saLongTermEffects.js +++ b/src/endWeek/saLongTermEffects.js @@ -3,8 +3,12 @@ App.SlaveAssignment.longTermEffects = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife; + let he; + let him; + let his; + let himself; + let He; + let His; let gigantomastiaMod; let rearQuirk; @@ -26,8 +30,7 @@ App.SlaveAssignment.longTermEffects = (function() { const oldEnergy = slave.energy; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife + he, him, his, himself, He, His, } = getPronouns(slave)); if (slave.fuckdoll > 0) { diff --git a/src/endWeek/saLongTermMentalEffects.js b/src/endWeek/saLongTermMentalEffects.js index df248eb6019f35724d234cf4116cd99f26214dde..1329d27b29848f24938869a28cce2d2c2cacc610 100644 --- a/src/endWeek/saLongTermMentalEffects.js +++ b/src/endWeek/saLongTermMentalEffects.js @@ -3,8 +3,13 @@ App.SlaveAssignment.longTermMentalEffects = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife; + let he; + let him; + let his; + let himself; + let girl; + let He; + let His; let boobSize; @@ -20,8 +25,7 @@ App.SlaveAssignment.longTermMentalEffects = (function() { boobSize = slave.boobs - slave.boobsImplant - slave.boobsMilk; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife + he, him, his, himself, girl, He, His, } = getPronouns(slave)); if (slave.fetish === "mindbroken") { diff --git a/src/endWeek/saLongTermPhysicalEffects.js b/src/endWeek/saLongTermPhysicalEffects.js index 3fa1aeb9b5cb87fc848665a8de5c5325f72200dd..41a4998b6cf7cc4cadd5483e994951b47b762810 100644 --- a/src/endWeek/saLongTermPhysicalEffects.js +++ b/src/endWeek/saLongTermPhysicalEffects.js @@ -3,8 +3,14 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife; + let he; + let him; + let his; + let hers; + let himself; + let girl; + let He; + let His; let gigantomastiaMod; let rearQuirk; @@ -30,8 +36,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { slaveInt = slave.intelligence + slave.intelligenceImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife + he, him, his, hers, himself, girl, He, His, } = getPronouns(slave)); if (slave.fuckdoll > 0) { @@ -535,14 +540,14 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { seX(sexPartner, "vaginal", slave, "penetrative"); sexPartner.vagina++; if (canImpreg(sexPartner, slave)) { - knockMeUp(sexPartner, 50, 0, slave.ID, true); + knockMeUp(sexPartner, 50, 0, slave.ID); } } if (sexPartner.anus === 0 && canDoAnal(sexPartner)) { seX(sexPartner, "anal", slave, "penetrative"); sexPartner.anus++; if (canImpreg(sexPartner, slave)) { - knockMeUp(sexPartner, 50, 1, slave.ID, true); + knockMeUp(sexPartner, 50, 1, slave.ID); } } } @@ -1072,7 +1077,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { if (slave.lactationAdaptation > 50) { r.push(`massively`); } - r.push(`engorged</span> with pent-up milk.); + r.push(`engorged</span> with pent-up milk.`); */ /* I don't know where to put this since it happens at the tail end of endWeek now */ if (slave.boobs - slave.boobsImplant + slave.boobsMilk > slave.boobs - slave.boobsImplant * 2) { @@ -1425,7 +1430,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { slave.sexualFlaw = "none"; slave.behavioralFlaw = "none"; } else if (slave.weight <= -95 && slave.boobs < 100 && slave.butt < 1 && slave.muscles < -95) { - r.push(`Watching ${his} body sacrifice itself for a pregnancy ${he} hates takes its toll on ${slave.slaveName}'s mind. Feeling that ${he} is nothing more than a host for ${his} brood has destroyed any hopes ${he} had left. slave.slaveName has become <span class="mindbreak">completely broken.</span>`); + r.push(`Watching ${his} body sacrifice itself for a pregnancy ${he} hates takes its toll on ${slave.slaveName}'s mind. Feeling that ${he} is nothing more than a host for ${his} brood has destroyed any hopes ${he} had left. ${slave.slaveName} has become <span class="mindbreak">completely broken.</span>`); slave.fetish = "mindbroken"; slave.sexualFlaw = "none"; slave.behavioralFlaw = "none"; diff --git a/src/endWeek/saPleaseYou.js b/src/endWeek/saPleaseYou.js index dffa7ce831760b6f406bff3916fb42d309384fa6..3369bba9556fd9940f1fc06c89ca12a3e843f46a 100644 --- a/src/endWeek/saPleaseYou.js +++ b/src/endWeek/saPleaseYou.js @@ -3,8 +3,14 @@ App.SlaveAssignment.pleaseYou = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, daughter, wife; + let he; + let him; + let his; + let himself; + let girl; + let He; + let His; + let wife; let playerPronouns; let fetishChange; @@ -42,8 +48,7 @@ App.SlaveAssignment.pleaseYou = (function() { trainingEfficiency = 5 + Math.trunc(slave.devotion / 30) + ((slave.intelligence+slave.intelligenceImplant) / 32); ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, daughter, wife + he, him, his, himself, girl, He, His, wife } = getPronouns(slave)); playerPronouns = getPronouns(V.PC); @@ -258,7 +263,7 @@ App.SlaveAssignment.pleaseYou = (function() { } if (V.PC.dick !== 0) { if (canImpreg(slave, V.PC)) { - r.push(knockMeUp(slave, vaginalUse, 0, -1, true)); + knockMeUp(slave, vaginalUse, 0, -1); } } slave.counter.vaginal += vaginalUse; @@ -411,7 +416,7 @@ App.SlaveAssignment.pleaseYou = (function() { } if (V.PC.dick !== 0) { if (canImpreg(slave, V.PC)) { - r.push(knockMeUp(slave, analUse, 1, -1, true)); + knockMeUp(slave, analUse, 1, -1); } } slave.counter.anal += analUse; diff --git a/src/endWeek/saPorn.js b/src/endWeek/saPorn.js index 94711f4940b5d0aa6970bb20f851fa102c515279..c6ca088ac3ae6248c5b457993ca077c07c7c3ba5 100644 --- a/src/endWeek/saPorn.js +++ b/src/endWeek/saPorn.js @@ -2,7 +2,12 @@ App.SlaveAssignment.porn = (function() { "use strict"; let r; - let he, him, his, himself, He, His; + let he; + let him; + let his; + let himself; + let He; + let His; let decayRate; let viewership; let viewerSoaking; diff --git a/src/endWeek/saPregnancy.js b/src/endWeek/saPregnancy.js index 18cc894df26e518f36b6b25207630808c25eace0..d2cd0da25d1235368ca90d0cc9121dab034de6b7 100644 --- a/src/endWeek/saPregnancy.js +++ b/src/endWeek/saPregnancy.js @@ -3,8 +3,14 @@ App.SlaveAssignment.pregnancy = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife; + let he; + let him; + let his; + let himself; + let girl; + let He; + let His; + let wife; let gigantomastiaMod; let rearQuirk; @@ -30,8 +36,7 @@ App.SlaveAssignment.pregnancy = (function() { hipSize = slave.hips - slave.hipsImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife + he, him, his, himself, girl, He, His, wife } = getPronouns(slave)); if (slave.preg > 0) { @@ -902,7 +907,7 @@ App.SlaveAssignment.pregnancy = (function() { slave.trust += 5; } } - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); if (slave.mpreg === 1) { r.push(VCheck.Anal(slave, 10)); } else { @@ -1036,7 +1041,7 @@ App.SlaveAssignment.pregnancy = (function() { } } App.EndWeek.saVars.HGCum -= 1; - knockMeUp(slave, 100, 2, V.HeadGirlID, true); + knockMeUp(slave, 100, 2, V.HeadGirlID); if (slave.mpreg === 1) { seX(slave, "anal", S.HeadGirl, "penetrative", 10); } else { @@ -1577,7 +1582,7 @@ App.SlaveAssignment.pregnancy = (function() { } } App.EndWeek.saVars.StudCum -= 1; - knockMeUp(slave, 100, 2, V.StudID, true); + knockMeUp(slave, 100, 2, V.StudID); if (StudPenetrative) { seX(slave, "anal", Stud, "penetrative", 10); seX(slave, "vaginal", Stud, "penetrative", 10); @@ -1617,7 +1622,7 @@ App.SlaveAssignment.pregnancy = (function() { } r.push(`with you. ${His} efforts paid off; <span class="pregnant">${he} has become pregnant with your child.</span>`); } - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); } break; case "serve in the master suite": @@ -1631,7 +1636,7 @@ App.SlaveAssignment.pregnancy = (function() { } r.push(`It's no surprise when <span class="pregnant">${he} ends up pregnant with your child.</span>`); } - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); } else { // look for a random father among master suite slaves const msSlaves = V.slaves.filter((s) => s.assignment === "serve in the master suite").shuffle(); for (const msSlave of msSlaves) { @@ -1646,7 +1651,7 @@ App.SlaveAssignment.pregnancy = (function() { if (slave.pregKnown === 0) { r.push(`After all the unprotected sex ${he} had this week, it's really no surprise when <span class="pregnant">${he} ends up pregnant.</span>`); } - knockMeUp(slave, 100, 2, msSlave.ID, true); + knockMeUp(slave, 100, 2, msSlave.ID); break; } } @@ -1663,7 +1668,7 @@ App.SlaveAssignment.pregnancy = (function() { } r.push(`It's no surprise when <span class="pregnant">${he} ends up pregnant with your child.</span>`); } - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); } break; case "serve in the club": @@ -1680,7 +1685,7 @@ App.SlaveAssignment.pregnancy = (function() { } r.push(`<span class="pregnant">${he} has become pregnant.</span>`); } - knockMeUp(slave, 100, 2, -2, true); + knockMeUp(slave, 100, 2, -2); } break; case "work a glory hole": @@ -1695,7 +1700,7 @@ App.SlaveAssignment.pregnancy = (function() { } r.push(`<span class="pregnant">${he} has become pregnant.</span>`); } - knockMeUp(slave, 100, 2, -2, true); + knockMeUp(slave, 100, 2, -2); } break; default: /* random impregnation chance on other assignments - consider relationships first */ @@ -1773,7 +1778,7 @@ App.SlaveAssignment.pregnancy = (function() { if (slave.pregKnown === 0) { r.push(`A quick scan after a bout of morning nausea reveals that <span class="pregnant">${he} has become pregnant.</span>`); } - knockMeUp(slave, 100, 2, pregSource, true); + knockMeUp(slave, 100, 2, pregSource); } } /* closes random chance and non-zero sex acts check */ } /* closes assignment checks */ @@ -1785,7 +1790,7 @@ App.SlaveAssignment.pregnancy = (function() { * */ function autoImpregnation(slave) { - knockMeUp(slave, 100, 2, slave.ID, true); + knockMeUp(slave, 100, 2, slave.ID); if (slave.geneticQuirks.superfetation === 2 && slave.pregKnown === 1) { if (V.geneticMappingUpgrade === 0) { r.push(`${He} experiences frequent spontaneous orgasms from ${his} asexual reproduction modification despite already being pregnant.`); diff --git a/src/endWeek/saRecruitGirls.js b/src/endWeek/saRecruitGirls.js index 0315e3da54f0294297b1045f18ca40a42e74fa97..78b2233eded12b68103d512152b450aab962fe05 100644 --- a/src/endWeek/saRecruitGirls.js +++ b/src/endWeek/saRecruitGirls.js @@ -3,8 +3,15 @@ App.SlaveAssignment.recruitGirls = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, woman, women, loli, He, His; + let he; + let him; + let his; + let himself; + let girl; + let woman; + let women; + let He; + let His; let idleTarget; let arcology; @@ -25,8 +32,7 @@ App.SlaveAssignment.recruitGirls = (function() { slaveInt = slave.intelligence + slave.intelligenceImplant; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, woman, women, He, His, loli + he, him, his, himself, girl, woman, women, He, His, } = getPronouns(slave)); calcIdleTarget(slave); diff --git a/src/endWeek/saRelationships.js b/src/endWeek/saRelationships.js index 0060849530424be9fad73e5147b6ee311f7f30cd..6c1fefa3f706d8b92a1947f21199312e25356a16 100644 --- a/src/endWeek/saRelationships.js +++ b/src/endWeek/saRelationships.js @@ -3,8 +3,14 @@ App.SlaveAssignment.relationships = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, himself, He, His, wife, woman; + let he; + let him; + let his; + let himself; + let He; + let His; + let wife; + let woman; let playerPronouns; let PC; @@ -20,7 +26,6 @@ App.SlaveAssignment.relationships = (function() { PC = V.PC; ({ - // eslint-disable-next-line no-unused-vars he, him, his, himself, He, His, wife, woman } = getPronouns(slave)); playerPronouns = getPronouns(PC); @@ -346,7 +351,9 @@ App.SlaveAssignment.relationships = (function() { */ function existingRelationship(slave) { let friend; - let him2, his2, wife2; + let him2; + let his2; + let wife2; if (slave.relationship > 0) { friend = getSlave(slave.relationshipTarget); ({ @@ -984,11 +991,11 @@ App.SlaveAssignment.relationships = (function() { if (slave.sexualQuirk === "size queen" && canPenetrate(lover)) { if (lover.dick > 5) { r.push(`${He}'s <span class="devotion inc">very happy</span> with ${his} romantic status, since it means ${he} regularly gets monster cock.`); - if (canDoAnal(slave) && slave.anus > 0 && slave.anus < 3) { + if (canDoAnal(slave) && slave.anus.isBetween(0, 3)) { r.push(`${He}'s such a size queen that ${he} takes it up ${his} ass as often as ${he} can bear it, despite ${his} poor anus not being used to such abuse. This <span class="lime">stretches out ${his} sphincter.</span>`); slave.anus++; } - if (canDoVaginal(slave) && slave.vagina > 0 && slave.vagina < 3) { + if (canDoVaginal(slave) && slave.vagina.isBetween(0, 3)) { r.push(`It's a little big for what ${his} pussy can handle, <span class="lime">but ${he} gets used to it.</span>`); slave.vagina++; } @@ -997,11 +1004,11 @@ App.SlaveAssignment.relationships = (function() { lover.devotion += 2; } else if (lover.dick > 4) { r.push(`${He} <span class="devotion inc">quite likes</span> being in a sexual relationship with a slave who has such an impressive dick.`); - if (canDoAnal(slave) && slave.anus > 0 && slave.anus < 2) { + if (canDoAnal(slave) && slave.anus.isBetween(0, 2)) { r.push(`${He}'s such a size queen that ${he} takes it up ${his} ass as often as ${he} can bear it, despite ${his} tight butt not being used to such abuse. This <span class="lime">stretches out ${his} sphincter.</span>`); slave.anus++; } - if (canDoVaginal(slave) && slave.vagina > 0 && slave.vagina < 2) { + if (canDoVaginal(slave) && slave.vagina.isBetween(0, 2)) { r.push(`It's a little big for what ${his} tight pussy can handle, <span class="lime">but ${he} gets used to it.</span>`); slave.vagina++; } diff --git a/src/endWeek/saRewardAndPunishment.js b/src/endWeek/saRewardAndPunishment.js index 4b9ec7faf3441b23de0b03f150bd3eddf983a4f4..ab974a0ccd7f9c38223c13b8824042211caf0ffb 100644 --- a/src/endWeek/saRewardAndPunishment.js +++ b/src/endWeek/saRewardAndPunishment.js @@ -1,7 +1,12 @@ App.SlaveAssignment.rewardAndPunishment = (function() { /** @type {App.Entity.SlaveState} */ let slave; - let He, he, His, his, him, himself; + let He; + let he; + let His; + let his; + let him; + let himself; let rewards = 0; let punishments = 0; let combinedText = false; diff --git a/src/endWeek/saRivalries.js b/src/endWeek/saRivalries.js index 2c665042b94ac128249c9ae3f0aa74f2d67d2a52..566c436889e57b2254f78c81b4b7182f1c4a41b3 100644 --- a/src/endWeek/saRivalries.js +++ b/src/endWeek/saRivalries.js @@ -3,8 +3,9 @@ App.SlaveAssignment.rivalries = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; let changed; @@ -18,8 +19,7 @@ App.SlaveAssignment.rivalries = (function() { r = []; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his } = getPronouns(slave)); if (canStartRivalry(slave)) { diff --git a/src/endWeek/saRules.js b/src/endWeek/saRules.js index a53e2859b46da5a10209329f76a60ed52f3e45d6..c8e418167e4f07f95f1b9f2d9af15a75e4fc56a4 100644 --- a/src/endWeek/saRules.js +++ b/src/endWeek/saRules.js @@ -561,7 +561,7 @@ App.SlaveAssignment.rules = function(slave) { r.push(`is well taken care of during ${his} stay in ${V.clinicName}; you make sure your ${wife}'s every sexual need is handled personally.`); slave.need = 0; if (canImpreg(slave, V.PC) && ((slave.vagina > 0 && slave.ovaries === 1) || (slave.anus !== 0 && slave.mpreg === 1))) { - r.push(knockMeUp(slave, 10, 0, -1, true)); + knockMeUp(slave, 10, 0, -1); if (slave.vagina > 0 && slave.ovaries === 1) { seX(slave, "vaginal", V.PC, "penetrative", 7); } else { @@ -898,7 +898,7 @@ App.SlaveAssignment.rules = function(slave) { seX(slave, "penetrative", V.PC, "oral", 7); } if (canImpreg(slave, V.PC) && ((slave.vagina > 0 && slave.ovaries === 1) || (slave.anus !== 0 && slave.mpreg === 1))) { - r.push(knockMeUp(slave, 10, 0, -1, true)); + knockMeUp(slave, 10, 0, -1); if (slave.preg > 0) { r.push(`As an added show, you <span class="lime">proudly display ${his} positive pregnancy</span> test for all to see.`); } @@ -908,9 +908,9 @@ App.SlaveAssignment.rules = function(slave) { SimpleSexAct.Slaves(slave, S.Wardeness, wardenFunTimes); if (wardenFunTimes > 0 && canImpreg(slave, S.Wardeness) && (V.cellblockWardenCumsInside === 1 || S.Wardeness.fetish === "mindbroken")) { if (canDoVaginal(slave) && slave.vagina > 0 && slave.ovaries === 1) { - r.push(knockMeUp(slave, 10, 0, V.WardenessID, true)); + knockMeUp(slave, 10, 0, V.WardenessID); } else if ((canDoAnal(slave) && slave.anus > 0 && slave.mpreg === 1)) { - r.push(knockMeUp(slave, 10, 1, V.WardenessID, true)); + knockMeUp(slave, 10, 1, V.WardenessID); } } } @@ -1476,7 +1476,7 @@ App.SlaveAssignment.rules = function(slave) { if (slave.vagina !== 0) { seX(S.Schoolteacher, "penetrative", slave, "vaginal", 7); if (canImpreg(slave, S.Schoolteacher) && (slave.breedingMark === 0 || V.propOutcome === 0 || V.eugenicsFullControl === 1 || V.arcologies[0].FSRestart === "unset")) { - r.push(knockMeUp(slave, 5, 0, S.Schoolteacher.ID, true)); + knockMeUp(slave, 5, 0, S.Schoolteacher.ID); } } slave.need -= 10; @@ -1485,7 +1485,7 @@ App.SlaveAssignment.rules = function(slave) { if (slave.anus !== 0) { seX(S.Schoolteacher, "penetrative", slave, "anal", 7); if (canImpreg(slave, S.Schoolteacher) && (slave.breedingMark === 0 || V.propOutcome === 0 || V.eugenicsFullControl === 1 || V.arcologies[0].FSRestart === "unset")) { - r.push(knockMeUp(slave, 5, 1, S.Schoolteacher.ID, true)); + knockMeUp(slave, 5, 1, S.Schoolteacher.ID); } } slave.need -= 10; @@ -1498,9 +1498,9 @@ App.SlaveAssignment.rules = function(slave) { } if (canImpreg(S.Schoolteacher, slave) && (S.Schoolteacher.breedingMark === 0 || V.propOutcome === 0 || V.eugenicsFullControl === 1 || V.arcologies[0].FSRestart === "unset")) { if (S.Schoolteacher.vagina !== 0 && S.Schoolteacher.ovaries === 1) { - r.push(knockMeUp(S.Schoolteacher, 5, 0, slave.ID, true)); + knockMeUp(S.Schoolteacher, 5, 0, slave.ID); } else if (S.Schoolteacher.anus !== 0 && S.Schoolteacher.mpreg === 1) { - r.push(knockMeUp(S.Schoolteacher, 5, 1, slave.ID, true)); + knockMeUp(S.Schoolteacher, 5, 1, slave.ID); } } slave.need -= 10; diff --git a/src/endWeek/saRulesFunctions.js b/src/endWeek/saRulesFunctions.js index 6206222b66cc77cd16f452daaa9ed761760b6bfc..8cec6e1cd838cc4afce621b27ed7f928ca1c8eea 100644 --- a/src/endWeek/saRulesFunctions.js +++ b/src/endWeek/saRulesFunctions.js @@ -573,7 +573,7 @@ App.EndWeek.Rules.masturbationDrugEffects = function(slave) { el.append(` in an effort to get pregnant since `); App.UI.DOM.appendNewElement("span", el, `you won't ${(V.PC.dick !== 0) ? `give ${him}` : `let ${him} find`} the dick ${he} needs. `, "gold"); if (canImpreg(slave, slave)) { - el.append(knockMeUp(slave, 5, 2, slave.ID, true)); + knockMeUp(slave, 5, 2, slave.ID); } if (slave.mpreg === 1 && slave.anus === 0) { App.UI.DOM.appendNewElement("span", el, `${He} is so baby crazed ${he} takes ${his} own anal virginity.`, "lime"); @@ -624,7 +624,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { if (slave.fetish === "submissive") { el.append(`plead that ${_who} fuck ${him}. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened `, "lime"); el.append(`during sex with other slaves, since most of the cocks ${he} enticed a dominating buttfuck from are very large. `); @@ -633,7 +633,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since most of the slaves ${he} enticed a pounding from are extremely hung, `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -683,7 +683,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } else if (slave.fetish === "buttslut" && canDoAnal(slave)) { el.append(`demand that ${_who} penetrate ${his} anus. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since most of the slaves ${he} demands anal sex from are extremely hung, `); App.UI.DOM.appendNewElement("span", el, `${his} asshole gets stretched out.`, "lime"); @@ -780,7 +780,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } else if (slave.fetish === "masochist") { el.append(`demand that ${_who} hurt ${him}. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened `, "lime"); el.append(`during sex with hung slaves, since ${he} often relies on painal to address ${his} needs. `); @@ -789,7 +789,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since ${he} usually demands that hung slaves fuck ${him} hard enough to make ${his} pussy hurt, `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -835,7 +835,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { el.append(`demand that ${_who} indulge ${his} pregnancy fetish. `); if (App.EndWeek.saVars.averageDick > 5) { if (slave.mpreg === 0) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since ${he} constantly demands to be fucked deeply to get ${his} womb filled with cum, `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -844,7 +844,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } } } else { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since ${he} constantly demands to be fucked deeply to get ${his} womb filled with cum, `); App.UI.DOM.appendNewElement("span", el, `${his} ass gets stretched out.`, "lime"); @@ -860,7 +860,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } else if (slave.energy > 95) { el.append(`demand that ${_who} satisfy ${his} formidable appetites. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened `, "lime"); el.append(` during sex with well endowed slaves, since ${he}'s so addicted to sex all ${his} holes see heavy traffic. `); @@ -869,7 +869,7 @@ App.EndWeek.Rules.rapeFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`${He} indulges in non-stop sex with your well endowed slaves, so much so that `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -916,7 +916,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { if (slave.fetish === "submissive") { el.append(`usually pairing off with a more dominant slave. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened `, "lime"); el.append(` during sex with other slaves, since most of the cocks ${he} lets dominate ${his} backdoor are very large. `); @@ -925,7 +925,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since most of the slaves ${he} takes a pounding from are extremely hung, `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -960,7 +960,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } el.append(`in return. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since most of the slaves ${he} enjoys anal sex with are extremely hung, `); App.UI.DOM.appendNewElement("span", el, `${his} asshole gets stretched out.`, "lime"); @@ -987,7 +987,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } else if (slave.fetish === "masochist") { el.append(`usually pairing off with an abusive slave. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened, `, "lime"); el.append(`since ${he} begs hung slaves to fuck ${his} butt until ${he} cries. `); @@ -996,7 +996,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`Since ${he} eagerly begs hung slaves to fuck ${him} until ${he} cries, `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -1017,7 +1017,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { el.append(`doing ${his} best to pair off with any pregnant slaves. `); if (slave.mpreg === 0) { if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`${He} also takes cock whenever ${he} can, begging to be fucked deeply to get ${his} womb filled with cum, so `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -1028,7 +1028,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } } else { if (App.EndWeek.saVars.averageDick > 5) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 40) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`${He} also takes cock whenever ${he} can, begging to be fucked deeply to get ${his} womb filled with cum, so `); App.UI.DOM.appendNewElement("span", el, `${his} ass gets stretched out.`, "lime"); @@ -1045,7 +1045,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } else if (slave.energy > 95) { el.append(`and has to give out a lot of favors to get enough attention for ${himself}. `); if (App.EndWeek.saVars.averageDick > 4) { - if (slave.anus > 0 && slave.anus < 3 && canDoAnal(slave)) { + if (slave.anus.isBetween(0, 3) && canDoAnal(slave)) { if ((slave.anus * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { App.UI.DOM.appendNewElement("span", el, `${His} asshole is loosened `, "lime"); el.append(`during sex with well endowed slaves, since ${he}'s so addicted to sex all ${his} holes see heavy traffic. `); @@ -1054,7 +1054,7 @@ App.EndWeek.Rules.consentFetish = function(slave) { } } if (App.EndWeek.saVars.averageDick > 5) { - if (slave.vagina > 0 && slave.vagina < 3 && canDoVaginal(slave)) { + if (slave.vagina.isBetween(0, 3) && canDoVaginal(slave)) { if ((slave.vagina * 30) - (App.EndWeek.saVars.averageDick * 5) < random(1, 100)) { el.append(`${He} indulges in non-stop sex with your well endowed slaves, so much so that `); App.UI.DOM.appendNewElement("span", el, `${his} cunt gets stretched out.`, "lime"); @@ -1429,7 +1429,8 @@ App.EndWeek.Rules.partnerDrugEffects = function(slave) { he, him, his} = getPronouns(slave); const _sr = getSlave(slave.relationshipTarget); - let his2, him2; + let his2; + let him2; if (_sr) { ({ his2, him2 diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js index f46bdcad9ca79540578c06dab4ef7d7060c7e9ea..c5e1fdd264caef2957baf1ccb5d933f8cbf411ee 100644 --- a/src/endWeek/saServant.js +++ b/src/endWeek/saServant.js @@ -3,8 +3,13 @@ App.SlaveAssignment.servant = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His, wife; + let he; + let him; + let his; + let himself; + let He; + let His; + let wife; let cash; let oralUse; @@ -22,8 +27,7 @@ App.SlaveAssignment.servant = (function() { stewardessBonus = bonus; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli, wife + he, him, his, himself, He, His, wife } = getPronouns(slave)); cash = 0; diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js index 506aecf7736b5c597685b0be60b47b3b5a51a2a3..2143078e2ced7e0121e7bc2b1e0155f2667af940 100644 --- a/src/endWeek/saServeThePublic.js +++ b/src/endWeek/saServeThePublic.js @@ -6,7 +6,15 @@ App.SlaveAssignment.serveThePublic = (function() { let arcology; let cervixPump; - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let hers; + let himself; + let girl; + let loli; + let He; + let His; // if the following are set outside this file, they must be set in it too! let oralUse; @@ -25,7 +33,6 @@ App.SlaveAssignment.serveThePublic = (function() { arcology = V.arcologies[0]; r = ` `; ({ - // eslint-disable-next-line no-unused-vars he, him, his, hers, himself, girl, He, His, loli } = getPronouns(slave)); @@ -1412,7 +1419,7 @@ App.SlaveAssignment.serveThePublic = (function() { } } - if (slave.energy > 40 && slave.energy < 95) { + if (slave.energy.isBetween(40, 95)) { r += ` Being used sexually all week <span class="change positive">increases ${his} sex drive.</span>`; slave.energy += 1; } diff --git a/src/endWeek/saServeYourOtherSlaves.js b/src/endWeek/saServeYourOtherSlaves.js index 974f646cf6142796e82b4b9f88389aef4fed30a7..1d63361bd3bfc9dfb3f1bc87e84442c6d407df19 100644 --- a/src/endWeek/saServeYourOtherSlaves.js +++ b/src/endWeek/saServeYourOtherSlaves.js @@ -3,10 +3,18 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; - // eslint-disable-next-line no-unused-vars - let he2, him2, his2, hers2, himself2, girl2, loli2, He2, His2; + let he; + let him; + let his; + let himself; + let girl; + let He; + let His; + + let he2; + let him2; + let his2; + let himself2; let jobType; let fetishChange; @@ -46,8 +54,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { fetishChange = fetishChangeChance(slave); ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, himself, girl, He, His, } = getPronouns(slave)); oralUse = 0; @@ -275,14 +282,14 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { r.push(`servicing your stock, ${he} is used to the <span class="health dec">point of exhaustion.</span>`); healthDamage(slave, 10); if (App.EndWeek.saVars.averageDick > 5) { - if (canDoVaginal(slave) && slave.vagina > 0 && slave.vagina < 4) { + if (canDoVaginal(slave) && slave.vagina.isBetween(0, 4)) { if ((slave.vagina * 40) - (App.EndWeek.saVars.averageDick * 5) < jsRandom(1, 100)) { r.push(`So many huge dicks pistoning in and out of ${his} pussy <span class="lime">loosen ${him} up.</span>`); slave.vagina++; actX(slave, "vaginal", 3); } } - if (canDoAnal(slave) && slave.anus > 0 && slave.anus < 4) { + if (canDoAnal(slave) && slave.anus.isBetween(0, 4)) { if ((slave.anus * 40) - (App.EndWeek.saVars.averageDick * 5) < jsRandom(1, 100)) { r.push(`<span class="lime">${His} asshole is loosened</span> after being pounded by so many giant cocks.`); slave.anus++; @@ -322,7 +329,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { function subLife(slave) { ({ // eslint-disable-next-line no-unused-vars - he2, him2, his2, hers2, himself2, girl2, He2, His2, loli2 + he2, him2, his2, himself2, } = getPronouns(domSlave).appendSuffix('2')); if (V.seeRace === 1) { @@ -394,7 +401,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { domSlave.counter.anal += penetrativeUse; V.analTotal += penetrativeUse; if (canImpreg(domSlave, slave)) { - r.push(knockMeUp(domSlave, 30, 1, slave.ID, true)); + knockMeUp(domSlave, 30, 1, slave.ID); if (domSlave.pregKnown === 1) { r.push(`With so many potent deposits into ${his2} fertile rear, it comes as little surprise when <span class="lime">${he2} ends up pregnant with ${subName}'s child.</span>`); } @@ -510,7 +517,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { domSlave.counter.vaginal += penetrativeUse; V.vaginalTotal += penetrativeUse; if (canImpreg(domSlave, slave)) { - r.push(knockMeUp(domSlave, 30, 0, slave.ID, true)); + knockMeUp(domSlave, 30, 0, slave.ID); if (domSlave.pregKnown === 1) { r.push(`With so many potent loads kissing ${his2} cervix, it comes as little surprise when <span class="lime">${he2} ends up pregnant with ${subName}'s child.</span>`); } @@ -520,7 +527,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() { domSlave.counter.anal += penetrativeUse; V.analTotal += penetrativeUse; if (canImpreg(domSlave, slave)) { - r.push(knockMeUp(domSlave, 30, 1, slave.ID, true)); + knockMeUp(domSlave, 30, 1, slave.ID); if (domSlave.pregKnown === 1) { r.push(`With so many potent deposits into ${his2} fertile rear, it comes as little surprise when <span class="lime">${he2} ends up pregnant with ${subName}'s child.</span>`); } diff --git a/src/endWeek/saSocialEffects.js b/src/endWeek/saSocialEffects.js index 5a85e8de1e882773ad05e9a1479b7944502549b4..272eb690df892cbef3bbde34438a7efd798c320d 100644 --- a/src/endWeek/saSocialEffects.js +++ b/src/endWeek/saSocialEffects.js @@ -333,7 +333,7 @@ App.SlaveAssignment.saSocialEffects = function(slave) { V.failedElite += (5 + slave.pregType); } } - if (slave.balls > 0 && slave.pubertyXY === 1 && slave.vasectomy === 0) { + if (slave.balls > 0 && slave.pubertyXY === 1 && slave.vasectomy === 0 && slave.ballType !== "sterile") { t.push(new SocialEffect("Eugenics", -slave.balls, "Working testicles", `Society <span class="red">disapproves</span> of ${his} working testicles.`)); } else if (slave.dick > 0 && slave.balls > 0 && slave.vasectomy === 1) { @@ -520,6 +520,9 @@ App.SlaveAssignment.saSocialEffects = function(slave) { } else if ([Job.HEADGIRL, Job.ATTENDANT, Job.FARMER, Job.MADAM, Job.MATRON, Job.NURSE, Job.TEACHER, Job.STEWARD, Job.BODYGUARD].includes(slave.assignment)) { t.push(new SocialEffect("Intellectual Dependency", 0, `Intelligence required by job`, `Society understands the value of intelligence in ${his} appointed position and is willing to overlook it.`)); + } else if ([Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment) && (slave.intelligence + slave.intelligenceImplant > 10)) { + t.push(new SocialEffect("Intellectual Dependency", 1, `Smart Fuckmeat`, + `Society finds it <span class="green">amusing</span> to see a smart slave being reduced to nothing but a set of holes; ${his} intelligence will not bore anyone here.`)); } else if ((slave.intelligence + slave.intelligenceImplant > 10)) { t.push(new SocialEffect("Intellectual Dependency", -1, `Too smart`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s sharp mind; this holds back acceptance of the idea that slaves should be dumb and dependent.`)); @@ -527,6 +530,9 @@ App.SlaveAssignment.saSocialEffects = function(slave) { if (slave.energy > 95) { t.push(new SocialEffect("Intellectual Dependency", 1, `Nymphomania`, `Society <span class="green">approves</span> of ${slave.slaveName}'s bottomless lust, showing the public one more way a slave may be reliant on ${his} owner.`)); + } else if ([Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment) && (slave.energy <= 60)) { + t.push(new SocialEffect("Intellectual Dependency", 0, `Low Libido Fuckmeat`, + `Society doesn't notice ${slave.slaveName}'s low libido when ${he}'s reduced to nothing more than a fuckhole.`)); } else if ((slave.energy <= 60)) { t.push(new SocialEffect("Intellectual Dependency", -1, `Low libido`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s restrained libido; to the public, this gives ${him} too much freedom to focus on things other than sex.`)); @@ -674,9 +680,15 @@ App.SlaveAssignment.saSocialEffects = function(slave) { `Society <span class="green">approves</span> of your owning a Fuckdoll.`)); transformed += 5; // total transformation } - if (transformed === 0) { + if (transformed === 0 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Transformation Fetishist", -1, `Totally unmodified fuckmeat`, + `Society <span class="red">would prefer</span> ${slave.slaveName}'s body to be a little more interesting but agrees that a simple fuckhole probably doesn't deserve much investment.`)); + } else if (transformed === 0) { t.push(new SocialEffect("Transformation Fetishist", -2, `Totally unmodified`, `Society <span class="red">strongly disapproves</span> of ${slave.slaveName}'s complete lack of any obvious transformations; ${he} does not advance the ideal of body modification.`)); + } else if (transformed === 1 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Transformation Fetishist", 0, `Slightly modified fuckmeat`, + `Society accepts the minimal amount of modification ${slave.slaveName} has undergone; it's not a smart investment improving a lowly fuckhole's appearance, after all.`)); } else if (transformed === 1) { t.push(new SocialEffect("Transformation Fetishist", -1, `Too few modifications`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s mostly-natural appearance; more transformations would help advance the ideal of body modification.`)); @@ -742,7 +754,10 @@ App.SlaveAssignment.saSocialEffects = function(slave) { `Society <span class="green">approves</span> of ${his} expanded lips.`)); assets++; } - if (assets === 0) { + if (assets === 0 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Asset Expansionist", 0, `Unexceptional fuckmeat`, + `Society is not thrilled about ${his} small assets but accepts ${his} role as a mere fuckhole; of course it would be better if ${he} were spilling out of the unit, but why waste the money on a worthless slab of fuckmeat?`)); + } else if (assets === 0) { t.push(new SocialEffect("Asset Expansionist", -1, `Unexceptional assets`, `Society <span class="red">is disappointed</span> by ${his} normal-sized (or even petite, by expansionist standards) assets.`)); } diff --git a/src/endWeek/saTakeClasses.js b/src/endWeek/saTakeClasses.js index 6f653e255bcff4b4c586f8dd242275f9f2e88d66..22c9848df218a6458e5fca49f144b3e8a09c7674 100644 --- a/src/endWeek/saTakeClasses.js +++ b/src/endWeek/saTakeClasses.js @@ -3,8 +3,12 @@ App.SlaveAssignment.takeClasses = (function() { let r; - // eslint-disable-next-line no-unused-vars - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let himself; + let He; + let His; let learning; let teaching; @@ -20,8 +24,7 @@ App.SlaveAssignment.takeClasses = (function() { learning = 1; teaching = 0; ({ - // eslint-disable-next-line no-unused-vars - he, him, his, hers, himself, girl, He, His, loli + he, him, his, himself, He, His, } = getPronouns(slave)); jobPreface(slave); diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js index f07cdf4ab58a02949a37c574e4ced838bc1721ac..07d1908cc304795c94ed70d59e6db66ab768199d 100644 --- a/src/endWeek/saWhore.js +++ b/src/endWeek/saWhore.js @@ -12,7 +12,15 @@ App.SlaveAssignment.whore = (function() { let cash; let cervixPump; - let he, him, his, hers, himself, girl, loli, He, His; + let he; + let him; + let his; + let hers; + let himself; + let girl; + let loli; + let He; + let His; // if the following are set outside this file, they must be set in it too! let oralUse; @@ -31,7 +39,6 @@ App.SlaveAssignment.whore = (function() { arcology = V.arcologies[0]; r = ` `; ({ - // eslint-disable-next-line no-unused-vars he, him, his, hers, himself, girl, He, His, loli } = getPronouns(slave)); @@ -1486,7 +1493,7 @@ App.SlaveAssignment.whore = (function() { } } - if (slave.energy > 40 && slave.energy < 95) { + if (slave.energy.isBetween(40, 95)) { r += ` Being used sexually all week <span class="change positive">increases ${his} sex drive.</span>`; slave.energy += 1; } diff --git a/src/endWeek/sexualServices.js b/src/endWeek/sexualServices.js index 5db92e5c7b73c1898bedbfd1c7de738535d81f8b..b2b2648ad78594371c5e3aabb4890fd9e27c6973 100644 --- a/src/endWeek/sexualServices.js +++ b/src/endWeek/sexualServices.js @@ -20,17 +20,17 @@ App.EndWeek.computeSexualServicesModel = function(renderContainer) { } repX(forceNeg(50 * V.brothelBoost.eligible), "brothel"); - let lowerClassSexDemand = Math.trunc(V.lowerClass * V.whoreBudget.lowerClass) * 2, - lowerClassSexDemandRef = Math.max(lowerClassSexDemand, 1), - visitorsSexDemand = Math.trunc(V.visitors) * 40, - middleClassSexDemand = Math.trunc(V.middleClass * V.whoreBudget.middleClass + visitorsSexDemand * 0.5) * 2, - middleClassSexDemandRef = Math.max(middleClassSexDemand, 1), - upperClassSexDemand = Math.trunc(V.upperClass * V.whoreBudget.upperClass + visitorsSexDemand * 0.5) * 2, - upperClassSexDemandRef = Math.max(upperClassSexDemand, 1), - topClassSexDemand = Math.trunc(V.topClass * V.whoreBudget.topClass) * 2, - topClassSexDemandRef = Math.max(topClassSexDemand, 1), - arcadeSupply = {lowerClass: 0, middleClass: 0, upperClass: 0}, - clubSupply = {lowerClass: 0, middleClass: 0}; + let lowerClassSexDemand = Math.trunc(V.lowerClass * V.whoreBudget.lowerClass) * 2; + let lowerClassSexDemandRef = Math.max(lowerClassSexDemand, 1); + let visitorsSexDemand = Math.trunc(V.visitors) * 40; + let middleClassSexDemand = Math.trunc(V.middleClass * V.whoreBudget.middleClass + visitorsSexDemand * 0.5) * 2; + let middleClassSexDemandRef = Math.max(middleClassSexDemand, 1); + let upperClassSexDemand = Math.trunc(V.upperClass * V.whoreBudget.upperClass + visitorsSexDemand * 0.5) * 2; + let upperClassSexDemandRef = Math.max(upperClassSexDemand, 1); + let topClassSexDemand = Math.trunc(V.topClass * V.whoreBudget.topClass) * 2; + let topClassSexDemandRef = Math.max(topClassSexDemand, 1); + let arcadeSupply = {lowerClass: 0, middleClass: 0, upperClass: 0}; + let clubSupply = {lowerClass: 0, middleClass: 0}; App.EndWeek.saVars.whorePriceAdjustment = { lowerClass: 0, middleClass: 0, upperClass: 0, topClass: 0 diff --git a/src/endWeek/slaveAssignmentReport.js b/src/endWeek/slaveAssignmentReport.js index 2c5745850af6ed89473dd911639d797bf9185eb7..96c0dfc96fac4d83624b144ffc0421d3da2c8caa 100644 --- a/src/endWeek/slaveAssignmentReport.js +++ b/src/endWeek/slaveAssignmentReport.js @@ -183,7 +183,7 @@ App.EndWeek.slaveAssignmentReport = function() { App.EndWeek.saVars.HGEnergy = 0; } if (canAchieveErection(slave)) { - App.EndWeek.saVars.HGCum = 2 + Math.trunc((slave.balls / 5) + (slave.energy / 95) + (slave.health.condition / 95) + (slave.devotion / 95) + (V.reproductionFormula * 5)); + App.EndWeek.saVars.HGCum = resetHGCum(slave); } } diff --git a/src/events/PE/concubineInterview.js b/src/events/PE/concubineInterview.js index c177077e95c218a58d7005c5badae8d07569f123..e19fae7bf0df0bb99a49463ca9e40224e429aee3 100644 --- a/src/events/PE/concubineInterview.js +++ b/src/events/PE/concubineInterview.js @@ -105,7 +105,7 @@ App.Events.PEConcubineInterview = class PEConcubineInterview extends App.Events. } else if (eventSlave.intelligence + eventSlave.intelligenceImplant > 15) { t.push(`${He} manages to sway the topic away from ${his} apparent underageness. ${speak(`"I'm really ${eventSlave.actualAge}, believe it or not. Wouldn't you like to know my secret?"`)}`); } else { - t.push(`${He} manages to completely miss the insinuation and <span class="red">make things worse than they really are.</span> ${speak(`"Master loves the way I look, that's why I'm hisP favorite after all, but I'm still ${eventSlave.actualAge}-years old."`)}`); + t.push(`${He} manages to completely miss the insinuation and <span class="red">make things worse than they really are.</span> ${speak(`"Master loves the way I look, that's why I'm ${hisP} favorite after all, but I'm still ${eventSlave.actualAge}-years old."`)}`); rep(-100); } @@ -305,9 +305,9 @@ App.Events.PEConcubineInterview = class PEConcubineInterview extends App.Events. case "Imperial Plate": t.push(`ultra-heavy armor.`); break; - case "a skirt": - t.push(`dress.`); - break; + // case "skirt" //FIXME: skirts are not a thing apparently + // t.push(`dress.`); + // break; case "a mounty outfit": case "a police uniform": t.push(`uniform.`); diff --git a/src/events/RE/reArcologyInspection.js b/src/events/RE/reArcologyInspection.js index bbf3d2850c2b33c7335c0abc24850fe15f6421fa..e7a4da784de79631d72466dcdefe87dacef519c1 100644 --- a/src/events/RE/reArcologyInspection.js +++ b/src/events/RE/reArcologyInspection.js @@ -444,10 +444,10 @@ App.Events.REArcologyInspection = class REArcologyInspection extends App.Events. function virginityWarning() { const virgins = []; - if (agent && (agent.vagina === 0 || agent.anus == 0)) { + if (agent && (agent.vagina === 0 || agent.anus === 0)) { virgins.push(agent.slaveName); } - if (agentLover && (agentLover.vagina === 0 || agentLover.anus == 0)) { + if (agentLover && (agentLover.vagina === 0 || agentLover.anus === 0)) { virgins.push(agentLover.slaveName); } if (virgins.length > 0) { diff --git a/src/events/RE/reBusyMasterSuite.js b/src/events/RE/reBusyMasterSuite.js new file mode 100644 index 0000000000000000000000000000000000000000..b8019a831df03e8d91c6a4a72f0c0bc164147389 --- /dev/null +++ b/src/events/RE/reBusyMasterSuite.js @@ -0,0 +1,332 @@ +App.Events.REBusyMasterSuite = class REBusyMasterSuite extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.ConcubineID !== 0 + ]; + } + + actorPrerequisites() { + const req = [ + s => s.fuckdoll === 0, + s => s.assignment === Job.MASTERSUITE, + s => ( + (canDoAnal(s) && s.anus > 0) || + (canDoVaginal(s) && s.vagina > 0) + ), + ]; + + return [ // Need at least three actors. Grab more later. + req, + req, + req, + ]; + } + + execute(node) { + const msSlaves = V.slaves.filter((s) => s.fuckdoll === 0 && s.assignment === Job.MASTERSUITE) + .map((s) => { + /** @type {Array<FC.SlaveActs|"none">} */ + let options = []; + if (canDoAnal(s) && s.anus > 0) { + options.push("anal"); + } + if (canDoVaginal(s) && s.vagina > 0) { + options.push("vaginal"); + } + if (options.length === 0) { + options.push("none"); + } + return {slave: s, mode: options.pluck()}; + }); + const [participants, nonparticipants] = _.partition(msSlaves, s => s.mode !== "none"); + const bottomSlave = participants.first().slave; + let r = []; + + const { + He, + he, his, him, himself + } = getPronouns(S.Concubine); + + const { + his2, him2, he2 + } = getPronouns(bottomSlave).appendSuffix("2"); + + r.push(`You have an extended meeting with a prominent citizen planned, from the start of business in the morning until you're done. That's likely to be in the late evening, since he's probably going to get into technical business proposals, and ${S.Concubine.slaveName} knows it. ${He} is surprised, therefore, when a minor business emergency calls your would-be interlocutor away, canceling the meeting and sending you home hours earlier than you'd planned. ${He}`); + if (canTalk(S.Concubine)) { + r.push(`giggles helplessly`); + } else { + r.push(`signs humorously`); + } + r.push(`at the surprise when you walk into your suite. Apparently, ${he} decided to while away the hours until you got back by having some truly grandiose group sex with all the slaves you have in the suite.`); + + App.Events.addParagraph(node, r); + r = []; + + r.push(`${He} had to turn to greet you as you entered, since ${he} was facing away from the entry, and the reason why is rather obvious. Up near the opposite wall, ${bottomSlave.slaveName} is on the floor with ${his2} face down and ${his2} ass up.`); + + App.Events.addParagraph(node, r); + + /** helper function for train...identify the hole being penetrated by the next slave + * @param {App.Entity.SlaveState} slave + * @param {FC.SlaveActs} mode + */ + function hole(slave, mode) { + if (mode === "vaginal") { + if (slave.vagina > 2) { + return "loose pussy"; + } else if (slave.vagina > 1) { + return "pussy"; + } else { + return "tight pussy"; + } + } else if (mode === "anal") { + if (slave.anus > 2) { + return "asspussy"; + } else if (slave.anus > 1) { + return "asshole"; + } else { + return "tight butt"; + } + } + } + + /** helper function for train...identify the tool being used by the next slave to penetrate this slave + * @param {App.Entity.SlaveState} slave + * @param {FC.SlaveActs} mode + * @param {App.Entity.SlaveState} nextSlave + */ + function penetrator(slave, mode, nextSlave) { + let t = ``; + if (canPenetrate(nextSlave)) { + t += nextSlave.slaveName + "'s "; + if (nextSlave.dick > 3) { + t += "painfully big"; + } else { + t = "hard"; + } + t += " dick"; + } else { + t += "a "; + const size = (mode === "vaginal" ? slave.vagina : slave.anus); + if (size > 2) { + t += "huge"; + } else if (size > 1) { + t += "big"; + } else { + t += "moderate"; + } + t += " strap-on worn by " + nextSlave.slaveName; + } + return t; + } + + App.Events.addParagraph(node, [ + /* build the train from all participating slaves */ + participants.reduce((acc, cur, i, arr) => { + let r = ``; + const {mode, slave} = cur; + if (mode === "none") { + throw new Error("Non-participating slave is participating"); // impossible, but needed for typechecking + } + const nextSlave = (i + 1 >= arr.length) ? S.Concubine : arr[i + 1].slave; + + if (i === 0) { + return r; /* bottom slave already accounted for */ + } else if (i !== arr.length - 1) { + /* middle slaves */ + r += `${slave.slaveName}'s ${hole(slave, mode)} is filled by ${penetrator(slave, mode, nextSlave)}, `; + if (nextSlave.belly >= 150000) { + r += `whose middle is so obscenely distended that ${slave.slaveName} is struggling to support it.`; + } else if (nextSlave.belly >= 10000 || nextSlave.weight >= 160) { + r += `whose middle is resting on ${slave.slaveName}'s ${slave.skin} back.`; + } else if (nextSlave.boobs > 10000) { + r += `whose tits are so unreasonably large they're resting on ${slave.slaveName}'s ${slave.skin} back.`; + } else if (slave.butt > 4) { + r += `well cushioned by ${slave.slaveName}'s huge ass.`; + } else if (nextSlave.nipples === "huge") { + r += `who is bending to rub ${getPronouns(nextSlave).his} enormous hard nipples across ${slave.slaveName}'s ${slave.skin} back.`; + } else if (nextSlave.lips > 40) { + r += `who is bending forward to nibble along ${slave.slaveName}'s ${slave.skin} neck.`; + } else if (hasAnyArms(nextSlave)) { + r += `who is reaching around to grope ${slave.slaveName}'s ${slave.skin} chest.`; + } else { + r += `who is propped up against ${slave.slaveName}'s ${slave.skin} butt.`; + } + } else { + /* top slave */ + r += `Finally, ${slave.slaveName}'s ${hole(slave, mode)} is filled by ${penetrator(slave, mode, nextSlave)}, who has paused ${his} thrusting to issue a preemptory order to the slaves to stay where they are, before turning to greet you cheerfully.`; + } + seX(nextSlave, "penetrative", slave, mode, 1); + return acc + ` ` + r; + }, ``) + ]); + /* and now describe what the non-participating slaves are doing */ + if (nonparticipants.length > 0) { + App.Events.addParagraph(node, [ + `${toSentence(nonparticipants.map((s) => s.slave.slaveName))} can't participate in the train, so ${S.Concubine.slaveName} has them busy lying under the slaves who are, offering what oral stimulation they can manage.` + ]); + for (const s of nonparticipants) { + actX(s.slave, "oral"); + } + } + + const top = participants.last(); + + /** @type {FC.SlaveActs|"none"} */ + let concubineMode = "none"; + let concubineHole; + if (canDoAnal(S.Concubine) && S.Concubine.anus > 0) { + concubineMode = "anal"; + if (S.Concubine.anus > 2) { + concubineHole = "loose anus"; + } else if (S.Concubine.anus > 1) { + concubineHole = "asshole"; + } else { + concubineHole = "tight little asshole"; + } + } else if (canDoVaginal(S.Concubine) && S.Concubine.vagina > 0) { + concubineMode = "vaginal"; + if (S.Concubine.vagina > 2) { + concubineHole = "loose pussy"; + } else if (S.Concubine.vagina > 1) { + concubineHole = "pussy"; + } else { + concubineHole = "tight little pussy"; + } + } + + const responses = []; + if (concubineMode !== "none") { + responses.push(new App.Events.Result("Slide in behind the concubine for some action", behindConcubine)); + } + responses.push(new App.Events.Result("Slide in up at the head of the bed for some oral", bedHead)); + App.Events.addResponses(node, responses); + + function behindConcubine() { + const frag = document.createDocumentFragment(); + const r = []; + r.push(`${S.Concubine.slaveName} anticipates you, and is already sliding ${himself} partway out of ${top.slave.slaveName} and cocking ${his} hips to spread ${his}`); + if (S.Concubine.butt > 15) { + r.push(`immeasurable`); + } else if (S.Concubine.butt > 10) { + r.push(`expansive`); + } else if (S.Concubine.butt > 7) { + r.push(`enormous`); + } else if (S.Concubine.butt > 5) { + r.push(`huge`); + } else if (S.Concubine.butt > 2) { + r.push(`healthy`); + } else { + r.push(`trim`); + } + r.push(`buttocks as wide as ${he} can without disentangling ${himself} from the sex train. Up on the bed ${he}'s at just the right height, and ${he} winks ${his} ${concubineHole}`); + if (canTalk(S.Concubine)) { + r.push(`invitingly, laughing at the sheer decadence of it.`); + } else { + r.push(`invitingly.`); + } + + if (V.PC.dick === 0) { + r.push(`You pull on a strap-on and push it`); + } else { + r.push(`You push yourself`); + } + r.push(`home with some force, your concubine's extreme state of arousal leaving ${his} ass very relaxed and welcoming; the thrust shoves ${him} forward to hilt ${himself} in ${top.slave.slaveName}, and so on down the line, producing more giggling, some squealing, and much scrabbling for balance. It takes a while to find the rhythm, and while you wait for the inevitable tangles to be fixed you decide to challenge yourself. You reach around and`); + if (S.Concubine.boobs > 10000) { + r.push(`sink your hands into ${S.Concubine.slaveName}'s massive boobs,`); + } else if (S.Concubine.boobs > 1000) { + r.push(`heft ${S.Concubine.slaveName}'s heavy boobs,`); + } else if (S.Concubine.boobs > 300) { + r.push(`tease ${S.Concubine.slaveName}'s healthy breasts,`); + } else { + r.push(`massage ${S.Concubine.slaveName}'s flat chest,`); + } + r.push(`nibbling ${his} ${S.Concubine.skin} neck, and generally torturing ${him} with stimulation until ${he} climaxes to ${his} beloved ${getWrittenTitle(S.Concubine)}. When ${he} does, you extract yourself and pull ${him} unceremoniously off ${top.slave.slaveName}, replacing ${him} in ${top.slave.slaveName}'s`); + + if (top.mode === "anal") { + r.push(`butt.`); + } else { + r.push(`pussy.`); + } + r.push(`You work your way down the line, orgasm by orgasm, delaying your own climax until the exhausted ${bottomSlave.slaveName} manages yet another orgasm by heroic efforts, and you're done. As you roll off ${him2}, panting, there is scattered applause and much congratulation from your harem of <span class="trust inc">trusting slaves.</span>`); + S.Concubine.trust += 5; + if (concubineMode !== "none") { + seX(V.PC, "penetrative", S.Concubine, concubineMode); + } + for (const s of msSlaves) { + s.slave.trust += 1; + if (s.mode !== "none") { + seX(V.PC, "penetrative", s.slave, s.mode); + } + } + if (canImpreg(bottomSlave, V.PC)) { + knockMeUp(bottomSlave, 10, 1, V.PC.ID); + } + + App.Events.addParagraph(frag, r); + return frag; + } + + function bedHead() { + const frag = document.createDocumentFragment(); + const r = []; + r.push(`${bottomSlave.slaveName}'s ${App.Desc.eyesColor(bottomSlave)} widen when you push ${him2} upright for a moment and slide in under ${him2}, but ${he2} wraps ${his2}`); + if (bottomSlave.lips > 95) { + r.push(`facepussy`); + } else if (bottomSlave.lips > 70) { + r.push(`dick sucking lips`); + } else if (bottomSlave.lips > 20) { + r.push(`pretty lips`); + } else { + r.push(`lips`); + } + r.push(`around your`); + if (V.PC.dick === 0) { + r.push(`clit`); + } else { + r.push(`cock`); + if (V.PC.vagina !== -1) { + r.push(`and starts stroking your pussy`); + } + } + r.push(`eagerly enough, even as ${msSlaves[1].slave.slaveName} goes back to fucking ${him2}. The sex train is fairly gentle, since anything too fast would disintegrate the gymnastic arrangement, but ${bottomSlave.slaveName} is still getting enough stimulation that ${he2} whimpers quietly into your`); + if (V.PC.vagina !== -1) { + r.push(`pussy,`); + } else { + r.push(`dick,`); + } + r.push(`a nice feeling. The blowjob is`); + if (bottomSlave.skill.oral >= 100) { + r.push(`masterful, despite the distraction,`); + } else if (bottomSlave.skill.oral > 10) { + r.push(`serviceable, despite the distraction,`); + } else { + r.push(`only mediocre, but serviceable enough,`); + } + r.push(`so you let ${him2} work for a while before gently shoving ${him2} off the side of the bed and telling ${him2} to get to the back of the line. The slaves all shuffle forward awkwardly, and inadvertently block your view so that you hear rather than see ${bottomSlave.slaveName} start groping your concubine ${S.Concubine.slaveName}'s`); + if (S.Concubine.butt > 15) { + r.push(`immeasurable`); + } else if (S.Concubine.butt > 10) { + r.push(`expansive`); + } else if (S.Concubine.butt > 7) { + r.push(`enormous`); + } else if (S.Concubine.butt > 5) { + r.push(`huge`); + } else if (S.Concubine.butt > 2) { + r.push(`healthy`); + } else { + r.push(`trim`); + } + r.push(`ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired slaves, all of whom are resting with at least one body part in contact with their <span class="devotion inc">beloved</span> ${properMaster()}.`); + S.Concubine.devotion += 5; + seX(V.PC, "penetrative", S.Concubine, "oral"); + for (const s of msSlaves) { + s.slave.devotion += 1; + seX(V.PC, "penetrative", s.slave, "oral", 2); + } + + App.Events.addParagraph(frag, r); + return frag; + } + } +}; diff --git a/src/events/RE/reFullBed.js b/src/events/RE/reFullBed.js index 8f57412720504059a4b3830979defe5847388493..6846c71299c5d4ebf451b0237aa0e585fc9c8a19 100644 --- a/src/events/RE/reFullBed.js +++ b/src/events/RE/reFullBed.js @@ -120,6 +120,7 @@ App.Events.REFullBed = class REFullBed extends App.Events.BaseEvent { actX(bedSlaves[1], "penetrative"); } else { t.push(`They stiffen as your hands get more adventurous, but immediately relax and begin to work you harder. They orgasm one after the other from your manipulations, before eagerly cleaning`); + /** @type {FC.SlaveActs}*/ let hole; bedSlaves.forEach(s => { if (canDoVaginal(s)) { diff --git a/src/events/RE/reMalefactor.js b/src/events/RE/reMalefactor.js new file mode 100644 index 0000000000000000000000000000000000000000..1bec14b99df59f0397ed48ba8cd54a037da83f5e --- /dev/null +++ b/src/events/RE/reMalefactor.js @@ -0,0 +1,905 @@ +App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.arcologyUpgrade.drones === 1 + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return (V.rep / 150) > (random(1, 100)) ? 2 : 1; // Chance to have doubled odds. + } + + execute(node) { + let r = []; + /** @type {FC.Race} */ + let fakeRace; + /** @type {FC.Race} */ + let realRace; + V.nextButton = "Continue"; + V.nextLink = "RIE Eligibility Check"; + V.encyclopedia = "Free Cities Justice"; + + /** @type {Array<"addict"|"whore"|"businesswoman"|"liberator"|"anchorBaby"|"mule"|"rapist"|"orphanloli"|"escapee"|"passfail">} */ + const malefactorArray = ["addict", "whore"]; + if (V.seeDicks !== 100) { + malefactorArray.push("businesswoman"); + malefactorArray.push("liberator"); + if (V.seePreg !== 0) { + malefactorArray.push("anchorBaby"); + if (V.arcologies[0].FSRepopulationFocus < 50) { + malefactorArray.push("mule");// blends right in + } + } + } + if (V.seeDicks !== 0) { + malefactorArray.push("rapist"); + } + if (V.minimumSlaveAge <= 12) { + malefactorArray.push("orphanloli"); + } + if (V.arcologies[0].FSPaternalist < 50) { + malefactorArray.push("escapee"); + } + if (V.arcologies[0].FSSupremacistLawME + V.arcologies[0].FSSubjugationistLawME > 0) { + malefactorArray.push("passfail"); + } + const malefactor = malefactorArray.random(); + + /** @type {App.Entity.SlaveState} */ + const slave = makeMalefactor(); + let pram; + + const { + He, His, + he, his, him, himself, girl, woman + } = getPronouns(slave); + + const {hisU} = getNonlocalPronouns(V.seeDicks).appendSuffix("U"); + r.push(`${capFirstChar(V.assistant.name)} alerts you that a`); + if (malefactor === "mule") { + r.push(`potential`); + } + r.push(`criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology,`); + if (malefactor !== "liberator") { + r.push(`since nothing can escape the notice of the omnipresent monitoring systems.`); + } + + switch (malefactor) { + case "addict": + r.push(`Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a ${girl} suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. ${He}'s now lying`); + if (V.seePee === 1) { + r.push(`in a pool of ${his} own urine`); + } else { + r.push(`face-down on the pavement`); + } + r.push(`with a taser round stuck in ${his} ass; the drone responsible is hovering helpfully nearby, hitting ${him} with another shock whenever ${he} does more than twitch.`); + break; + case "escapee": + r.push(`This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. The criminal is anything but usual, however. ${He} bears signs of extreme hormone manipulation over a long period, and has had ${his} Achilles tendons clipped. Camera records show ${him} crawling in with a cargo shipment. ${He}'s clad in rags, and you cannot find any record of ${him} anywhere. The growing crowd is convinced ${he}'s an escaped slave, and is growing ugly.`); + break; + case "anchorBaby": + r.push(`This is likely another case of attempted escape by a slave or potentially a smuggling operation. The cause of detection is a steady stream of moaning emanating from a cargo container recently deposited into the arcology's cargo depot and has attracted a crowd of curious onlookers. Video feeds show the container being open and a heavily pregnant`); + if (slave.physicalAge > 30) { + r.push(`${woman}`); + } else if (slave.physicalAge > 19) { + r.push(`young ${woman}`); + } else if (slave.physicalAge > 12) { + r.push(`teenager`); + } else { + r.push(`little ${girl}`); + } + r.push(`staggering out while clutching a newborn to ${his} breast and struggling to hold back ${his} second child from being born. From what little language ${he} knows, ${he} seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, ${he} squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and ${his} inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move.`); + break; + case "orphanloli": + r.push(`This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. Several reports of petty theft were made in the area recently as well. The criminal is anything but usual, however. ${He} is very young, emaciated, and desperate. Camera records show ${him} crawling in through an air vent. ${He}'s clad in rags, clutching a presumably stolen apple, and you cannot find any record of ${him} anywhere. The growing crowd is convinced ${he}'s an escaped slave, and ${his} inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move.`); + break; + case "businesswoman": + r.push(`Nevertheless, it seems one of your tenants, a hitherto well-respected business${woman}, has left the straight and narrow. It seems ${his} business affairs took a decisive turn for the worse, so ${he} attempted to drain ${his} clients' funds and leave your arcology before anyone was the wiser. Unfortunately for ${him}, your security drones, controlled by ${V.assistant.name}, were very much the wiser. ${capFirstChar(V.assistant.name)} has with machine efficiency compiled the completest proofs of corporate malfeasance you have ever seen. Your wretched tenant signed a contract with you that included provisions forbidding theft. ${He} is entirely at your mercy.`); + break; + case "whore": + r.push(`Nevertheless, it seems one of your tenants, a free whore, has been systematically stealing from clients. ${He} was furtive enough to get away with it for a time, but has now been caught red-handed. The john who caught ${him} attempted to stop ${him}, and ${he} fought him. Like many prostitutes ${he} carried a weapon in ${his} handbag, and the man is severely wounded. ${capFirstChar(V.assistant.name)} has with machine efficiency compiled a staggering dossier of video logs and personal testimony from previous customers who now understand where their personal belongings went, as well as appalling footage of today's victim's injuries. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. ${He} is entirely at your mercy.`); + break; + case "rapist": + r.push(`Nevertheless, it seems one of your tenants saw fit to rape a free woman. Within ten minutes, the inhuman efficiency of ${V.assistant.name} has compiled video recordings, physical evidence, and even the victim's testimony, which is quite consistent with the first two. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. ${He} is entirely at your mercy.`); + break; + case "mule": + r.push(`However some individuals still make attempts to fool them. In this case, the cameras are fixed on a clearly pregnant, and hugely at that, ${woman} as ${he} works ${his} way through the crowded market sectors. You watch as ${he} repeatedly bumps into other patrons and stalls, pausing to apologize before proceeding on ${his} way, as if ${he} wasn't familiar with ${his} gravid swell. ${His} body is also clearly underdeveloped for someone ready to drop quadruplets at any moment; thin, with barely any hips to speak of and a pert bust clearly not swollen with milk. ${He} even walks like a ${woman} not burdened with nine months of gestating multiples, let alone a single. As ${he} stumbles under ${his} own weight, ${his} shirt rides up, giving you a clear view of the deep red stretch marks of a belly that grew far faster than it could handle. You've seen enough and order the drones to corral ${him} until security arrives. ${His} expression shifts from fear as they encircle ${him} to panic as a groan escapes ${his} lips. ${He} grabs ${his} stomach as a capsule falls to the floor. As another contraction hits ${him}, ${he} drops to the ground and begins to "give birth" to ${his} illegal cargo.`); + if (V.bellyImplants === 1) { + r.push(`${He} likely has a belly implant designed to carry foreign objects inside ${his} womb and, having lost ${his} composure, is now vacating its contents.`); + } else { + r.push(`You have no idea what you are witnessing until`); + if (V.assistant.name === "your personal assistant") { + r.push(`your personal assistant pulls up an advertisement for a fillable womb located implant`); + } else { + r.push(`${V.assistant.name} introduces you to a fillable womb located implant`); + } + r.push(`that ${he} likely has installed.`); + } + r.push(`${He} is easily taken into custody and ${his} contraband confiscated once the jeering crowd is dispersed enough to reach ${him}.`); + break; + case "liberator": + r.push(`but this is a special case. A well-muscled, well-armed ${woman} was caught attempting to smuggle a slave owned by one of your tenants out of the arcology. Though the slave surrendered immediately (and will be dealt with by ${hisU} owner), the would-be liberatrix was caught by your security drones. ${He} destroyed two of them and caused <span class="red">other minor damage</span> that will require a small sum to repair, but was eventually subdued. The drones had to expend a great deal of nonlethal ordnance to bring ${him} down and keep ${him} down, but ${he} is now entirely at your mercy.`); + cashX(forceNeg(1000), "event", slave); + break; + case "passfail": + r.push(`Nevertheless, it seems one of your tenants, a rather ordinary white collar worker, has been severely wounded in a freak industrial accident, to the point that a blood transfusion was needed. In the course of doing so, an arcology hospital's autosurgery noted several genetic discrepancies and alerted a few nearby drones. Simply put, while the ${woman} appears to be a normal ${fakeRace} ${woman}, this is the result of numerous cosmetic surgeries; ${he} is actually ${realRace}. The laws of your arcology hold that members of the ${realRace} race are fit only for slavery, quite unlike the superior ${fakeRace} people. That a ${addA(realRace)} ${girl} would gain a position of relatively high class and power through such deception and fraud is considered an outrage by many of your citizens, and so ${he} was placed under arrest before ${he} even awoke from surgery. ${He} is now entirely at your mercy.`); + } + + const contractCost = 1000; + const cost = slaveCost(slave) - 1000; + App.Events.addParagraph(node, r); + + App.UI.DOM.appendNewElement("p", node, `Applying enslavement as punishment will cost ${cashFormat(contractCost)}. Doing so and then selling ${him} immediately will bring in approximately ${cashFormat(cost)}.`, "note"); + + node.append(App.Desc.longSlave(slave, {market: "generic"})); + + const choices = []; + if (V.cash >= contractCost) { + choices.push( + new App.Events.Result(`Enslave ${him}`, enslave), + new App.Events.Result(`Sentence ${him} to a day in the stocks, then enslave ${him}`, stocks), + ); + if (V.arcade > 0) { + choices.push(new App.Events.Result(`Enslave ${him} and sentence ${him} to a month in the arcade`, arcade)); + } + if (malefactor !== "mule") { + if (V.dairy > 0) { + if (V.dairyRestraintsSetting > 1) { + choices.push(new App.Events.Result(`Enslave ${him} and send ${him} straight to the industrial dairy`, dairy)); + } + } + } + if (V.seeExtreme > 0) { + choices.push(new App.Events.Result(`Punitively amputate ${his} limbs, and then enslave ${him}`, amp)); + if (malefactor === "rapist" && slave.balls > 0) { + choices.push(new App.Events.Result(`Enslave the criminal and geld ${him}`, geld)); + } + } + if (malefactor === "orphanloli") { + choices.push(new App.Events.Result(`Adopt ${him}`, adopt)); + } + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave ${him}.`)); + } + if (malefactor === "anchorBaby") { + choices.push(new App.Events.Result(`Grant ${him} citizenship`, citizenship)); + } + choices.push(new App.Events.Result(`Publicly flog the criminal`, flog)); + if (malefactor === "liberator") { + choices.push(new App.Events.Result(`Permit the slaveowner ${he} tried to steal from to flog ${him}`, ownerFlog)); + } + + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell)); + + App.Events.addResponses(node, choices); + + function enslave() { + const frag = document.createDocumentFragment(); + + r = []; + + cashX(forceNeg(contractCost), "slaveTransfer", slave); + switch (malefactor) { + case "addict": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. Then it's off to the penthouse for basic slave induction.`); + break; + case "escapee": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} remains limp throughout the process, only recovering enough to barely grasp the situation as ${he} is enslaved.`); + break; + case "orphanloli": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} sobs throughout the process, though stops once ${he} realizes being a slave means free food.`); + break; + case "anchorBaby": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} doesn't stop screaming "citizenship" until ${his} children are taken from ${him} and ${he} is shoved off to the penthouse for basic slave induction.`); + break; + case "businesswoman": + case "mule": + case "passfail": + case "rapist": + case "whore": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction.`); + break; + case "liberator": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. Based on the drone logs, ${he} is likely to be violent when ${he} does.`); + } + r.push(App.UI.newSlaveIntro(slave)); + + App.Events.addParagraph(frag, r); + return frag; + } + + function stocks() { + const frag = document.createDocumentFragment(); + + r = []; + + healthDamage(slave, 10); + slave.behavioralFlaw = "odd"; + slave.sexualFlaw = "hates penetration"; + slave.anus = 2; + const fuckCount = random(20, 35); + seX(slave, "anal", "public", "penetrative", fuckCount); + if (slave.vagina > -1) { + if (slave.vagina < 2) { + slave.vagina = 2; + } + if (isFertile(slave) && slave.eggType === "human") { + r.push(knockMeUp(slave, 40, 2, -2)); + } + seX(slave, "vaginal", "public", "penetrative", fuckCount * 2); + } + cashX(forceNeg(contractCost), "slaveTransfer", slave); + switch (malefactor) { + case "addict": + r.push(`You declare ${his} holes fair game for the entire arcology, since ${he} must somehow repay ${his} debt to society. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "escapee": + r.push(`You declare ${his} holes fair game for the entire arcology, so that all free citizens can own ${him} for a moment, if they wish. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "orphanloli": + r.push(`You declare ${his} holes fair game for the entire arcology, so that all free citizens can own ${him} for a moment, if they wish. ${He} spends a torturous day in the stocks before being hauled in for enslavement, <span class="health dec">completely broken</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + slave.fetish = "mindbroken"; + break; + case "anchorBaby": + r.push(`You declare ${his} holes fair game for the entire arcology; since ${he} wants to produce future slaves, your arcology might as well have the privilege of fathering them. ${He} spends a torturous day in the stocks after ${his} children are taken to a slave orphanage before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "businesswoman": + r.push(`You declare ${his} holes fair game for the entire arcology, in payment for ${his} crimes. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "whore": + r.push(`You declare ${his} holes fair game for the entire arcology, to repay ${his} thefts. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "rapist": + r.push(`You declare ${his} holes fair game for the entire arcology. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "mule": + r.push(`You declare ${his} holes fair game for the entire arcology as punishment for trying to smuggle in a load instead of taking one. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + break; + case "liberator": + r.push(`Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. ${His} holes are thus fair game for the entire arcology. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun,</span> and small slaveholders are <span class="green">encouraged to do business with your arcology</span> after word of the incident gets around.`); + break; + case "passfail": + r.push(`You declare ${his} holes fair game for the entire arcology; after all, ${he} did want to be around lots of ${fakeRace} people, didn't ${he}? ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(slave.vagina > -1) ? ' and <span class="lime">fucked-out</span> pussy' : ""}. The public <span class="reputation inc">enjoys the fun.</span>`); + } + repX(500, "event", slave); + V.arcologies[0].prosperity += 2; + r.push(App.UI.newSlaveIntro(slave)); + + App.Events.addParagraph(frag, r); + return frag; + } + + function arcade() { + const frag = document.createDocumentFragment(); + + r = []; + + r.push(assignJob(slave, "be confined in the arcade")); + slave.choosesOwnAssignment = 0; + slave.sentence = 4; + cashX(forceNeg(contractCost), "slaveTransfer", slave); + switch (malefactor) { + case "addict": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. When ${he} learns ${he}'s headed to the arcade, ${he} actually relaxes a little, having heard the whores there get drugs. The public <span class="reputation inc">looks forward</span> to seeing ${him} there, especially the owner of the shop ${he} attempted to burglarize.`); + break; + case "escapee": + case "orphanloli": + r.push(`You complete the legalities and biometric scanning quickly, and tell the crowd that ${his} holes will be available at the arcade within the hour. The public <span class="reputation inc">looks forward</span> to seeing ${him} there, angrily suspecting ${him} of being an escapee and glad that they'll be able to take part in ${his} punishment.`); + break; + case "anchorBaby": + r.push(`You complete the legalities and biometric scanning quickly and have ${his} children taken away. The condemned screeches ${his} displeasure throughout the process until you grow tired of the whining and sedate ${him} for immurement in the arcade. The public <span class="reputation inc">looks forward</span> to seeing ${him} there and vying to see who gets to fill ${his} womb with another child.`); + break; + case "businesswoman": + case "mule": + case "passfail": + case "rapist": + case "whore": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned sobs and begs throughout the process until you grow tired of the whining and sedate ${him} for immurement in the arcade. The public <span class="reputation inc">looks forward</span> to seeing ${him} there and getting some of their own back.`); + break; + case "liberator": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. It would be best to have ${him} restrained for public use in the arcade first. The public <span class="reputation inc">looks forward</span> to seeing ${him} there.`); + } + repX(250, "event", slave); + newSlave(slave); /* skip New Slave Intro */ + + App.Events.addParagraph(frag, r); + return frag; + } + + function dairy() { + const frag = document.createDocumentFragment(); + r = []; + + r.push(assignJob(slave, "work in the dairy")); + cashX(forceNeg(contractCost), "slaveTransfer", slave); + switch (malefactor) { + case "addict": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned accepts a sedative, thinking it's aphrodisiacs, and ${his} unconscious body is installed in ${V.dairyName}. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the addict's`); + if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration,`); + } else if ((V.dairyPregSetting > 1) && (slave.vagina > 0)) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction,`); + } else { + r.push(`breasts as they are roughly milked,`); + } + r.push(`together with a lengthy report on the experimental detox process used to ensure that the milk ${he} produces will be untainted.`); + break; + case "escapee": + r.push(`You complete the legalities and biometric scanning quickly. The condemned is too far gone to resist as ${he} is installed in ${V.dairyName}. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the escapee's`); + if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else if ((V.dairyPregSetting > 1) && (slave.vagina > 0)) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction.`); + } else { + r.push(`breasts as they are roughly milked.`); + } + break; + case "orphanloli": + r.push(`You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as ${he} is installed in ${V.dairyName} but ${he} weeps the entire time. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the escapee's`); + if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else if ((V.dairyPregSetting > 1) && (slave.vagina > 0)) { + r.push(`agony as ${his} once tight pussy adapts to industrial reproduction.`); + } else { + r.push(`budding breasts as they are roughly milked.`); + } + break; + case "anchorBaby": + r.push(`You complete the legalities and biometric scanning quickly and cautiously before having ${his} children taken away. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's`); + if (V.dairyPregSetting > 1 && slave.vagina > 0) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of ${his} next batch of slave product in eighteen years and nine months.`); + } else if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else { + r.push(`breasts as they are roughly milked.`); + } + break; + case "businesswoman": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's`); + if (V.dairyPregSetting > 1 && slave.vagina > 0) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of ${his} first slave product in eighteen years and nine months.`); + } else if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else { + r.push(`breasts as they are roughly milked.`); + } + break; + case "whore": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's`); + if (V.dairyPregSetting > 1 && slave.vagina > 0) { + r.push(`discomfort as ${his} well-traveled pussy adapts to industrial reproduction.`); + } else if (V.dairyStimulatorsSetting > 1) { + r.push(`discomfort as ${his} well-traveled anus adapts to accommodate rectal dildo hydration.`); + } else { + r.push(`breasts as they are roughly milked.`); + } + break; + case "rapist": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the rapist's`); + if (V.dairyStimulatorsSetting > 1) { + r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else { + r.push(`newly growing breasts as they are roughly milked.`); + } + break; + case "liberator": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's`); + if (V.dairyPregSetting > 1 && slave.vagina > 0) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction,`); + } else if (V.dairyStimulatorsSetting > 1) { + r.push(`discomfort as ${his} anus adapts to accommodate rectal dildo hydration,`); + } else { + r.push(`breasts as they are roughly milked,`); + } + r.push(`together with a report on the likely productivity of such a fit body capable of withstanding the stress of high throughput.`); + break; + case "passfail": + r.push(`You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as ${he} is installed in ${V.dairyName} but ${he} weeps the entire time. The public <span class="reputation inc">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's`); + if (V.dairyPregSetting > 1 && slave.vagina > 0) { + r.push(`discomfort as ${his} pussy adapts to industrial reproduction.`); + } else if (V.dairyStimulatorsSetting > 1) { + r.push(`discomfort as ${his} anus adapts to accommodate rectal dildo hydration.`); + } else { + r.push(`breasts as they are roughly milked.`); + } + } + repX(250, "event", slave); + newSlave(slave);/* skip New Slave Intro */ + + App.Events.addParagraph(frag, r); + return frag; + } + + function amp() { + const frag = document.createDocumentFragment(); + r = []; + + healthDamage(slave, 20); + removeLimbs(slave, "all"); + slave.behavioralFlaw = "odd"; + cashX(forceNeg(contractCost), "slaveTransfer", slave); + switch (malefactor) { + case "addict": + r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs for a fix until ${he} realizes what's coming, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "escapee": + r.push(`An example must be made. If ${he} escaped once with ${his} tendons clipped, ${he} must be rather talented at it. It remains to be seen if ${he} can manage to escape with neither arms nor legs, so you announce ${his} sentence to the crowd and send ${his} unconscious form for reduction. Of course, <span class="health.dec">${his} health is affected.</span> The public <span class="reputation inc">approves of this harshness,</span> believing that you have taken strong measures against escapees.`); + break; + case "orphanloli": + r.push(`An example must be made. If ${he} thinks ${he} can escape captivity and steal to survive, let's see ${him} try without arms and legs, so you announce ${his} sentence to the crowd and send ${his} unconscious form for reduction. Of course, <span class="health.dec">${his} health is affected.</span> The public <span class="reputation inc">approves of this harshness,</span> believing that you have taken strong measures against escapees.`); + break; + case "anchorBaby": + r.push(`An example must be made. Potential immigrants must understand that attempting to circumvent the process will result in severe fines and proportional punishment when they are incapable of paying them. The protesting mother is stripped, both of clothing and children, and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> since ${he} can hardly attempt to smuggle things into your arcology without the ability to move.`); + break; + case "businesswoman": + r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "whore": + r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> since ${he} can hardly attempt to steal anything without hands.`); + break; + case "rapist": + r.push(`An example must be made. Rape is rare in your arcology, since citizens are so generously provided with means of sexual outlet. When the price of renting a slave that's impossible to rape is as low as it is, sexual assault of a free woman is doubly unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> since even if ${he} cheers up and ever manages an erection again, ${he}'s not likely to rape anyone without arms or legs.`); + break; + case "mule": + r.push(`An example must be made. With the quantity of drugs consumed in the arcology, quality is everything and attempting to undermine that is unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> since ${he} can hardly haul contraband into your arcology without the ability to move ${himself}.`); + break; + case "liberator": + r.push(`An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> since ${he} will scarcely be able to liberate anyone without arms or legs.`); + break; + case "passfail": + r.push(`An example must be made. The citizens of your arcology must be assured that the racially inferior will not try to rise above their station, no matter their deceptions. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness.</span>`); + } + repX(500, "event", slave); + r.push(App.UI.newSlaveIntro(slave)); + + App.Events.addParagraph(frag, r); + return frag; + } + + function geld() { + const frag = document.createDocumentFragment(); + r = []; + + healthDamage(slave, 20); + slave.balls = 0; + slave.devotion -= 25; + slave.trust -= 25; + cashX(forceNeg(contractCost), "slaveTransfer", slave); + r.push(`Video feeds from your remote surgery are made public as the protesting criminal is strapped down and gelded. ${He} is so utterly broken by this turn of events that you complete the legalities and biometric scanning without fuss. The condemned sobs weakly throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. The public <span class="reputation inc">approves of this harshness,</span> which increases your arcology's prosperity by <span class="green">giving it a reputation for swift and terrible justice.</span>`); + repX(500, "event", slave); + V.arcologies[0].prosperity += 10; + r.push(App.UI.newSlaveIntro(slave)); + + App.Events.addParagraph(frag, r); + return frag; + } + + function adopt() { + const frag = document.createDocumentFragment(); + r = []; + + slave.devotion = 25; + slave.trust = 25; + slave.origin = "$He was an orphan forced to live and steal on the streets until you adopted $him."; + cashX(forceNeg(contractCost), "slaveTransfer", slave); + r.push(`You sit down and talk to the exhausted ${girl}, handing ${him} a contract cleverly altered to resemble adoption papers. Once ${he} comprehends what ${he} is looking at, ${he} eagerly signs it. Only once ${he} has reached the penthouse and been introduced to the slave life does ${he} realize ${he} willingly signed away ${his} freedom. Though ${he} can't complain. A warm cot and plenty of food await, which to ${him} is a huge improvement over a slow death on the streets. The public`); + if (V.arcologies[0].FSPaternalist !== "unset") { + r.push(`<span class="reputation inc">is impressed by your act,</span> even if it is a trick.`); + repX(500, "event", slave); + } else { + r.push(`<span class="red">feels you let this criminal off too easy.</span>`); + repX(forceNeg(100), "event", slave); + } + r.push(App.UI.newSlaveIntro(slave)); + + App.Events.addParagraph(frag, r); + return frag; + } + + function citizenship() { + const frag = document.createDocumentFragment(); + r = []; + + r.push(`You help the exhausted mother to ${his} feet and hand ${him} ${his} second newborn. ${He} watches you, uncertain of your motives, until you have ${him} escorted to the proper welcoming facility and put in a good word for having ${him} added to your arcology's free population. You announce to the public that such a fertile`); + if (slave.physicalAge > 30) { + r.push(`MILF`); + } else if (slave.physicalAge > 19) { + r.push(`${woman}`); + } else if (slave.physicalAge > 12) { + r.push(`teen`); + } else { + r.push(`youth`); + } + r.push(`will be a boon to`); + if (V.arcologies[0].FSRepopulationFocus !== "unset") { + r.push(`Repopulationism,`); + } else { + r.push(`society,`); + } + r.push(`and that the contract ${he} is signing mandates ${he} be on powerful fertility agents whenever ${he} isn't pregnant. During ${his} residency, free or not, ${he} will provide society with dozens of future children. The public`); + if (V.arcologies[0].FSRepopulationFocus !== "unset") { + r.push(`<span class="reputation inc">approves of breeders, free or not,</span> and word spreads that any and all mothers are welcome into your arcology <span class="green">adding to its prosperity.</span>`); + repX(500, "event", slave); + } else if (V.arcologies[0].FSPaternalist !== "unset") { + r.push(`<span class="reputation inc">sympathizes with your charity.</span>`); + repX(100, "event", slave); + } else { + r.push(`<span class="red">feels you let this criminal off too easy.</span>`); + repX(forceNeg(100), "event", slave); + } + + App.Events.addParagraph(frag, r); + return frag; + } + + function flog() { + const frag = document.createDocumentFragment(); + r = []; + switch (malefactor) { + case "addict": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The twitching, begging malefactor is stripped and flogged on the promenade before being escorted bleeding, and still twitching from withdrawal, out of the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "escapee": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The begging malefactor is flogged on the promenade before being escorted bleeding and half-dead out of the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "orphanloli": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The crying ${girl} is flogged on the promenade before being dragged bleeding and broken out of the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "anchorBaby": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The screaming breeder is flogged on the promenade before being dragged bleeding and broken out of the arcology sans ${his} children; they are destined for the slave orphanage. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "businesswoman": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "mule": + case "rapist": + case "whore": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "passfail": + r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that ${realRace} scum won't steal their livelihoods. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + break; + case "liberator": + r.push(`An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="reputation inc">approves of this harshness.</span>`); + } + repX(500, "event", slave); + + App.Events.addParagraph(frag, r); + return frag; + } + function ownerFlog() { + const frag = document.createDocumentFragment(); + r = []; + r.push(`An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. ${He} is stripped and the slaveowner whose property ${he} tried to free is handed the leathern instrument. It seems the escapee was a favorite he does not wish to mangle, so he flogs the criminal mercilessly instead. ${He} is flung out of the arcology, nearly dead. The public <span class="reputation inc">approves of this harshness,</span> and small slaveholders are <span class="green">encouraged to do business with your arcology</span> after word of the incident gets around.`); + repX(500, "event", slave); + V.arcologies[0].prosperity += 10; + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + const frag = document.createDocumentFragment(); + r = []; + cashX(cost, "slaveTransfer"); + if (V.policies.cash4Babies === 1 && malefactor === "anchorBaby") { + cashX(random(20, 30), "slaveTransfer"); + } + switch (malefactor) { + case "addict": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. Then it's off to slave markets for sale.`); + break; + case "escapee": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} remains limp throughout the process, only recovering enough to barely grasp the situation as ${he} is enslaved and heading to the slave markets.`); + break; + case "orphanloli": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} sobs throughout the process, though stops once ${he} realizes being a slave means free food. ${He} starts crying again once ${he} realizes ${he} is heading for the slave markets.`); + break; + case "anchorBaby": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. ${His} children`); + if (V.policies.cash4Babies === 1) { + r.push(`head off to be sold as well.`); + } else { + r.push(`will be sent to a slave orphanage for future sale.`); + } + break; + case "businesswoman": + case "mule": + case "passfail": + case "rapist": + case "whore": + r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale.`); + break; + case "liberator": + r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. Based on the drone logs, ${he} is likely to be violent when ${he} does. You make sure that ${he} isn't going to get loose as ${he} is sent off to the slave market; the public would not be pleased if ${he} went on another rampage.`); + } + + App.Events.addParagraph(frag, r); + return frag; + } + + function makeMalefactor() { + let slave; + switch (malefactor) { + case "addict": + slave = GenerateNewSlave(null); + slave.origin = "You sentenced $him to enslavement as a punishment for attempted burglary."; + slave.career = "a criminal"; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(-40, -20)); + slave.addict = 30; + slave.anus = 3; + if (slave.dick === 0) { + slave.balls = 0; + slave.vagina = 2; + slave.skill.vaginal = 15; + } else { + slave.ovaries = 0; + slave.clit = 0; + slave.skill.vaginal = 0; + } + slave.skill.oral = 15; + slave.skill.anal = 35; + slave.skill.whoring = 15; + slave.earPiercing = 1; + slave.nosePiercing = 1; + slave.nipplesPiercing = 1; + slave.clitPiercing = 1; + slave.behavioralFlaw = "odd"; + break; + case "escapee": + slave = GenerateNewSlave(null, {disableDisability: 1}); + slave.origin = "You sentenced $him to enslavement as a punishment for suspected escapism."; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(-80, -70), undefined, undefined, undefined, 70); + slave.heels = 1; + slave.boobs += 100 * random(12, 32); + slave.butt += random(2, 4); + slave.anus = 1; + if (slave.dick === 0) { + slave.balls = 0; + slave.vagina = 2; + slave.skill.vaginal = 15; + } else { + slave.dick = random(4, 5); + slave.balls = random(0, 2); + slave.ovaries = 0; + slave.clit = 0; + slave.skill.vaginal = 0; + } + slave.skill.oral = 0; + slave.skill.anal = 0; + slave.skill.whoring = 0; + slave.sexualFlaw = "hates penetration"; + slave.behavioralFlaw = "odd"; + break; + case "anchorBaby": + slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: V.fertilityAge, maxAge: 42}); + slave.origin = "You sentenced $him to enslavement as a punishment for smuggling slaves within $his body."; + slave.career = App.Data.Careers.General.uneducated.random(); + slave.devotion = random(-75, -50); + slave.trust = random(-75, -60); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(20, 40), undefined, undefined, undefined, 60); + slave.weight = random(40, 80); + slave.accent = 3; + slave.boobs += 200; + slave.lactation = 1; + slave.lactationDuration = 2; + slave.ovaries = 1; + if (slave.vagina < 2) { + slave.vagina += 3; + } + slave.bellySag = 3; + slave.bellySagPreg = 3; + slave.preg = 0; + slave.pregWeek = -4; + slave.counter.birthsTotal = 2; + slave.counter.births = 2; + slave.skill.vaginal = 30; + slave.skill.oral = 15; + slave.skill.anal = 15; + slave.sexualFlaw = "crude"; + slave.behavioralFlaw = "bitchy"; + break; + case "orphanloli": + slave = GenerateNewSlave(null, {minAge: V.minimumSlaveAge, maxAge: 12, disableDisability: 1}); + slave.origin = "You sentenced $him to enslavement as a punishment for suspected escapism."; + slave.career = "an orphan"; + slave.devotion = random(-15, 0); + slave.trust = random(-75, -60); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(-80, -70), undefined, undefined, undefined, 70); + slave.weight = -100; + slave.accent = 3; + slave.boobs = 0; + slave.butt = 0; + slave.anus = 0; + if (slave.dick === 0) { + slave.balls = 0; + slave.vagina = 0; + } else { + slave.dick = random(1, 2); + slave.balls = random(1, 2); + slave.ovaries = 0; + slave.clit = 0; + } + slave.skill.vaginal = 0; + slave.skill.oral = 0; + slave.skill.anal = 0; + slave.skill.whoring = 0; + slave.sexualFlaw = "apathetic"; + slave.behavioralFlaw = "gluttonous"; + break; + case "businesswoman": + slave = GenerateNewSlave("XX", { + disableDisability: 1, minAge: 35, maxAge: 45, race: "nonslave" + }); + slave.origin = "You sentenced $him to enslavement as a punishment for fraud and theft."; + slave.career = "a criminal businesswoman"; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + slave.vagina = 2; + slave.preg = -1; + slave.skill.vaginal = 15; + slave.anus = 0; + slave.boobs += 400; + slave.boobsImplant = 400; + slave.boobsImplantType = "normal"; + slave.butt += 2; + slave.buttImplant = 2; + slave.buttImplantType = "normal"; + setHealth(slave, jsRandom(20, 40), undefined, undefined, undefined, 10); + slave.sexualFlaw = "hates oral"; + slave.behavioralFlaw = "arrogant"; + slave.hStyle = "fashionable for a Free Cities businesswoman, up in a tight bun"; + slave.custom.tattoo = "$He has a pretty floral tattoo along $his collarbone."; + break; + case "whore": + slave = GenerateNewSlave(null, {disableDisability: 1, race: "nonslave"}); + slave.origin = "You sentenced $him to enslavement as a punishment for theft and battery."; + slave.career = "a prostitute"; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(-40, -20)); + slave.anus = 2; + if (slave.dick === 0) { + slave.balls = 0; + slave.vagina = 2; + slave.skill.vaginal = 35; + } + slave.skill.oral = 35; + slave.skill.anal = 35; + slave.skill.whoring = 35; + slave.boobs += 400; + slave.boobsImplant = 400; + slave.boobsImplantType = "normal"; + slave.butt++; + slave.buttImplant = 1; + slave.buttImplantType = "normal"; + slave.lips += 10; + slave.lipsImplant = 10; + slave.lipsPiercing = 1; + slave.tonguePiercing = 1; + slave.earPiercing = 1; + slave.nosePiercing = 1; + slave.eyebrowPiercing = 1; + slave.nipplesPiercing = 1; + slave.clitPiercing = 1; + slave.sexualFlaw = "hates penetration"; + slave.hStyle = "strip"; + slave.custom.tattoo = "$He has a teardrop tattooed under each eye."; + break; + case "rapist": + slave = GenerateNewSlave("XY", {disableDisability: 1, minAge: 16, race: "nonslave"}); + slave.origin = "You sentenced $him to enslavement as a punishment for the rape of a free woman."; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(0, 20), undefined, undefined, 0, 5); + slave.anus = 0; + slave.balls = random(2, 4); + slave.skill.oral = 0; + slave.skill.anal = 0; + slave.behavioralFlaw = "arrogant"; + slave.sexualFlaw = "hates penetration"; + break; + case "mule": + pram = new GenerateNewSlavePram(); + Object.assign(pram, {disableDisability: 1, minAge: 13, race: "nonslave"}); + if (V.pedo_mode === 0) { + pram.maxAge = 26; + } + slave = GenerateNewSlave("XX", pram); + slave.origin = "You sentenced $him to enslavement for smuggling drugs into the arcology."; + slave.career = "a drug mule"; + slave.devotion = random(-50, -20); + slave.trust = random(-100, -75); + slave.vagina = 2; + slave.preg = -2; + slave.bellyImplant = 0; + slave.cervixImplant = 1; + slave.pubicHStyle = "shaved"; + slave.bellySag = 2; + slave.skill.vaginal = 50; + slave.anus = 0; + slave.hips = 0; + slave.weight = -60; + slave.waist = random(-30, -10); + slave.boobs = random(4, 5) * 100; + slave.boobShape = "perky"; + setHealth(slave, jsRandom(-20, 10), undefined, undefined, undefined, 40); + slave.sexualFlaw = "hates penetration"; + slave.behavioralFlaw = "hates men"; + slave.accent = 0; + break; + case "liberator": + slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: random(12, 28), maxAge: 43}); + slave.origin = "You sentenced $him to enslavement as a punishment for attempted theft of a slave."; + slave.career = "an antislavery activist"; + slave.devotion = random(-75, -60); + slave.trust = random(-15, 0); + slave.oldDevotion = slave.devotion; + slave.muscles = 50; + slave.weight = random(-20, 30); + slave.waist = random(-10, 10); + slave.skill.vaginal = 0; + slave.skill.oral = 0; + slave.skill.anal = 0; + slave.skill.whoring = 0; + slave.skill.combat = 1; + slave.anus = 0; + setHealth(slave, jsRandom(60, 80), undefined, undefined, 0, 10); + slave.behavioralFlaw = "arrogant"; + slave.sexualFlaw = "hates penetration"; + slave.hStyle = "shaved into a mohawk"; + slave.custom.tattoo = "$He seems to have had slave tattoos at one time, but has had them cheaply removed."; + break; + case "passfail": + pram = new GenerateNewSlavePram(); + pram.disableDisability = 1; + if (V.arcologies[0].FSSubjugationistLawME === 1) { + pram.race = V.arcologies[0].FSSubjugationistRace; + } else if (V.arcologies[0].FSSupremacistLawME === 1) { + const races = App.Utils.getRaceArrayWithoutParamRace(V.arcologies[0].FSSupremacistRace); + pram.race = races.random(); + } + slave = GenerateNewSlave(null, pram); + slave.origin = "You sentenced $him to enslavement as a punishment for defying local racial segregation laws."; + slave.career = App.Data.Careers.General.educated.random(); + slave.devotion = random(-75, -50); + slave.trust = random(-75, -50); + slave.oldDevotion = slave.devotion; + setHealth(slave, jsRandom(-40, -20), undefined, undefined, 0, 10); + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 15; + if (V.arcologies[0].FSSupremacistLawME === 1 && V.arcologies[0].FSSupremacistRace) { + fakeRace = V.arcologies[0].FSSupremacistRace; + } else if (V.arcologies[0].FSSubjugationistLawME === 1) { + const races = App.Utils.getRaceArrayWithoutParamRace(V.arcologies[0].FSSubjugationistRace); + fakeRace = races.random(); + } + realRace = slave.race; + slave.race = fakeRace; + slave.skin = randomRaceSkin(fakeRace); + setEyeColor(slave, randomRaceEye(fakeRace)); + slave.hColor = randomRaceHair(fakeRace); + slave.override_Race = 1; + slave.override_Skin = 1; + slave.override_H_Color = 1; + slave.override_Eye_Color = 1; + break; + } + return slave; + } + } +}; diff --git a/src/events/RE/reNickname.js b/src/events/RE/reNickname.js index 8dff51b9311c1d3b6a97121de148d83e9a51fa46..cbf2cc4f0eb5842e52337cbf2a21159f264d938d 100644 --- a/src/events/RE/reNickname.js +++ b/src/events/RE/reNickname.js @@ -335,10 +335,10 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { const r = []; const {nicknameArray, situationDesc, applyDesc, notApplyDesc} = _this.data(slave, seed); let nickname = either(...nicknameArray); - const catEl = App.UI.DOM.makeElement("div", selectCategory(V.cheatMode)); + const catEl = App.UI.DOM.makeElement("div", selectCategory(V.debugMode > 0 && V.debugModeEventSelection > 0)); r.push(catEl); r.push(App.UI.DOM.slaveDescriptionDialog(slave), situationDesc); - const nickEl = App.UI.DOM.makeElement("span", selectNickname(V.cheatMode)); + const nickEl = App.UI.DOM.makeElement("span", selectNickname(V.debugMode > 0 && V.debugModeEventSelection > 0)); r.push(`You begin to overhear your other slaves refer to ${him} as`, nickEl); App.Events.addParagraph(el, r); @@ -1650,7 +1650,7 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { nicknameArray = ["Barely Legal"]; } } - situationDesc = `is yet underage by old world standards, and some older slaves do not let ${him} forget that.`; + situationDesc = `is still considered underage by old world standards, and some older slaves do not let ${him} forget that.`; applyDesc = `understands that far from being a mockery, your sanction has turned an intended insult into a reference to the appeal of ${his} years.`; notApplyDesc = `understands that despite ${his} young age ${he} must do ${his} best to fuck like the most veteran of whores.`; diff --git a/src/events/RE/rePregInventorFCTV.js b/src/events/RE/rePregInventorFCTV.js index 2188745323520742d1598c77fa984914684c3a08..8ac5cd92523094777e587882f5dc6d5e07c46d9e 100644 --- a/src/events/RE/rePregInventorFCTV.js +++ b/src/events/RE/rePregInventorFCTV.js @@ -53,7 +53,7 @@ App.Events.rePregInventorFCTV = class rePregInventorFCTV extends App.Events.Base const responses = []; if (V.PC.skill.hacking >= 100) { - new App.Events.Result(`Manipulate the FCTV algorithms`, manipulate); + responses.push(new App.Events.Result(`Manipulate the FCTV algorithms`, manipulate)); } responses.push(new App.Events.Result(`Spend ${cashFormat(10000)} to fund additional advertising`, advertising)); responses.push(new App.Events.Result(`Trust in your slave`, trust)); diff --git a/src/events/RE/reRelativeRecruiter.js b/src/events/RE/reRelativeRecruiter.js index f1405dfab40662fb03dfc121b94e4d8c92211756..bbf5c1a9e6e0a28e23277a0c1ecc7e5240277df0 100644 --- a/src/events/RE/reRelativeRecruiter.js +++ b/src/events/RE/reRelativeRecruiter.js @@ -172,7 +172,7 @@ App.Events.RERelativeRecruiter = class RERelativeRecruiter extends App.Events.Ba let _this = this; // fuck javascript's half-assed classes let cost = 0; // will be filled out later - let cheatDiv = App.UI.DOM.makeElement("div", (V.cheatMode === 1) ? cheatModeSelectors() : ''); + let cheatDiv = App.UI.DOM.makeElement("div", (V.debugMode > 0 && V.debugModeEventSelection > 0) ? cheatModeSelectors() : ''); node.appendChild(cheatDiv); let eventTextDiv = App.UI.DOM.makeElement("div", eventText()); @@ -485,7 +485,7 @@ App.Events.RERelativeRecruiter = class RERelativeRecruiter extends App.Events.Ba slave.skill.oral = 35; slave.skill.anal = 75; slave.hLength = random(10, 20); - slave.hStyle = either("buzzcut", "long", "neat", "trimmed"); + slave.hStyle = either("buzzcut", "neat", "trimmed"); slave.voice = 1; slave.energy = 0; slave.balls = 0; diff --git a/src/events/RE/reRoyalBlood.js b/src/events/RE/reRoyalBlood.js index 775ab9641a222d49a4a9d5d33a03a5256885b59c..f647a70bfe6aa814557b61e0742b32e32a8d14c9 100644 --- a/src/events/RE/reRoyalBlood.js +++ b/src/events/RE/reRoyalBlood.js @@ -1,7 +1,7 @@ App.Events.RERoyalBlood = class RERoyalBlood extends App.Events.BaseEvent { eventPrerequisites() { return [ - () => (V.rep - 10000 > random(1, 12500) || V.cheatMode !== 0) + () => ((V.rep - 10000 > random(1, 12500)) || (V.debugMode > 0 && V.debugModeEventSelection > 0)) ]; } diff --git a/src/events/RE/reShelterInspection.js b/src/events/RE/reShelterInspection.js index 5931bcc201462d1fc0f3957139d6827b7f0475f4..496ca07c5069ae3f67b764918f06925cf72dad98 100644 --- a/src/events/RE/reShelterInspection.js +++ b/src/events/RE/reShelterInspection.js @@ -256,11 +256,10 @@ App.Events.REShelterInspection = class REShelterInspection extends App.Events.B function allow() { let r = []; const el = new DocumentFragment(); - let _inspectionContinues = 1; r.push(`You have ${him2} ushered up to your office, and order ${inspectee.slaveName} brought in.`); /* - + let _inspectionContinues = 1; if (isAmputee(inspectee) && !isAmputee(originSlave)) { r.push(`You may have lopped off the poor ${girl}'s arms and legs, a fact not lost on the inspector. ${He2} can barely conceal ${his2} terror as ${he2} makes lengthy notes on ${his2} tablet before practically running out of the penthouse.`); V.shelterAbuse += 10; diff --git a/src/events/RECI/butthole.js b/src/events/RECI/butthole.js index a1d8fe295ef7589033591bf957c8309f36137660..0f87c857782f4e189d5469a6bb2b5661fb6804c2 100644 --- a/src/events/RECI/butthole.js +++ b/src/events/RECI/butthole.js @@ -15,7 +15,7 @@ App.Events.RECIButthole = class RECIButthole extends App.Events.BaseEvent { canWalk, canSee, canHear, - s => s.anus > 1 && s.anus < 4, + s => s.anus.isBetween(1, 4), s => s.analArea > 1, ] ]; @@ -26,7 +26,7 @@ App.Events.RECIButthole = class RECIButthole extends App.Events.BaseEvent { let [eventSlave] = this.actors.map(a => getSlave(a)); const { // eslint-disable-next-line no-unused-vars - He, he, His, his, hers, him, himself, girl, woman, loli + He, he, His, his, him, himself, girl, woman, loli } = getPronouns(eventSlave); const {title: Master, say: say} = getEnunciation(eventSlave); const belly = bellyAdjective(eventSlave); @@ -302,10 +302,7 @@ App.Events.RECIButthole = class RECIButthole extends App.Events.BaseEvent { function DoubleTeam(partner) { let container = document.createDocumentFragment(); const partnerSlave = partner; - const { - // eslint-disable-next-line no-unused-vars - He2, he2, His2, his2, hers2, him2, himself2, girl2 - } = getPronouns(partnerSlave).appendSuffix('2'); + const {He2, he2, his2, him2, himself2} = getPronouns(partnerSlave).appendSuffix('2'); const {title: Master2} = getEnunciation(partnerSlave); // replace slave art diff --git a/src/events/RECI/feminization.js b/src/events/RECI/feminization.js index 2d278430d847708279eb9ea0af409ababb847f99..7d0a004602f9b3132272a5bbdccd7c4537b75209 100644 --- a/src/events/RECI/feminization.js +++ b/src/events/RECI/feminization.js @@ -32,10 +32,7 @@ App.Events.RECIFeminization = class RECIFeminization extends App.Events.BaseEven execute(node) { /** @type {Array<App.Entity.SlaveState>} */ let [eventSlave] = this.actors.map(a => getSlave(a)); - const { - // eslint-disable-next-line no-unused-vars - He, he, His, his, hers, him, himself, girl - } = getPronouns(eventSlave); + const {He, he, His, his, him, himself, girl} = getPronouns(eventSlave); const {title: Master, say: say} = getEnunciation(eventSlave); const desc = SlaveTitle(eventSlave); const legs = hasBothLegs(eventSlave) ? "legs" : "leg"; diff --git a/src/events/RECI/orientation.js b/src/events/RECI/orientation.js index 7c8e701f9d0bf35c110bb4b4f80a79ca99a1c15b..d021dbb6dfa09005d0bccef65bf71eeabf0b445f 100644 --- a/src/events/RECI/orientation.js +++ b/src/events/RECI/orientation.js @@ -25,10 +25,7 @@ App.Events.RECIOrientation = class RECIOrientation extends App.Events.BaseEvent execute(node) { /** @type {Array<App.Entity.SlaveState>} */ let [eventSlave] = this.actors.map(a => getSlave(a)); - const { - // eslint-disable-next-line no-unused-vars - He, he, His, his, hers, him, himself, girl - } = getPronouns(eventSlave); + const {He, he, his, him, himself, girl} = getPronouns(eventSlave); const {title: Master} = getEnunciation(eventSlave); const belly = bellyAdjective(eventSlave); const desc = SlaveTitle(eventSlave); diff --git a/src/events/RECI/ugly.js b/src/events/RECI/ugly.js index 76b80c69d324dfc469958afc1dd4516bd387ff5c..95ca6f23c68ef02e7ca5c1764680155d12685f14 100644 --- a/src/events/RECI/ugly.js +++ b/src/events/RECI/ugly.js @@ -26,10 +26,7 @@ App.Events.RECIUgly = class RECIUgly extends App.Events.BaseEvent { execute(node) { /** @type {Array<App.Entity.SlaveState>} */ let [eventSlave] = this.actors.map(a => getSlave(a)); - const { - // eslint-disable-next-line no-unused-vars - He, he, His, his, hers, him, himself, girl - } = getPronouns(eventSlave); + const {He, he, His, his, him, himself, girl} = getPronouns(eventSlave); const {title: Master, say: say} = getEnunciation(eventSlave); const freeMovement = (canWalk(eventSlave) || (canMove(eventSlave) && eventSlave.rules.mobility === "permissive")); diff --git a/src/events/REFI/reButtslut.js b/src/events/REFI/reButtslut.js index 790961f0566b2c747e2c40f0775be4d58d37a093..a8bfad6415c09b42b8a76e24421edfe68911a6b6 100644 --- a/src/events/REFI/reButtslut.js +++ b/src/events/REFI/reButtslut.js @@ -32,7 +32,7 @@ App.Events.REFIButtslut = class REFIButtslut extends App.Events.BaseEvent { App.Events.drawEventArt(node, [eventSlave, subSlave], [eventSlave.clothes, "no clothing"]); if (canImpreg(subSlave, V.PC)) { - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } seX(subSlave, "anal", V.PC, "penetrative"); diff --git a/src/events/REFI/reHumiliation.js b/src/events/REFI/reHumiliation.js index e12851f0a7abeef1361b86b1b8c227a14cd8b12c..6b23282ee0c1a0797f4a7a59d6205acc1520c992 100644 --- a/src/events/REFI/reHumiliation.js +++ b/src/events/REFI/reHumiliation.js @@ -30,12 +30,12 @@ App.Events.REFIHumiliation = class REFIHumiliation extends App.Events.BaseEvent if (canDoVaginal(subSlave) && subSlave.vagina > 0) { seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)){ - knockMeUp(subSlave, 5, 0, -1, true); + knockMeUp(subSlave, 5, 0, -1); } } else { seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)){ - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } diff --git a/src/events/REFI/reMasochist.js b/src/events/REFI/reMasochist.js index 4f7300e6298227cfc139c9e26300978c61e1bbae..0136db454a0d19e147806bf15694ad7766f8888c 100644 --- a/src/events/REFI/reMasochist.js +++ b/src/events/REFI/reMasochist.js @@ -31,12 +31,12 @@ App.Events.REFIMasochist = class REFIMasochist extends App.Events.BaseEvent { if (canDoAnal(subSlave) && subSlave.anus > 0) { seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)){ - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } else { seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - knockMeUp(subSlave, 5, 0, -1, true); + knockMeUp(subSlave, 5, 0, -1); } } diff --git a/src/events/REFI/rePregnancy.js b/src/events/REFI/rePregnancy.js index 316e2ba1597129f646a641f2f35ff05a35037afb..1aefc10e7a40847b7c1df31969e05d3fb97a0853 100644 --- a/src/events/REFI/rePregnancy.js +++ b/src/events/REFI/rePregnancy.js @@ -561,7 +561,7 @@ App.Events.REFIPregnancy = class REFIPregnancy extends App.Events.BaseEvent { if (eventSlave.toyHole === "dick" || V.policies.sexualOpenness === 1) { t.push(`You push ${him} onto the couch, line yourself up with ${his} throbbing erection, and ask if ${he} wants to impregnate a girl. ${He}'s almost beside ${himself}, shuddering at the titillation, but before ${he} can answer, you tell ${him} that getting to use ${his} dick is a very special reward for very good slaves, and you might give it to ${him} one day — but that ${he} doesn't deserve it yet. With that, you tease the tip of ${his} penis with your pussy; a clear mistake, as this sets ${him} over the edge. ${He} can only gasp wordlessly over having just accidentally came in ${his} ${getWrittenTitle(eventSlave)}, something you take full advantage of. You clearly inform ${him} that you were fertile. <span style="italic">Were.</span> You continue to tease the blooming impregnation fetishist with descriptions of how hard it will be for you so heavily laden with child and how ${he} had better plan on taking responsibility. ${He} can't take it and releases another spurt of cum, this time onto ${himself};`); if (canImpreg(V.PC, eventSlave)) { - t.push(knockMeUp(V.PC, 20, 0, eventSlave.ID, true)); + knockMeUp(V.PC, 20, 0, eventSlave.ID); t.push(`you aren't taking more chances with ${him}.`); } else { t.push(`you can't actually get pregnant right now, but ${he} doesn't need to know that.`); diff --git a/src/events/REFI/reSubmissive.js b/src/events/REFI/reSubmissive.js index 5a92711058207202753a7311eb4b7df62dd48605..f0462f2ba71ee18f5c8ef0502469ae00145e1ca3 100644 --- a/src/events/REFI/reSubmissive.js +++ b/src/events/REFI/reSubmissive.js @@ -29,12 +29,12 @@ App.Events.REFISubmissive = class REFISubmissive extends App.Events.BaseEvent { if (canDoVaginal(subSlave) && (subSlave.vagina > 0)) { seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - knockMeUp(subSlave, 5, 0, -1, true); + knockMeUp(subSlave, 5, 0, -1); } } else { seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)){ - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } diff --git a/src/events/RESS/ageDifferenceOldPC.js b/src/events/RESS/ageDifferenceOldPC.js new file mode 100644 index 0000000000000000000000000000000000000000..a5271839a006b3ecc2881ac08f13c08df68f7ef0 --- /dev/null +++ b/src/events/RESS/ageDifferenceOldPC.js @@ -0,0 +1,291 @@ +App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.PC.actualAge >= 50, + ]; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + canWalk, + canTalk, + canHear, + s => s.devotion > 20, + s => s.trust > 20, + s => s.actualAge < 22, + s => (canDoAnal(s) || canDoVaginal(s)), + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + He, he, his, him, himself, girl, daughter + } = getPronouns(eventSlave); + const {title: Master, say} = getEnunciation(eventSlave); + const belly = bellyAdjective(eventSlave); + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave, "no clothing"); + + let r = []; + r.push(`As another long week draws to a close,`); + r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ",")); + r.push(`happens to walk past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`); + if (canSee(eventSlave)) { + r.push(`never manages to meet your eyes.`); + } else { + r.push(`keeps ${his} sightless eyes downcast.`); + } + r.push(`When you ask ${him} what's troubling ${him}, ${his} face plainly falls.`); + App.Events.addParagraph(node, r); + r = []; + + if (eventSlave.mother !== -1 && eventSlave.father !== -1) { + r.push(Spoken(eventSlave, `"${Master}, you're so old,"`)); + r.push(`${he} ${say}s penitently before smiling shyly in an attempt to insert some levity into ${his} confession.`); + r.push(Spoken(eventSlave, `"It's just that I'm young enough to be your ${daughter}, ${Master}. It's a little weird, isn't it?"`)); + } else { + r.push(Spoken(eventSlave, `"${Master}, you're so old,"`)); + r.push(`${he} ${say}s penitently before smiling shyly in an attempt to insert some levity into ${his} confession.`); + r.push(Spoken(eventSlave, `"Compared to you, I'm nothing, ${Master}. I feel so inadequate and I don't want to`)); + if (eventSlave.mother === -1) { + r.push(Spoken(eventSlave, `have been a waste of time for you. I'm sorry you had to carry me inside you for nine months, and I'm sorry I stretched you out when I was born, ${Master}. Is it a little weird to feel this way?"`)); + } else { + r.push(Spoken(eventSlave, `be a disappointment to you, ${Master}. Is it a little weird to feel this way?"`)); + } + } + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Gently acclimate ${him} to the age difference with some lovemaking`, lovemaking, virginityWarning(false)), + new App.Events.Result(`Cruelly torment ${him} about the age difference`, torment, virginityWarning(false)), + isFertile(eventSlave) + ? new App.Events.Result(`Give ${him} an afternoon off for some quality time with a local retirement community`, afternoon, virginityWarning(true)) + : new App.Events.Result(), + + ]); + + function virginityWarning(knockedUp){ + if (knockedUp) { + let t = `This option will render ${eventSlave.slaveName} pregnant`; + if (canDoVaginal(eventSlave) && (eventSlave.vagina === 0)) { + t += ` and take ${his} virginity`; + } else if (!canDoVaginal(eventSlave) && (eventSlave.anus === 0)) { + t += ` and take ${his} anal virginity`; + } + return t; + } else if (canDoVaginal(eventSlave) && (eventSlave.vagina === 0)) { + return `This option will take ${his} virginity`; + } else if (!canDoVaginal(eventSlave) && (eventSlave.anus === 0)) { + return `This option will take ${his} anal virginity`; + } + } + + function lovemaking() { + r = []; + r.push(`As you cross the breadth of your office to reach ${eventSlave.slaveName}, ${he} presents ${himself} for your sexual usage out of habit. However, you take ${him} by surprise by drawing ${him} into your arms, running the tips of your fingers`); + if (eventSlave.hStyle.includes("bald") || eventSlave.bald === 1) { + r.push(`across ${his} scalp,`); + } else { + r.push(`through ${his} ${eventSlave.hColor} hair,`); + } + r.push(`and looking into ${his} ${App.Desc.eyesColor(eventSlave)}.`); + if (canSee(eventSlave)) { + r.push(`${He} meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years ${his} senior you are.`); + } else { + r.push(`${He} seems to feel the intensity of your gaze despite ${his} sightless eyes and blushes girlishly, as if forgetting how many years ${his} senior you are.`); + } + r.push(`In lieu of words, you lift ${his} chin with a single beckoning finger and steal ${his} breath from ${his} lips with a firm kiss. Once ${he}'s recovered ${his} wits ${he} clings to you with almost animalistic attachment. After a few moments ${he} moves to get down on ${his} knees, clearly defaulting to ${his} role as a sex slave in response to your unexpected intimacy.`); + r.push(`Instead, you`); + if (eventSlave.belly >= 300000) { + r.push(`help ${him} to ${his} feet and guide ${him} to bed, aiding the`); + if (eventSlave.physicalAge <= 3) { + if (eventSlave.bellyPreg >= 3000) { + r.push(`bursting at the seams with life`); + } else { + r.push(`nearly circular`); + } + r.push(`little ${girl}`); + } else if (eventSlave.physicalAge < 13) { + if (eventSlave.bellyPreg >= 3000) { + r.push(`poor overfilled and ready to pop`); + } else { + r.push(`tremendously swollen`); + } + r.push(girl); + } else if (eventSlave.physicalAge < 18) { + if (eventSlave.bellyPreg >= 3000) { + r.push(`child-filled`); + } else { + r.push(`tremendously swollen`); + } + r.push(`teen`); + } else { + if (eventSlave.bellyPreg >= 3000) { + r.push(`child-laden`); + } else { + r.push(`tremendously swollen`); + } + r.push(`young lady`); + } + r.push(`onto the sheets before gently mounting ${him}.`); + } else { // check canLift() here! + if (eventSlave.belly >= 5000) { + r.push(`carefully`); + } + r.push(`lift ${him} up from ${his} low position beneath you and carry ${him} to bed, laying the flushed`); + if (eventSlave.physicalAge <= 3) { + r.push(`little ${girl}`); + } else if (eventSlave.physicalAge < 13) { + r.push(`${girl}`); + } else if (eventSlave.physicalAge < 18) { + r.push(`teen`); + } else { + r.push(`young lady`); + } + r.push(`down on the sheets before gently positioning yourself on top of ${him}.`); + } + r.push(`Together, the two of you make fiercely intimate love, while you`); + if (canHear(eventSlave)) { + r.push(`whisper romantic reassurances into ${his} ear,`); + } + r.push(`nip at ${his} neck,`); + if (eventSlave.bellyPreg >= 300000) { + r.push(`run your hands across ${his} squirming brood,`); + } else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) { + r.push(`stroke ${his} pregnant belly,`); + } else if (eventSlave.belly >= 5000) { + r.push(`caress the curve of ${his} ${belly} belly,`); + } + r.push(`and bring ${him} to climax again and again. After a final frantic orgasm together in ${his}`); + if (canDoVaginal(eventSlave)) { + r.push(`pussy`); + } else { + r.push(`anus`); + } + r.push(`${he}`); + if (canSee(eventSlave)) { + r.push(`looks`); + } else { + r.push(`gazes sightlessly`); + } + r.push(`up at you with <span class="devotion inc">adoration</span> and a new <span class="trust inc">trust</span> in ${his} aged ${getWrittenTitle(eventSlave)}.`); + eventSlave.devotion += 4; + eventSlave.trust += 4; + if (canDoVaginal(eventSlave)) { + r.push(VCheck.Vaginal(eventSlave, 1)); + } else { + r.push(VCheck.Anal(eventSlave, 1)); + } + return r; + } + + function torment() { + const frag = document.createDocumentFragment(); + r = []; + r.push(`As you close in on ${eventSlave.slaveName} predatorily, ${his} face blanches with visible regret at ${his} prior candidness. By the time you have ${him} bent over`); + if (eventSlave.belly >= 300000) { + r.push(`${his} ${belly} belly`); + } else { + r.push(`your desk`); + } + r.push(`and begun spanking ${his}`); + if (eventSlave.butt > 12) { + r.push(`absurd ass,`); + } else if (eventSlave.butt > 6) { + r.push(`massive behind,`); + } else if (eventSlave.butt > 3) { + r.push(`bountiful bottom,`); + } else { + r.push(`cute ass,`); + } + r.push(`${he} seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush`); + if (eventSlave.earShape !== "none" && eventSlave.earT !== "none") { + r.push(`one of ${his} ears,`); + } else { + r.push(`where ${his} ear used to be,`); + } + r.push(`${he} flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about ${his} sexual submission and subservience to so old a ${getWrittenTitle(eventSlave)}, ${he} begins to sob quietly`); + if (eventSlave.belly >= 300000) { + if (eventSlave.boobs > 600) { + r.push(`into ${his} breasts.`); + } else if (!hasAnyArms(eventSlave)) { + r.push(`with no means to hide it.`); + } else { + r.push(`into ${his} hands.`); + } + } else { + r.push(`against the hard surface of your desk.`); + } + App.Events.addParagraph(frag, r); + + r = []; + r.push(`By the time you deign to`); + if (V.PC.dick === 0) { + r.push(`don a strap-on and`); + } + r.push(`mount ${his} ass, ${he} seems catatonic at the revelation that ${his} body is owned by so cruel an old ${Master}. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, ${he} merely winces at the`); + if (canDoVaginal(eventSlave)) { + r.push(`force`); + } else { + r.push(`anal pain`); + } + r.push(`of your coupling. Judging by the`); + if (!canSee(eventSlave)) { + r.push(`exceptionally`); + } + r.push(`empty look in ${his} eyes that persists past ${his} dismissal from your office, ${he} might <span class="trust dec">not feel any better</span> about the age difference but you've definitely <span class="devotion inc">fucked ${him} into compliance.</span>`); + eventSlave.devotion += 4; + eventSlave.trust -= 4; + if (canDoVaginal(eventSlave)) { + r.push(VCheck.Vaginal(eventSlave, 1)); + } else { + r.push(VCheck.Anal(eventSlave, 1)); + } + App.Events.addParagraph(frag, r); + return frag; + } + + function afternoon() { + const frag = document.createDocumentFragment(); + App.Events.addParagraph(frag, [`You direct ${V.assistant.name} to clear ${eventSlave.slaveName}'s schedule and to find a local retirement community willing to 'host' a ${girl} of ${his} age. Perhaps a group of venerable graybeards running a train on ${eventSlave.slaveName} might accustom ${him} to older sexual partners. When ${eventSlave.slaveName} leaves the penthouse, ${he}'s dressed up to look like an old world school${girl} and is clearly skeptical about your age-play therapy.`]); + + r = []; + r.push(`${eventSlave.slaveName} returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite ${his} appearance, however, ${he} is practically beaming with happiness. It seems a good fucking from experienced older men agrees with ${him}, and by the state of ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`cum-drenched asshole`); + } else { + r.push(`messy pussy`); + } + r.push(`${his} aged partners particularly enjoyed filling ${him} with their still potent seed. Unsurprisingly, at a routine check up later that week, ${eventSlave.slaveName} joyfully discovers that ${he} was impregnated during ${his} excursion. It seems that being bred by a bunch of horny old men has eliminated ${his} prior worries about the importance of age and also caused ${him} to <span class="fetish gain">fetishize impregnation.</span> <span class="devotion inc">${He} has become more submissive to you</span> for giving ${him} the means to broaden ${his} sexual horizons.`); + eventSlave.devotion += 4; + eventSlave.preg = 1; + eventSlave.pregWeek = 1; + eventSlave.pregKnown = 1; + eventSlave.pregType = setPregType(eventSlave); + WombImpregnate(eventSlave, eventSlave.pregType, 0, 1); + eventSlave.fetish = "pregnancy"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 5; + if (eventSlave.mpreg === 1) { + seX(eventSlave, "anal", "public", "penetrative", 10); + if (eventSlave.anus === 0) { + eventSlave.anus++; + } + } else { + seX(eventSlave, "vaginal", "public", "penetrative", 10); + if (eventSlave.vagina === 0) { + eventSlave.vagina++; + } + } + App.Events.addParagraph(frag, r); + return frag; + } + } +}; diff --git a/src/events/RESS/arcadeSadist.js b/src/events/RESS/arcadeSadist.js new file mode 100644 index 0000000000000000000000000000000000000000..d7682055679a556766359bdc5430e3abaee89730 --- /dev/null +++ b/src/events/RESS/arcadeSadist.js @@ -0,0 +1,298 @@ +App.Events.RESSArcadeSadist = class RESSArcadeSadist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => App.Entity.facilities.arcade.established, + () => App.Entity.facilities.arcade.hasEmployees, + ]; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish === "sadist", + s => s.fetishStrength > 20, + s => s.fetishKnown === 1, + hasAnyArms, + canMove, + canTalk, + canHear, + s => s.devotion > 50, + s => s.trust >= -20, + s => s.belly < 300000, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + He, he, his, him, himself, girl + } = getPronouns(eventSlave); + const {title: Master, say} = getEnunciation(eventSlave); + + V.nextLink = "Next Week"; + + let artDiv = document.createElement("div"); // named container so we can replace it later + App.Events.drawEventArt(artDiv, eventSlave); + node.appendChild(artDiv); + + let r = []; + r.push(`You happen to come across`); + r.push(contextualIntro(V.PC, eventSlave, "DOM")); + r.push(`during one of ${his} rest periods. ${He}'s lying on a couch in the slave areas,`); + if (canSee(eventSlave)) { + r.push(`staring at the ceiling above ${him}`); + } else { + r.push(`leaning back`); + } + r.push(`with a dreamy expression on ${his} face. ${He}'s`); + if (eventSlave.rules.release.masturbation === 1) { + r.push(`touching ${himself} idly.`); + } else { + r.push(`not allowed to touch ${himself}, but ${he}'s extremely aroused.`); + } + r.push(`Whatever's on ${his} mind, it's so absorbing that ${he} doesn't realize you're there until you're standing over ${him}.`); + App.Events.addParagraph(node, r); + r = []; + + r.push(Spoken(eventSlave, `"Sorry, ${Master},"`), `he ${say}s apologetically,`); + if (eventSlave.belly >= 10000 || eventSlave.weight > 160) { + r.push(`struggling`); + } else { + r.push(`scrambling`); + } + r.push(`to ${his} feet.`); + r.push(Spoken(eventSlave, `"I didn't notice you there."`)); + if (canSee(eventSlave)) { + r.push(`Seeing your questioning look,`); + } else { + r.push(`Hearing your lack of response,`); + } + r.push(`${he} explains ${himself} further.`); + r.push(Spoken(eventSlave, `"I was just thinking about, um, my favorite place. I can almost get off just by thinking about it."`)); + r.push(`There's a wild, perverted gleam`); + if (canSee(eventSlave)) { + r.push(`in ${his} ${App.Desc.eyesColor(eventSlave)}.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He}'s a confirmed sadist, so whatever ${his} favorite mental masturbation is probably quite strong.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Ask ${him} about ${his} fantasy`, fantasy), + new App.Events.Result(`Just fuck ${him}`, fuck), + ]); + + function fantasy() { + const frag = document.createDocumentFragment(); + r = []; + + const {hisU, heU} = getNonlocalPronouns(V.seeDicks).appendSuffix("U"); + + r.push(`You order ${him} to explain further.`); + r.push(Spoken(eventSlave, `"${Master},"`), `${he} ${say}s carefully,`, Spoken(eventSlave, `"it's ${V.arcadeName}. There's a specific place there, and, well, I can't describe it. It's in the service area under ${V.arcadeName}. Can I show you what I mean?"`)); + r.push(`Intrigued, you order ${him} to show you the place ${he}'s talking about, and lead ${him} to ${V.arcadeName} through the access hallway. ${He} points to the service tunnel under one of the rows of inmates, which allows trusted slaves to clean up and perform maintenance.`); + if (eventSlave.belly >= 100000 || eventSlave.weight > 160) { + r.push(`Once you've managed to shove the massive slut`); + } else if (eventSlave.belly >= 5000) { + r.push(`Once you've helped the`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`gravid`); + } else { + r.push(`bloated`); + } + r.push(`${girl} fit`); + } else { + r.push(`Once you've led ${him}`); + } + r.push(`in there, ${he} stops and`); + if (canSee(eventSlave)) { + r.push(`watches`); + } else { + r.push(`listens`); + } + if (V.PC.belly >= 100000 || V.PC.weight > 130) { + r.push(r.pop() + `as you struggle to join ${him} in the increasingly cramped space.`); + } else if (V.PC.belly >= 5000) { + r.push(r.pop() + `as you gently slip your motherly body in after ${him}.`); + } else { + r.push(r.pop() + "."); + } + r.push(`Inside the industrial access corridor, above you both, is a row of bodies. The slaves' faces and hips are pressed against the apertures that present their holes to customers, but the rest of them is visible from here.`); + App.Events.addParagraph(frag, r); + r = []; + + r.push(`There is little noise; the slaves are closely restrained. Indeed, you have to look closely to see that they're being fucked at all. Here and there, though, there are signs. When someone fucks a slave's face, ${hisU} throat bulges, and ${heU} often gags and struggles a little within the restraints. When their`); + if (App.Entity.facilities.arcade.employees().some(s => s.vagina > 0)) { + r.push(`pussies`); + } else { + r.push(`assholes`); + } + r.push(`get fucked, there's also some involuntary struggling, and if the phallus being thrust into them is particularly large, a rhythmic bulging of their abdomens can be discerned.`); + if (V.arcadeUpgradeInjectors === 1) { + r.push(`The bodies frequently jerk as electrostimulation is applied to force them to tighten their holes.`); + } else if (V.arcadeUpgradeInjectors === 2) { + r.push(`The quiet hissing of the drug injectors adds a menacing undertone, and the bodies frequently jerk as electrostimulation is applied to force them to tighten their holes.`); + } + if (V.arcadeUpgradeCollectors === 1) { + r.push(`The pumping collectors attached to the slaves' breasts`); + if (App.Entity.facilities.arcade.employees().some(s => s.dick > 0)) { + r.push(`and cocks`); + } + r.push(`carry the white fluid away to be processed elsewhere.`); + } + r.push(`The overall effect is subtle, but powerful. There's a sense of total servitude, overlaid with a certain feeling, or perhaps even a scent, of mindless despair. There's no wonder ${eventSlave.slaveName} likes it; there's an infinite supply of uncomplicated human anguish here.`); + + App.Events.addParagraph(frag, r); + App.Events.addResponses(frag, [ // TODO: Why the fuck are you crawling around random access shafts? + (V.PC.belly < 5000 && eventSlave.belly < 5000) + ? new App.Events.Result(`Fuck ${him} here`, here) + : new App.Events.Result(null, null, `Fucking ${him} here would be interesting; unfortunately, there just isn't enough room for two mothers-to-be.`), + new App.Events.Result(`Teach ${him} about true sadism`, truShit), + ]); + return frag; + + function here() { + r = []; + + r.push(`You reach out for ${eventSlave.slaveName}, not taking your eyes off the mesmerizing sight above. ${He}'s enjoying the spectacle too, and is so aroused that your rough handling of ${his} breasts almost brings ${him} to an immediate orgasm.`); + if (eventSlave.nipples !== "fuckable") { + r.push(`Pinching`); + } else { + r.push(`Hooking`); + } + r.push(`${his} ${eventSlave.nipples} nipples to stop ${him} from getting off too soon, you`); + if (V.PC.dick === 0) { + r.push(`hug ${him} to your chest and start playing with ${his}`); + if (canDoVaginal(eventSlave)) { + r.push(`pussy,`); + seX(eventSlave, "vaginal", V.PC, "penetrative"); + } else if (eventSlave.dick > 0 && eventSlave.chastityPenis === 0) { + r.push(`dick,`); + } else { + r.push(`body,`); + } + r.push(`commanding ${him} to reach around and do the same for you.`); + seX(V.PC, "vaginal", eventSlave, "penetrative"); + } else if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) { + r.push(`pull ${him} up to the right height and slide your dick inside ${him}, keeping both of you on your feet so you can take ${him} standing.`); + r.push(VCheck.Vaginal(eventSlave, 1)); + } else if (canDoAnal(eventSlave) && eventSlave.anus > 0) { + r.push(`shove your cock roughly up ${his} asshole, letting ${him} struggle a little as ${he} finds the right angle to take standing anal here.`); + r.push(VCheck.Anal(eventSlave, 1)); + } else { + r.push(`slide your stiff prick up between the virgin's thighs for some intercrural sex.`); + } + if (eventSlave.belly >= 5000 || V.PC.belly >= 5000 || V.PC.weight > 160 || V.PC.boobs > 40000 || V.PC.butt > 10 || eventSlave.weight > 160 || eventSlave.boobs > 40000 || eventSlave.butt > 10) { + r.push(`As you fuck in the cramped corridor, ${his}`); + } else { + r.push(`As you fuck, ${his}`); + } + if (canSee(eventSlave)) { + r.push(`gaze flicks up and down along the row`); + } else { + r.push(`ears perk up at the subtle sounds`); + } + r.push(`of suffering bodies. ${He} climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of ${hisU} defenseless holes. By the time you're satisfied, ${he}'s so exhausted that ${his} legs are trembling uncontrollably as ${he} struggles to remain standing with you. You drop ${him}, leaving ${him} to find ${his} own way out of this place. You look back from the entrance, seeing that ${he}'s`); + if (canWalk(eventSlave)) { + r.push(`following you on shaky legs,`); + } else { + r.push(`steadily pushing ${himself} along,`); + } + if (canSee(eventSlave)) { + r.push(`staring at`); + } else { + r.push(`facing`); + } + r.push(`you with a profound look of mixed <span class="trust inc">trust for your understanding of ${his} horrible sadism,</span> and deep unease that this is what truly gets ${him} off.`); + eventSlave.trust += 5; + return r; + } + + function truShit() { + r = []; + const randomArcadeSlave = App.Entity.facilities.arcade.employees().random(); + const {he2, His2, his2} = getPronouns(randomArcadeSlave).appendSuffix("2"); + // replace slave art + $(artDiv).empty(); + App.Events.drawEventArt(artDiv, [eventSlave, randomArcadeSlave], [eventSlave.clothes, "no clothing"]); + + r.push(`${He} seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with ${him}. You call ${his} name, tearing ${his} attention away from the spectacle mere`); + if (V.showInches === 2) { + r.push(`inches`); + } else { + r.push(`centimeters`); + } + r.push(`over your heads, and`); + if (canSee(eventSlave)) { + r.push(`point`); + } else { + r.push(`direct ${him}`); + } + r.push(`to a particular slave. You tell ${eventSlave.slaveName} that this particular Arcade inmate's name is ${SlaveFullName(randomArcadeSlave)}.`); + if (randomArcadeSlave.career !== 0) { + r.push(`You tell ${him} that ${he2} is ${randomArcadeSlave.actualAge} years old, that ${he2} is ${randomArcadeSlave.nationality}, and that ${he2} was once ${convertCareer(randomArcadeSlave)}.`); + } else { + r.push(`You tell ${him} that ${he2} is ${randomArcadeSlave.actualAge} years old and ${randomArcadeSlave.nationality}.`); + } + r.push(`You list more details of ${his2} life before ${he2} was placed here to be fucked endlessly. ${eventSlave.slaveName}'s eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into ${him}. Then the slave above you both jerks a little.`); + if (eventSlave.dick === 0) { + r.push(`There's no visible sign ${his2} pussy's being fucked, so it must be`); + } else { + r.push(`${His2} cock hardens involuntarily, indicating that it's`); + } + r.push(`going into ${his2} ass. You resume, mentioning that ${he2}'s been buttfucked ${randomArcadeSlave.counter.anal} times.`); + r.push(`${eventSlave.slaveName} jerks suddenly,`); + if (canAchieveErection(eventSlave)) { + r.push(`shooting ${his} cum onto the floor.`); + } else if (eventSlave.dick > 0) { + r.push(`dribbling a little.`); + } else if (eventSlave.vaginaLube > 0 || eventSlave.balls > 0) { + r.push(`squirting onto the floor.`); + } else { + r.push(`orgasming.`); + } + r.push(`${He} came without being touched. ${He}`); + if (canSee(eventSlave)) { + r.push(`stares at`); + } else { + r.push(`faces`); + } + r.push(`the mess ${he} made just by being in the presence of the arcology's <span class="devotion inc">undisputed preeminent sadist;</span> ${he} shudders at the sheer gothic glory of it. ${He} has a new moment to think of when ${he} feels like <span class="fetish inc">indulging ${his} own sadism.</span>`); + eventSlave.devotion += 5; + eventSlave.fetishStrength = Math.clamp(eventSlave.fetishStrength + 10, 0, 100); + return r; + } + } + + function fuck() { + r = []; + + r.push(`You're not particularly interested in what ${he} dreams about when ${he} gets the chance, and you tell ${him} so. Whatever sadistic little fantasies ${he} keeps locked away to bring out when ${he}'s got a moment to satiate ${his} perversions is less interesting to you than the prospect of`); + if (V.PC.dick === 0) { + r.push(`${his} mouth on your cunt. So, you shove ${him} down to sit on the couch and straddle ${his} face, cutting off any further whimsies by pressing your wet pussy against ${his} lips. ${He} eats you out obediently, accepting`); + seX(eventSlave, "oral", V.PC, "vaginal"); + } else if (canDoVaginal(eventSlave) && (eventSlave.vagina > 0)) { + r.push(`giving it to ${him}. So, you shove ${him} down to sit on the couch, nudge ${his} legs apart, kneel between them, and pound ${his} pussy. You fuck ${him} so hard that ${he} doesn't have the attention for further whimsies, and ${he} accepts`); + r.push(VCheck.Vaginal(eventSlave, 1)); + } else if (canDoAnal(eventSlave) && (eventSlave.anus > 0)) { + r.push(`fucking ${his} butt. So, you shove ${him} down to`); + if (hasAnyLegs(eventSlave)) { + r.push(`kneel`); + } else { + r.push(`get`); + } + r.push(`on the couch facing away from you, and ram your cock up ${his} asshole. You assfuck ${him} so hard that ${he} doesn't have the attention for further whimsies, and ${he} accepts`); + r.push(VCheck.Anal(eventSlave, 1)); + } else { + r.push(`${him} sucking your dick. So, you shove ${him} down to sit on the couch and give ${him} your cock to keep ${his} mouth occupied, cutting off any further whimsies. ${He} blows you obediently, accepting`); + seX(eventSlave, "oral", V.PC, "penetrative"); + } + r.push(`the implicit message that <span class="devotion inc">${he}'s your slut</span> in the real world, whatever thoughts ${he} may find appealing in the privacy of ${his} own mind.`); + eventSlave.devotion += 3; + return r; + } + } +}; diff --git a/src/events/RESS/assFitting.js b/src/events/RESS/assFitting.js index c86a7a4ba39842bca5a192b61309ff09f04078a6..299bb57e90bf5adc4468657ca443ded752f8c506 100644 --- a/src/events/RESS/assFitting.js +++ b/src/events/RESS/assFitting.js @@ -7,7 +7,7 @@ App.Events.RESSAssFitting = class RESSAssFitting extends App.Events.BaseEvent { return [ [ // single event slave s => s.fetish !== "mindbroken", - s => s.assignment !== "work as a servant", + s => s.assignment !== Job.QUARTER, s => s.devotion > 20, s => s.butt > 5, s => ["a bimbo outfit", "a biyelgee costume", "a bunny outfit", "a burkini", "a cheerleader outfit", "a comfortable bodysuit", "a dirndl", "a fallen nuns habit", "a huipil", "a latex catsuit", "a leotard", "a long qipao", "a maternity dress", "a military uniform", "a monokini", "a mounty outfit", "a nice nurse outfit", "a red army uniform", "a scalemail bikini", "a schoolgirl outfit", "a schutzstaffel uniform", "a slutty nurse outfit", "a slutty outfit", "a slutty qipao", "a slutty schutzstaffel uniform", "a succubus outfit", "attractive lingerie for a pregnant woman", "attractive lingerie", "battlearmor", "chains", "clubslut netting", "conservative clothing", "cutoffs and a t-shirt", "kitty lingerie", "lederhosen", "nice business attire", "overalls", "restrictive latex", "striped panties", "slutty business attire", "slutty jewelry", "spats and a tank top", "stretch pants and a crop-top", "uncomfortable straps", "Western clothing", "Imperial Plate", "a tight Imperial bodysuit"].includes(s.clothes), diff --git a/src/events/RESS/bedSnuggle.js b/src/events/RESS/bedSnuggle.js new file mode 100644 index 0000000000000000000000000000000000000000..97119374f94efb646b7fbbab30255dee85be80b5 --- /dev/null +++ b/src/events/RESS/bedSnuggle.js @@ -0,0 +1,464 @@ + +App.Events.RESSBedSnuggle = class RESSBedSnuggle extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + s => [Job.CONCUBINE, Job.FUCKTOY, Job.MASTERSUITE].includes(s.assignment), + s => s.devotion > 50, + s => s.trust > 50, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + He, he, His, his, him, woman, girl, himself + } = getPronouns(eventSlave); + const {say} = getEnunciation(eventSlave); + const {hisA, girlA, womanA, loliA} = getPronouns(assistant.pronouns().main).appendSuffix('A'); + const belly = bellyAdjective(eventSlave); + + let womanTerm = "kid"; + if (eventSlave.physicalAge > 30) { + womanTerm = woman; + } else if (eventSlave.physicalAge > 18) { + womanTerm = girl; + } else if (eventSlave.physicalAge > 12) { + womanTerm = "teen"; + } + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave, "no clothing"); + + + let r = []; + r.push(`${capFirstChar(V.assistant.name)} wakes you in the morning,`); + if (V.assistant.personality <= 0) { + r.push(`${hisA} voice`); + } else { + switch (V.assistant.appearance) { + case "monstergirl": + r.push(`${hisA} monster${girlA} avatar's sultry voice`); + break; + case "shemale": + r.push(`${hisA} shemale avatar's syrupy voice`); + break; + case "amazon": + r.push(`${hisA} amazon avatar's powerful voice`); + break; + case "businesswoman": + r.push(`${hisA} business${womanA} avatar's confident voice`); + break; + case "fairy": + case "pregnant fairy": + r.push(`${hisA} fairy avatar's adorable voice`); + break; + case "schoolgirl": + r.push(`${hisA} school${girlA} avatar's bubbly voice`); + break; + case "loli": + case "preggololi": + r.push(`${hisA} ${loliA} avatar's childish voice`); + break; + case "angel": + r.push(`${hisA} angel avatar's heavenly voice`); + break; + case "cherub": + r.push(`${hisA} cherub avatar's cheerful voice`); + break; + case "incubus": + r.push(`${hisA} incubus avatar's forceful voice`); + break; + case "succubus": + r.push(`${hisA} succubus avatar's sultry voice`); + break; + case "imp": + r.push(`${hisA} imp avatar's mischievous voice`); + break; + case "witch": + r.push(`${hisA} witch avatar's cocky voice`); + break; + case "ERROR_1606_APPEARANCE_FILE_CORRUPT": + r.push(`${hisA} avatar's piecemeal voice`); + break; + default: + r.push(`${hisA} voice`); + } + } + r.push(`gently calling your name. As you regain consciousness, you become aware of a weight on your`); + if (V.PC.boobs >= 1400) { + r.push(`chest other than your heavy tits.`); + } else { + r.push("chest."); + } + r.push(contextualIntro(V.PC, eventSlave, "DOM")); + r.push(`has snuggled up against you in ${his} sleep. ${He}'s nude, and so are you; everyone sleeps naked in your penthouse. The sheet is down at your hips, leaving your upper bodies bare.`); + if (!hasAnyArms(eventSlave)) { + r.push(`${He}'s wormed ${his}`); + if (isAmputee(eventSlave)) { + r.push(`limbless`); + } else { + r.push(`armless`); + } + r.push(`torso under your arm,`); + } else { + r.push(`${He} has one arm across your`); + if (V.PC.boobs >= 300) { + r.push(`chest, just below your breasts,`); + } else if (V.PC.title === 1) { + r.push(`manly chest`); + } else { + r.push(`flat chest,`); + } + } + r.push(`and is using your shoulder as a pillow. You can feel ${his} warm breath across`); + if (V.PC.boobs >= 300 || V.PC.title === 0) { + r.push(`your nipple on that side, and it hardens slowly under your gaze.`); + } else { + r.push(`your well-developed pectorals.`); + } + if (eventSlave.boobs > 4000) { + r.push(`${His} incredible tits are resting to either side of your ribcage, with one of them a heavy mass on your chest and the other trapped under ${his}`); + } else if (eventSlave.boobs > 1200) { + r.push(`${His} big boobs form a warm, soft mass between you`); + } else { + r.push(`${His} soft chest rests warmly against your ribcage`); + } + if (eventSlave.belly >= 10000) { + r.push(r.pop() + `, beneath them, ${his} ${belly}`); + if (eventSlave.bellyPreg >= 8000) { + r.push(r.pop() + `pregnant`); + } + r.push(`belly rests`); + if (V.PC.belly >= 1500) { + r.push(`against your own baby bump,`); + } else { + r.push(`upon your flat stomach,`); + } + } + r.push(`and farther down, there's another source of warmth where ${he}'s`); + if (!hasAnyLegs(eventSlave)) { + r.push(`got ${his} legless pelvis resting against your ${eventSlave.height <= V.PC.height ? "hip" : "thigh"}.`); + } else { + r.push(`straddling your thigh.`); + } + App.Events.addParagraph(node, r); + r = []; + + r.push(`"${properTitle()}," ${V.assistant.name} calls again, "you`); + if (V.assistant.personality <= 0) { + r.push(`set a wake-up for this time.`); + } else { + r.push(`asked me to wake you at this time.`); + } + r.push(`You have a business meeting that starts shortly." You begin to slide out from under ${eventSlave.slaveName}, but the ${womanTerm} clings to you in ${his} sleep as the warmth of your body begins to move away from ${him}.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result("Make the meeting", meeting), + new App.Events.Result("Call in from where you are", call), + new App.Events.Result("Go back to sleep", sleep), + new App.Events.Result("Spend the day in bed", bed), + ]); + + function meeting() { + r = []; + + let meetingBonus = Math.trunc(V.cash / 10000 * 1000); + if (meetingBonus > 5000) { + meetingBonus = 5000; + } else if (meetingBonus < 1000) { + meetingBonus = 1000; + } + r.push(`You finish the motion and get on with your day. ${He} burrows into the warm place on the bed where your body lay, which is actually an excellent sign of ${his} mental state. It suggests that ${his} dreaming mind is quite comfortable with your`); + if (canSmell(eventSlave)) { + r.push(`presence, and even smell.`); + } else { + r.push(`presence.`); + } + r.push(`You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to`); + if (V.PC.dick !== 0) { + r.push(`stick your dick in`); + } else { + r.push(`have sex with`); + } + r.push(`${eventSlave.slaveName}. The business opportunity turns out to be <span class="cash inc">quite profitable;</span> you're glad you didn't pass it up.`); + cashX(meetingBonus, "event", eventSlave); + return r; + } + + function call() { + r = []; + + let meetingBonus = Math.trunc(V.cash / 10000) * 1000; + if (meetingBonus > 5000) { + meetingBonus = 5000; + } else if (meetingBonus < 1000) { + meetingBonus = 1000; + } + r.push(`You tell ${V.assistant.name} to inform your business contacts that you'll be attending the meeting by telepresence. A camera mounted above you focuses tightly on your face, making it look like you're relaxing, but concealing the fact that you have a naked ${womanTerm} draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once ${he} wakes up and starts sleepily`); + if (V.PC.dick !== 0) { + r.push(`sucking your dick`); + if (V.PC.vagina !== -1) { + r.push(`and`); + } + seX(eventSlave, "oral", V.PC, "penetrative"); + } + if (V.PC.vagina !== -1) { + r.push(`eating you out`); + seX(eventSlave, "oral", V.PC, "vaginal"); + } + r.push(r.pop() + `, out of frame. They're <span class="reputation dec">slightly annoyed,</span> since having sex during meetings is still considered a minor faux pas, but you <span class="cash inc">close the deal,</span> and ${eventSlave.slaveName} is <span class="devotion inc">very pleased</span> that you would rearrange your affairs to make time for`); + if (V.PC.dick !== 0) { + r.push(`one of ${his} blowjobs.`); + } else { + r.push(`oral sex with ${him}.`); + } + + cashX(meetingBonus, "event", eventSlave); + repX(forceNeg(50), "event", eventSlave); + eventSlave.devotion += 4; + return r; + } + + function sleep() { + r = []; + const frag = document.createDocumentFragment(); + let didAnal = false; + let didVaginal = false; + + r.push(`You tell ${V.assistant.name} to cancel the appointment, plant a kiss atop your bedmate's sleeping head, and go back to sleep yourself, with the peerless comfort of a warm, naked ${womanTerm} cuddled up beside you. ${capFirstChar(V.assistant.name)} lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and ${eventSlave.slaveName}. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. ${He} woke before you did, but remained still to avoid disturbing you.`); + if (canSee(eventSlave)) { + r.push(`From the lazy, contented look in ${his} ${App.Desc.eyesColor(eventSlave)} as ${he} meets your waking gaze, ${he} did not mind waiting. <span class="devotion inc">${He} was already looking at your face when you opened your eyes.</span>`); + } else { + r.push(`From the serene expression on ${his} face as ${he} meets your waking gaze, ${he} did not mind waiting. <span class="devotion inc">${He} was already looking at your face, lost in the soothing ${canHear(eventSlave) ? "sounds" : "motions"} of your breathing, when you opened your eyes.</span>`); + } + App.Events.addParagraph(frag, r); + r = []; + + r.push(`Since you're awake, ${he} rolls onto ${his} face and then further, to place ${his} back and`); + if (eventSlave.butt > 5) { + r.push(`massive ass`); + } else if (eventSlave.butt > 2) { + r.push(`healthy rear`); + } else { + r.push(`butt`); + } + r.push(`against you, making sure to drag ${his} ${eventSlave.nipples} nipples against you the whole way. You accept the invitation and spoon ${him},`); + // PC height stuff here! + if (eventSlave.height >= 185) { + r.push(`your bodies lining up well, since ${he}'s as tall as you are.`); + } else if (eventSlave.height >= 160) { + r.push(`${his} body fitting neatly within the embrace of your larger frame.`); + } else { + r.push(`${his} small body fitting entirely within your embrace.`); + } + if (eventSlave.muscles > 30) { + r.push(`${His} muscles`); + } else { + r.push(`${His} softness`); + } + r.push(`and warmth awaken your desire, and ${he} feels`); + if (V.PC.dick !== 0) { + r.push(`your stiffening cock beginning to press against`); + if (!hasBothLegs(eventSlave)) { + r.push(`${his} perineum. ${He} shifts to slide ${himself} along its`); + if (V.PC.vagina !== -1) { + r.push(`shaft and down to where your pussy begins.`); + } else { + r.push("shaft."); + } + } else { + r.push(`the place between ${his} thighs. ${He} shifts to let your dick slide between them, and reaches down to massage its head.`); + } + } else { + r.push(`heat building against ${his} butt.`); + if (!hasAnyArms(eventSlave)) { + r.push(`${He} does ${his} best to grind against you, since ${he} can't caress you without hands.`); + } else { + r.push(`${He} snakes a hand behind ${himself} to caress your womanhood, and begins to gently`); + if (hasBothArms(eventSlave)) { + r.push(`masturbate with the other.`); + } else { + r.push(`grind against you.`); + } + } + } + if (V.PC.dick !== 0) { + if (eventSlave.vagina > 0 && eventSlave.anus > 0 && canDoVaginal(eventSlave) && canDoAnal(eventSlave)) { + r.push(`${He} begins to shift farther forward and back along your dick, causing its head to press against ${his} anus and then slide forward to nestle between ${his} pussylips. In response to ${his} wordless question, you nibble ${his} ear and tell ${him} that it's ${his} choice. ${He} turns ${his} upper torso to`); + if (canSee(eventSlave)) { + r.push(`stare at you in surprise`); + } else { + r.push(`so that you may see ${his} surprise`); + } + r.push(`for a moment, and then smiles and gives you a peck on the cheek.`); + if ((eventSlave.fetish === "buttslut") && (eventSlave.fetishKnown === 1)) { + r.push(`${He} hikes ${himself} up a bit, and then slides ${his} anal sphincter slowly around and down your cock until you're resting all the way up ${his} ass. You share loving anal`); + didAnal = true; + } else { + r.push(`${He} hikes ${himself} up to give your dickhead a last teasing press against ${his} butt before cocking ${his} hips and sliding your cock into ${his} soaking cunt. You make love`); + didVaginal = true; + } + } else if (eventSlave.vagina > 0 && canDoVaginal(eventSlave)) { + r.push(`${He} cocks ${his} hips and so that your cock is pressing against ${his} soaked cunt. In response to ${his} wordless question, you nibble ${his} ear and tell ${him} that it's ${his} choice. ${He} turns ${his} upper torso to`); + if (canSee(eventSlave)) { + r.push(`stare at you in surprise`); + } else { + r.push(`so that you may see ${his} surprise`); + } + r.push(`for a moment, and then smiles and gives you a peck on the cheek.`); + if (eventSlave.fetish === "pregnancy" && eventSlave.fetishKnown === 1 && isFertile(eventSlave)) { + r.push(`${He} pushes against you until you are fully inserted into ${his} pussy. ${He}'s ripe for impregnation and needs your baby in ${him}. You make love`); + } else if (eventSlave.vagina > 2) { + r.push(`${He} easily slides your cock into ${his} loose pussy. You make love`); + } else { + r.push(`${He} hikes ${himself} up a bit, and then gently slides your cock into ${his} tight pussy. You make love`); + } + didVaginal = true; + } else if (eventSlave.anus > 0 && canDoAnal(eventSlave)) { + r.push(`${He} begins to shift farther forward along your dick, causing its head to press against ${his} anus. In response to ${his} wordless question, you nibble ${his} ear and tell ${him} that it's ${his} choice. ${He} turns ${his} upper torso to`); + if (canSee(eventSlave)) { + r.push(`stare at you in surprise`); + } else { + r.push(`so that you may see ${his} surprise`); + } + r.push(`for a moment, and then smiles and gives you a peck on the cheek.`); + if (eventSlave.fetish === "buttslut" && eventSlave.fetishKnown === 1) { + r.push(`${He} hikes ${himself} up a bit, and then slides ${his} anal sphincter slowly around and down your cock until you're resting all the way up ${his} ass. You share loving anal`); + didAnal = true; + } else if (eventSlave.anus > 2) { + r.push(`${He} hikes ${himself} up a bit, and then easily slides your cock into ${his} loose rectum. You share loving anal`); + didAnal = true; + } else { + r.push(`${He} decides against buttsex, and`); + if (!hasBothLegs(eventSlave)) { + r.push(`contents ${himself} with grinding`); + } else { + r.push(`presses ${his} thighs together so you can frot ${him}.`); + } + r.push(`After making love`); + } + } else { + r.push(`You`); + if (!hasBothLegs(eventSlave)) { + r.push(`grind against ${him}`); + } else { + r.push(`frot ${him}`); + } + } + } else { + r.push(`You reach around ${him} and attend to a nipple with each hand, spreading your attention to the whole breast once`); + if (eventSlave.nipples !== "fuckable") { + r.push(`they're perfectly stiff.`); + } else { + r.push(`they've tightened around your fingers.`); + } + r.push(`After sharing gentle lovemaking`); + } + r.push(`for a while, until you sense that ${he}'s on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down ${his} front and`); + if (eventSlave.dick > 0) { + r.push(`right onto ${his} cock.`); + } else { + r.push(`across ${him}`); + if (eventSlave.nipples !== "fuckable") { + r.push(`hard`); + } else { + r.push(`engorged`); + } + r.push(`nipples.`); + } + r.push(`${He} gasps at the sudden overstimulation and then orgasms very strongly, jerking against you`); + if (!canTalk(eventSlave)) { + r.push(`and panting in lieu of an exclamation.`); + } else { + r.push(`and ${say}ing "oh" over and over again.`); + } + if (V.PC.dick !== 0) { + r.push(`${He} clenches against your dick,`); + if (V.PC.vagina !== -1) { + r.push(`so hard that you can feel the rush of blood into your cunt,`); + } + } else { + r.push(`${He} works your pussy harder,`); + } + r.push(`getting you off in turn, and then rolls over to plant a whole-hearted kiss on your lips.`); + eventSlave.devotion += 4; + if (didAnal) { + r.push(VCheck.Anal(eventSlave, 1)); + } else if (didVaginal) { + r.push(VCheck.Vaginal(eventSlave, 1)); + } + App.Events.addParagraph(frag, r); + return frag; + } + + function bed() { + r = []; + let didAnal = false; + let didVaginal = false; + + r.push(`What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell ${V.assistant.name} to cancel the appointment. Then, you wake your bedmate, and`); + if (V.PC.dick !== 0) { + r.push(`get a blowjob`); + seX(eventSlave, "oral", V.PC, "penetrative"); + if (V.PC.vagina !== -1) { + r.push(`and some attention for your pussy`); + seX(eventSlave, "oral", V.PC, "vaginal"); + } + } else { + r.push(`have ${him} eat you out`); + seX(eventSlave, "oral", V.PC, "vaginal"); + } + r.push(`under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've`); + if (V.PC.dick !== 0) { + r.push(`shot your load down ${his} throat,`); + } else { + r.push(`climaxed twice,`); + } + r.push(`you pull the bemused ${girl} up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask ${him} if there's anything ${he}'d like to`); + if (canSee(eventSlave)) { + r.push(`watch.`); + } else if (canHear(eventSlave)) { + r.push(`listen to.`); + } else { + r.push(`put on.`); + } + r.push(`${He} smiles incredulously, but after you encourage ${him} ${he} <span class="trust inc">finds ${his} confidence</span> and admits that there's a Free Cities serial drama about slave life that ${he} enjoys. You put it on and watch three episodes with ${him}. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. ${eventSlave.slaveName} cuddles comfortably with you the entire time,`); + if (canSee(eventSlave)) { + r.push(`watching raptly`); + } else if (canHear(eventSlave)) { + r.push(`listening intently`); + } else { + r.push(`enjoying your company`); + } + r.push(`and doing ${his} best to explain the wretchedly trite plot you've missed. You have a meal delivered,`); + if (eventSlave.vagina > 0 && canDoVaginal(eventSlave)) { + r.push(`fuck ${him},`); + didVaginal = true; + } else if (eventSlave.anus > 0 && canDoAnal(eventSlave)) { + r.push(`fuck ${his} butt,`); + didAnal = true; + } else { + r.push(`fuck ${him},`); + seX(eventSlave, "oral", V.PC, "penetrative"); + } + r.push(`and then share a shower and a nap. Thus invigorated, you decide to tour the arcology's nightlife, and tell ${him} ${he}'ll accompany you. ${He} hurries to get ready, filled with excitement. A lovely day.`); + eventSlave.trust += 4; + if (didAnal) { + r.push(VCheck.Anal(eventSlave, 1)); + } else if (didVaginal) { + r.push(VCheck.Vaginal(eventSlave, 1)); + } + return r; + } + } +}; diff --git a/src/events/RESS/bondageGear.js b/src/events/RESS/bondageGear.js new file mode 100644 index 0000000000000000000000000000000000000000..104173930bc9ffe0673416c5d9f00984991cb88e --- /dev/null +++ b/src/events/RESS/bondageGear.js @@ -0,0 +1,213 @@ +App.Events.RESSBondageGear = class RESSBondageGear extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + s => s.devotion < -20, + s => s.trust >= -20, + s => s.clothes === "uncomfortable straps", + canMove, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const {He, he, His, his, him, himself} = getPronouns(eventSlave); + const {title: Master, say} = getEnunciation(eventSlave); + const belly = bellyAdjective(eventSlave); + const hands = hasBothArms(eventSlave) ? "hands" : "hand"; + App.Events.drawEventArt(node, eventSlave, "no clothing"); + + V.nextLink = "Next Week"; + + let t = []; + t.push(`One day, you catch sight of`); + t.push(contextualIntro(V.PC, eventSlave, "DOM")); + if (!canWalk(eventSlave)) { + t.push(`crawling`); + } else if (shoeHeelCategory(eventSlave) > 1) { + t.push(`tottering`); + } else if (eventSlave.belly >= 10000) { + t.push(`waddling`); + } else { + t.push(`walking`); + } + t.push(`around stark naked. This is unacceptable, as ${he} has been ordered to wear humiliating and uncomfortable bondage gear. When confronted,`); + if (!canTalk(eventSlave)) { + if (!hasAnyArms(eventSlave)) { + t.push(`${he} tries to communicate ${his} reluctance to wear the clothing as best as ${he} can with various head movements and facial`); + if (eventSlave.bellyPreg >= 5000) { + t.push(`expressions, including several nods towards ${his} rounded middle.`); + } else { + t.push("expressions."); + } + } else { + t.push(`${he} uses gestures to communicate ${his} embarrassment with ${his} clothing, covering ${his} nipples, crotch, and anus with ${his} ${hands} one after the other, and begging for clothes that do the same.`); + if (eventSlave.bellyPreg >= 5000) { + t.push(`${He} also gestures to ${his} rounded belly with a look of concern.`); + } + } + } else { + t.push(`${he} ${say}s fearfully,`); + if (eventSlave.bellyPreg >= 5000) { + t.push(Spoken(eventSlave, `"I'm sorry, ${Master}, but those things are just so embarrassing! I'm also worried for my ${eventSlave.pregType > 1 ? "babies'" : "baby's"} safety."`)); + } else { + t.push(Spoken(eventSlave, `"I'm sorry, ${Master}, but those things are just so embarrassing!"`)); + } + } + + App.Events.addParagraph(node, t); + App.Events.addResponses(node, [ + new App.Events.Result(`Let ${him} go naked`, naked), + new App.Events.Result(`Force ${him} to choose between ${his} straps and public nudity`, publicNude), + (eventSlave.buttplug === "none" && (eventSlave.vagina < 0 || (eventSlave.vaginalAccessory === "none" && eventSlave.vaginalAttachment === "none"))) + ? new App.Events.Result(`Add dildos to ${his} gear`, dildos, (eventSlave.anus === 0 && canDoAnal(eventSlave)) || (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) ? `This option will take ${his} virginity` : null) + : new App.Events.Result(), + (V.arcade > 0) + ? new App.Events.Result(`Sentence ${him} to a month in the arcade`, arcade) + : new App.Events.Result(), + + ]); + + function naked() { + t = []; + if (!canWalk(eventSlave)) { + t.push(`${He} cheerfully leaves your office,`); + } else { + t.push(`${He} skips away happily,`); + } + t.push(`overjoyed to be free of the clothing you ordered ${him} to wear. ${His} obedience to you <span class="devotion dec">has decreased,</span> as has <span class="trust inc">${his} fear</span> of you.`); + eventSlave.devotion -= 5; + eventSlave.trust += 4; + return t; + } + + function publicNude() { + t = []; + t.push(`You tell ${him} that you understand, and that ${he} can go naked; ${he} looks thrilled until you ${canHear(eventSlave) ? "tell" : "inform"} ${him} ${he}'ll be ${canWalk(eventSlave) ? "walking" : `dragging ${himself} down`} every hallway in ${V.arcologies[0].name} today, nude. Before ${he} can protest, you add that ${his} only other option is to put ${his} proper clothes back on and be a good little bitch.`); + if (eventSlave.fetish === "humiliation") { + t.push(`${He} <span class="devotion inc">happily accepts the alternative,</span>`); + if (canAchieveErection(eventSlave) && !(eventSlave.chastityPenis)) { + t.push(`${his} dick hardening`); + } else if (eventSlave.dick > 0) { + t.push(`${his} dick leaking precum`); + } else if (eventSlave.vagina > 0) { + t.push(`${his} pussy moistening`); + } else { + t.push(`${his} nipples`); + if (eventSlave.nipples !== "fuckable") { + t.push(`hardening`); + } else { + t.push(`swelling`); + } + } + t.push(`with anticipation.`); + eventSlave.devotion += 4; + eventSlave.clothes = "no clothing"; + if (eventSlave.fetishKnown === 0) { + t.push(`That was not the response you expected; turns out ${he} has a <span class="fetish gain">humiliation fetish.</span>`); + eventSlave.fetishKnown = 1; + } + } else { + t.push(`${He} shudders and <span class="trust dec">hurries to get ${his} straps back on.</span>`); + eventSlave.trust -= 5; + } + return t; + } + + function dildos() { + t = []; + t.push(`You tell ${him} that you understand, and that you will get ${him} some new clothing. ${He} is thrilled, but ${his} pleasure turns to horror when ${he} ${canSee(eventSlave) ? "sees" : "finds"} that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for ${his}`); + if (eventSlave.vagina > -1) { + t.push(`pussy and`); + } + t.push(`asshole.`); + if (eventSlave.anus === 0 && eventSlave.vagina === 0 && canDoAnal(eventSlave) && canDoVaginal(eventSlave)) { + t.push(`You pause before getting ${him} dressed; there's little reason to waste virginities on plugs. You`); + if (V.PC.dick !== 0) { + t.push(`stroke yourself to erection`); + } else { + t.push(`don a strap-on`); + } + t.push(`and bend ${him} over, opting to start with ${his} tight pussy.`); + t.push(VCheck.Both(eventSlave, 1)); + } else if (eventSlave.anus === 0 && canDoAnal(eventSlave)) { + t.push(`You pause before getting ${him} dressed; there's little reason to waste ${his} anal virginity on a plug. You `); + if (V.PC.dick !== 0) { + t.push(`stroke yourself to erection`); + } else { + t.push(`don a strap-on`); + } + t.push(`and bend ${him} over before working your way into ${his} tight anus.`); + t.push(VCheck.Anal(eventSlave, 1)); + } else if (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) { + t.push(`You pause before getting ${him} dressed; there's little reason to waste ${his} virginity on a plug. You`); + if (V.PC.dick !== 0) { + t.push(`stroke yourself to erection`); + } else { + t.push(`don a strap-on`); + } + t.push(` and bend ${him} over before working your way into ${his} tight pussy.`); + t.push(VCheck.Vaginal(eventSlave, 1)); + } + t.push(`For the rest of the week, ${he} ${canWalk(eventSlave) ? "walks" : "crawls"} around awkwardly, unable to find a comfortable position`); + if (eventSlave.belly >= 1500) { + t.push(`between`); + } else { + t.push(`since`); + } + t.push(`${his}`); + if (V.seeRace === 1) { + t.push(`${eventSlave.race}`); + } + t.push(`body`); + if (eventSlave.belly < 1500) { + t.push(`is`); + } + if (eventSlave.belly >= 1500) { + t.push(`being penetrated by ${his} own clothing and the straps digging into ${his} ${belly} rounded belly`); + } else { + t.push(`being penetrated by ${his} own clothing.`); + } + t.push(`<span class="devotion inc">${He} has become more submissive.</span>`); + eventSlave.devotion += 4; + return t; + } + + function arcade() { + t = []; + t.push(`${eventSlave.slaveName} ${canTalk(eventSlave) ? "screams and " : ""}begs when ${he} realizes what ${his} punishment is, but you are obdurate.`); + if (eventSlave.muscles > 30) { + t.push(`${His} powerful form has to be sedated for immurement in the arcade.`); + } else if ((eventSlave.weight >= 190)) { + t.push(`${He} is so massively fat that immuring ${him} in the arcade is a struggle, even when ${he} isn't trying to.`); + } else if (eventSlave.belly >= 120000) { + t.push(`${He} is so enormously gravid that immuring ${him} in the arcade is a hassle, even though ${his} ${belly} middle limits ${his} ability to struggle.`); + } else if ((eventSlave.weight >= -10)) { + t.push(`${His} desperate struggles make immuring ${him} in the arcade difficult.`); + } else if (eventSlave.belly >= 1500) { + t.push(`${His}`); + if (eventSlave.bellyPreg >= 3000) { + t.push(`pregnant`); + } else { + t.push(belly); + } + t.push(`body makes it slightly difficult to fit ${him} properly into the restraints for immurement in the arcade.`); + } else if (eventSlave.muscles < -15) { + t.push(`${His} weak body makes immuring ${him} in the arcade pathetically easy.`); + } else { + t.push(`${His} thin form makes immuring ${him} in the arcade pathetically easy.`); + } + t.push(`After ${he}'s properly confined, the only sign of ${his} discomfiture is a slight movement of ${his} ${eventSlave.skin} butt as ${he} wriggles desperately against ${his} restraints.`); + assignJob(eventSlave, "be confined in the arcade"); + eventSlave.sentence = 4; + return t; + } + } +}; diff --git a/src/events/RESS/forbiddenMasturbation.js b/src/events/RESS/forbiddenMasturbation.js new file mode 100644 index 0000000000000000000000000000000000000000..01b1eb45bb8ab2266f250f702ea4c70cb73bc704 --- /dev/null +++ b/src/events/RESS/forbiddenMasturbation.js @@ -0,0 +1,604 @@ +App.Events.RESSForbiddenMasturbation = class RESSForbiddenMasturbation extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + s => s.rules.release.masturbation === 0, + s => !App.Utils.hasNonassignmentSex(s), + s => s.need > 0, + s => s.devotion <= 95, + s => s.trust >= -20, + s => (s.chastityPenis !== 1 || s.dick === 0), + hasAnyArms, + hasAnyLegs, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + He, he, His, his, him, himself + } = getPronouns(eventSlave); + const {title: Master} = getEnunciation(eventSlave); + const {hisA, himselfA, HisA} = getPronouns(assistant.pronouns().main).appendSuffix('A'); + const bellyAdj = bellyAdjective(eventSlave); + const knees = hasBothLegs(eventSlave) ? "knees" : "knee"; + + let offHand = "nothing"; + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave); + + let r = []; + if (V.assistant.personality > 0) { + r.push(`There is an alert from ${V.assistant.name}, in ${hisA} deliciously feminine voice: "${properMaster()},`, contextualIntro(V.PC, eventSlave, "DOM"), `is masturbating. Ooh, ${he}'s breaking the rules, ${properMaster()}!" ${HisA} avatar`); + switch (V.assistant.appearance) { + case "monstergirl": + r.push(`strokes ${hisA} dicks suggestively.`); + break; + case "shemale": + r.push(`shifts uncomfortably, ${hisA} cock rock hard.`); + break; + case "amazon": + r.push(`struts back and forth indignantly, ${hisA} bone bangles rattling.`); + break; + case "businesswoman": + r.push(`licks ${hisA} cherry-red lips suggestively.`); + break; + case "fairy": + case "pregnant fairy": + r.push(`giggles uncontrollably.`); + break; + case "hypergoddess": + case "goddess": + r.push(`tutting disapprovingly, despite ${hisA} blushing.`); + break; + case "loli": + r.push(`stares innocently at the scene.`); + break; + case "preggololi": + r.push(`stares at the scene, blushing, while a hand caresses ${hisA} large belly.`); + break; + case "angel": + r.push(`is covering ${hisA} face, occasionally peeping through _hisA fingers.`); + break; + case "cherub": + r.push(`is trying ${hisA} hardest to look away, but keeps glancing back at the scene.`); + break; + case "incubus": + r.push(`is openly jacking off to the sight.`); + break; + case "succubus": + r.push(`is groping ${himselfA} to the sight.`); + break; + case "imp": + r.push(`is hovering while viciously fingering ${hisA} cunt.`); + break; + case "witch": + r.push(`is pretending to read from ${hisA} spell book, but is obviously watching over the top of it.`); + break; + case "ERROR_1606_APPEARANCE_FILE_CORRUPT": + r.push(`is mimicking ${hisA} actions nearly perfectly.`); + break; + case "schoolgirl": + r.push(`giggles nervously.`); + break; + default: + r.push(`spins accusingly.`); + } + } else { + r.push(`There is a gentle alert from ${V.assistant.name}: "${properMaster()},`, contextualIntro(V.PC, eventSlave, "DOM"), `is masturbating in violation of the rules."`); + } + r.push(`A video feed appears.`); + if (eventSlave.chastityVagina && eventSlave.chastityPenis === 1) { + r.push(`In ${his} combination chastity, all ${he} can manage is furious nipple-${eventSlave.nipples !== "fuckable" ? "rubbing" : "fisting"}`); + if (hasBothArms(eventSlave) && canDoAnal(eventSlave)) { + r.push(`and some furtive fingering of ${his} asshole`); + offHand = "anal"; + } + r.push(r.pop() + `.`); + } else if (eventSlave.chastityVagina && eventSlave.dick === 0) { + r.push(`In ${his} chastity belt, all ${he} can manage is furious nipple-${eventSlave.nipples !== "fuckable" ? "rubbing" : "fisting"}`); + if (hasBothArms(eventSlave) && canDoAnal(eventSlave)) { + r.push(`and some furtive fingering of ${his} asshole`); + offHand = "anal"; + } + r.push(r.pop() + `.`); + } else if (eventSlave.chastityPenis === 1 && eventSlave.vagina === -1) { + r.push(`In ${his} chastity cage, all ${he} can manage is furious nipple-${eventSlave.nipples !== "fuckable" ? "rubbing" : "fisting"}`); + if (hasBothArms(eventSlave) && canDoAnal(eventSlave)) { + r.push(`and some furtive fingering of ${his} asshole`); + offHand = "anal"; + } + r.push(r.pop() + `.`); + } else if (eventSlave.dick > 0 && ((eventSlave.hormoneBalance >= 100) || (eventSlave.balls > 0 && eventSlave.ballType === "sterile") || (eventSlave.balls === 0))) { + r.push(`Since ${he}'s impotent`); + if (eventSlave.balls === 0) { + r.push(`due to ${his} lack of balls,`); + } else if (eventSlave.ballType === "sterile") { + r.push(`due to ${his} useless balls,`); + } else { + r.push(`from hormone treatment,`); + } + r.push(`all ${he} can manage is rubbing ${his} soft dick`); + if (hasBothArms(eventSlave)) { + if (canDoVaginal(eventSlave)) { + r.push(`and some furtive fingering of ${his} pussy.`); + offHand = "pussy"; + } else if (canDoAnal(eventSlave)) { + r.push(`and some furtive fingering of ${his} asshole.`); + offHand = "anal"; + } else { + r.push(`and some ${eventSlave.nipples !== "fuckable" ? `furious tweaking of ${his} nipples` : `furtive fingering of ${his} nipplecunts`}`); + offHand = "nipples"; + } + } + r.push(r.pop() + `.`); + } else if (!canAchieveErection(eventSlave) && eventSlave.dick > 6) { + r.push(`Since ${his} dick requires far too much blood to get erect, ${he}'s furiously massaging the semi-engorged monster.`); + } else if (!canAchieveErection(eventSlave) && eventSlave.dick > 0) { + r.push(`Since ${he}'s can't get it up, all ${he} can manage is rubbing ${his} soft dick`); + if (hasBothArms(eventSlave)) { + if (canDoVaginal(eventSlave)) { + r.push(`and some furtive fingering of ${his} pussy.`); + offHand = "pussy"; + } else if (canDoAnal(eventSlave)) { + r.push(`and some furtive fingering of ${his} asshole.`); + offHand = "anal"; + } else { + r.push(`and some ${eventSlave.nipples !== "fuckable" ? `furious tweaking of ${his} nipples` : `furtive fingering of ${his} nipplecunts`}`); + offHand = "nipples"; + } + } + r.push(r.pop() + `.`); + } else if (eventSlave.vagina === -1 && eventSlave.dick === 0) { + r.push(`${He}'s rubbing ${his} perineum desperately`); + if (hasBothArms(eventSlave)) { + if (canDoAnal(eventSlave)) { + r.push(`with one hand, and ${his} anus with the other,`); + offHand = "anal"; + } else { + r.push(`with one hand, and a nipple with the other,`); + offHand = "nipples"; + } + } + r.push(`since ${he} lacks external genitalia.`); + } else if (eventSlave.vagina === -1) { + r.push(`${He}'s furiously jacking off.`); + } else if (eventSlave.clit >= 3) { + r.push(`${He}'s furiously jacking off ${his} clitdick.`); + } else { + r.push(`${He}'s furiously polishing ${his} pearl.`); + } + r.push(`${He}'s chosen to do it in a dark corner and looks like ${he}'s hurrying; ${he} clearly knows this is forbidden.`); + App.Events.addParagraph(node, r); + r = []; + + r.push(`${eventSlave.slaveName} does not hear your`); + if (canHear(eventSlave)) { + r.push(`approach until you're very close.`); + } else { + r.push(`approach, but soon realizes your presence.`); + } + r.push(`${He} starts and tries to look normal.`); + if (!canTalk(eventSlave)) { + r.push(`${He} nervously gestures that ${he} wasn't doing anything.`); + } else { + r.push(Spoken(eventSlave, `"I wasn't doing anything, ${(eventSlave.rudeTitle === 1) ? PoliteRudeTitle(eventSlave) : Master}!"`), `${he} lies.`); + } + + App.Events.addParagraph(node, r); + const unknownOradvanceableFetish = eventSlave.fetishKnown !== 1 || eventSlave.fetishStrength <= 95; + const responses = [new App.Events.Result(`Let ${him} earn relief`, relief)]; + if (eventSlave.fetish !== "cumslut" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`when ${he} sucks`, sucks)); + } + if (eventSlave.fetish !== "boobs" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`during nipple play`, nipple)); + } + if ((eventSlave.fetish !== "pregnancy" || unknownOradvanceableFetish) && eventSlave.belly >= 5000) { + responses.push(new App.Events.Result(`while fondling ${his} belly`, belly)); + } + if (canDoAnal(eventSlave) && eventSlave.fetish !== "buttslut" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`when ${he} takes it up the ass`, ass, (eventSlave.anus === 0 ? `This option will take ${his} anal virginity` : null))); + } + if (eventSlave.fetish !== "humiliation" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`in public`, inPublic)); + } + if (eventSlave.fetish !== "submissive" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`while submitting to a spanking`, spanking)); + } + if (eventSlave.fetish !== "masochist" || unknownOradvanceableFetish) { + responses.push(new App.Events.Result(`while in pain`, pain)); + } + + if (responses.length > 1) { + responses.splice(1, 0, new App.Events.Result(null, null, `Punish ${him}, but then let ${him} get off:`)); // Hack for providing a headline to certain responses + } + App.Events.addResponses(node, responses); + + function relief() { + r = []; + + r.push(`${He}'s extremely relieved that you're not going to punish ${him} for the rulebreaking when you tell ${him} that ${he} can touch ${himself} if ${he}`); + if (eventSlave.belly >= 300000) { + r.push(`leans over ${his} ${bellyAdj} belly`); + } else { + r.push(`gets on ${his} ${knees}`); + } + r.push(`and sucks you off. ${He} does a decent job, playing with ${himself} all the while. ${He}'s learned that ${he} can get away with infractions if ${he}'s willing to suck dick afterward. ${His} resistance to your will <span class="devotion dec">has increased.</span>`); + eventSlave.devotion -= 5; + seX(eventSlave, "oral", V.PC, "penetrative"); + return r; + } + + function sucks() { + r = []; + if (V.PC.belly >= 10000) { + if (eventSlave.belly >= 300000) { + r.push(`You tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy,`); + } else { + r.push(`middle,`); + } + r.push(`do your best to get close beside ${him},`); + } else if (eventSlave.belly >= 5000) { + r.push(`You order ${him} to bend over beside you so your pregnancy doesn't obstruct you as badly`); + } else { + r.push(`You lean back, pull ${him} over your knee and under your gravid dome of a middle`); + } + } else { + if (eventSlave.belly >= 300000) { + r.push(`You tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`middle`); + } + } else if (eventSlave.belly >= 5000) { + r.push(`You spread your legs to give ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`bloated middle`); + } + r.push(`room as you pull ${him} onto your lap`); + } else { + r.push(`You pull ${him} down over your knee`); + } + } + r.push(`and spank ${his} ${eventSlave.skin} buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, ${eventSlave.slaveName} has cried ${himself} out and is limp in your hands. You pull ${him} up to face you and give ${him} your instructions: from now on, ${he} can come to you and ask to`); + if (V.PC.dick !== 0 && V.PC.vagina !== -1) { + r.push(`blow you and perform cunnilingus on you,`); + } else if (V.PC.dick !== 0) { + r.push(`blow you,`); + } else if (V.PC.vagina !== -1) { + r.push(`and perform cunnilingus on you,`); + } + r.push(`and masturbate while ${he} does. ${He} nods through ${his} tears and flees. In an hour or so, though, ${he} finds you and asks to`); + if (V.PC.vagina !== -1) { + r.push(`give you oral.`); + } else { + r.push(`suck your cock.`); + } + r.push(`When you pretend indifference, ${he} abjectly begs. Soon, ${he}'s down on ${his} ${knees}, crying a little with shame as ${he} masturbates furiously.`); + seX(eventSlave, "oral", V.PC, "penetrative", 5); + if (eventSlave.fetish === "cumslut" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of`); + if (V.PC.dick === 0) { + r.push(`giving head`); + } else { + r.push(`sucking cock`); + } + r.push(`has increased.</span>`); + } else if (eventSlave.fetish === "cumslut") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of`); + if (V.PC.dick === 0) { + r.push(`giving head`); + } else { + r.push(`sucking cock`); + } + r.push(`is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "cumslut"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s getting aroused at the thought of`); + if (V.PC.dick === 0) { + r.push(`giving head.</span>`); + } else { + r.push(`sucking cock.</span>`); + } + } + return r; + } + + function nipple() { + r = []; + if (V.PC.belly >= 10000) { + if (eventSlave.belly >= 300000) { + r.push(`You tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy,`); + } else { + r.push(`middle,`); + } + r.push(`do your best to get close beside ${him}, and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you flip ${him} onto ${his} back, lower your gravid body down to ${his} level and start playing with ${his} nipples.`); + } else if (eventSlave.belly >= 5000) { + r.push(`You order ${him} to bend over beside you so your pregnancy doesn't obstruct you as badly and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you haul ${him} upright and start playing with ${his} nipples.`); + } else { + r.push(`You lean back, pull ${him} over your knee and under your gravid dome of a middle and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you haul ${him} upright and start playing with ${his} nipples.`); + } + } else { + if (eventSlave.belly >= 300000) { + r.push(`You tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`middle`); + } + r.push(`and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you haul ${him} up into your lap, ${his} stomach spreading your legs, and start playing with ${his} nipples.`); + } else if (eventSlave.belly >= 5000) { + r.push(`You spread your legs to give ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`bloated middle`); + } + r.push(`room as you pull ${him} onto your lap and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you haul ${him} up into your lap and start playing with ${his} nipples.`); + } else { + r.push(`You pull ${him} down over your knee and grope ${him} thoroughly, bringing ${him} to the painful edge of orgasm. Just when ${he}'s about to tip over the edge, the stimulation stops and you haul ${him} up into your lap and start playing with ${his} nipples.`); + } + } + r.push(`${He} writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep ${him} at a high level of arousal without giving relief. You switch back and forth until ${he} finally goes over into muscle-spasming climax during nipple stimulation alone.`); + seX(eventSlave, "mammary", V.PC, "penetrative"); + if (eventSlave.fetish === "boobs" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of breast play has increased.</span>`); + } else if (eventSlave.fetish === "boobs") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of breast play is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "boobs"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s getting aroused at every brush against ${his} breasts.</span>`); + } + return r; + } + + function belly() { + r= []; + r.push(`You`); + if (eventSlave.belly >= 300000) { + r.push(`roll ${him} onto ${his} back`); + } else { + r.push(`pull ${him} into a sitting position on your lap`); + } + r.push(`and grope ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`stomach`); + } + r.push(`thoroughly, allowing ${him} to reach the painful edge of orgasm. You feel ${his} belly shudder as ${he} reaches climax under your ministrations. You tease ${his}`); + if (eventSlave.belly >= 10001) { + r.push(`popped`); + } + r.push(`navel as ${he} comes down from ${his} masturbation session.`); + if (eventSlave.fetish === "pregnancy" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of pregnancy has increased.</span>`); + } else if (eventSlave.fetish === "pregnancy") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of pregnancy is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "pregnancy"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s getting aroused at`); + if (eventSlave.pregKnown === 1) { + r.push(`every thought about ${his} pregnancy`); + } else { + r.push(`the very thought of being pregnant`); + } + r.push(r.pop() + `.</span>`); + } + return r; + } + + function ass() { + r= []; + r.push(`You`); + if (V.PC.belly >= 10000) { + if (eventSlave.belly >= 300000) { + r.push(`tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy,`); + } else { + r.push(`middle,`); + } + r.push(`do your best to get close beside ${him},`); + } else if (eventSlave.belly >= 5000) { + r.push(`order ${him} to bend over beside you so your pregnancy doesn't obstruct you as badly`); + } else { + r.push(`lean back, pull ${him} over your knee and under your gravid dome of a middle`); + } + } else { + if (eventSlave.belly >= 300000) { + r.push(`tip ${him} over ${his} ${bellyAdj}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`middle`); + } + } else if (eventSlave.belly >= 5000) { + r.push(`spread your legs to give ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy`); + } else { + r.push(`bloated middle`); + } + r.push(`room as you pull ${him} onto your lap`); + } else { + r.push(`pull ${him} down over your knee`); + } + } + r.push(`and spank ${his} ${eventSlave.skin} buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, ${eventSlave.slaveName} has cried ${himself} out and is limp in your hands. You pull ${him} up to face you and give ${him} your instructions: from now on, ${he} can come to you and ask you to assrape ${him}, and masturbate while ${he} takes`); + if (V.PC.dick === 0) { + r.push(`anal penetration.`); + } else { + r.push(`cock.`); + } + r.push(`${He} nods through ${his} tears and flees. In an hour or so, though, ${he} finds you and haltingly asks you to buttfuck ${him}. When you pretend indifference, ${he} offers you ${his} anus and abjectly begs you to stick`); + if (V.PC.dick === 0) { + r.push(`a strap-on`); + } else { + r.push(`your cock`); + } + r.push(`up ${his} butt. Soon, ${he}'s down on all fours, crying a little with mixed shame and anal pain as ${he} masturbates furiously.`); + r.push(VCheck.Anal(eventSlave, 5)); + if (eventSlave.fetish === "buttslut" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of anal has increased.</span>`); + } else if (eventSlave.fetish === "buttslut") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of anal is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "buttslut"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s getting aroused at the thought of anal sex.</span>`); + } + return r; + } + + function inPublic() { + r= []; + r.push(`You bring ${him} out`); + if (App.Entity.facilities.club.established) { + r.push(`to ${App.Entity.facilities.club.nameCaps}`); + } else { + r.push(`onto the street`); + } + r.push(`and secure ${him} upright with a set of vibrators attached to all of ${his} erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, ${he} wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling ${him}, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at ${him}. The more eyes on ${him}, the stronger the vibrations.`); + if (eventSlave.fetish === "humiliation" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of humiliation has increased.</span>`); + } else if (eventSlave.fetish === "humiliation") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of humiliation is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "humiliation"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s starting to long for humiliation.</span>`); + } + return r; + } + + function spanking() { + r= []; + r.push(`You tell ${him} that ${he} can get ${himself} off while ${he}'s being spanked, and that's it: you don't tell ${him} to offer ${his} bottom, much less start spanking ${him}. ${He} doesn't understand for a long moment, but before long ${he}'s begging abjectly for a spanking, and has ${his} buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh`); + if (eventSlave.voice === 0) { + r.push(`and a hoarse grunt, the most noise ${he} can make.`); + } else { + r.push(`and a shriek of agony.`); + } + r.push(`${He} masturbates furiously, but you're an accomplished spanker, and you repeatedly cause ${him} just enough pain to prevent climax. Eventually ${he} gets off in part because of, rather than in spite of, the lengthy beating.`); + if (eventSlave.fetish === "submissive" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of submission has increased.</span>`); + } else if (eventSlave.fetish === "submissive") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of submission is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "submissive"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he} starts to associate submitting to you with getting off.</span>`); + } + return r; + } + + function pain() { + r = []; + r.push(`You order ${him} to`); + if ((eventSlave.heels === 1 && shoeHeelCategory(eventSlave) === 0) || !canStand(eventSlave)) { + r.push(`kneel`); + } else if (shoeHeelCategory(eventSlave) > 1 || canMove(eventSlave)) { + r.push(`teeter`); + } else { + r.push(`stand`); + } + if (hasBothArms(eventSlave)) { + r.push(`with ${his} arms`); + } else { + r.push(`with ${his} arm`); + } + if (hasBothLegs(eventSlave)) { + r.push(`over ${his} head and ${his} legs splayed,`); + } else { + r.push(`over ${his} head and ${his} leg bent,`); + } + r.push(`and tell ${him} that if ${he} moves or resists, ${his} punishment will begin again from the start.`); + if ((eventSlave.chastityVagina || eventSlave.chastityPenis === 1)) { + if (offHand === "anal") { + r.push(`${He} was touching ${his} nipples and ass, so you flick and torture ${his} nipples and give ${him} a severe spanking.`); + } else { + r.push(`${He} was playing with ${his} nipples, so you flick and torture them, enjoying ${his} agony.`); + } + } else if (!canAchieveErection(eventSlave) && eventSlave.dick > 6) { + r.push(`${He} was playing with ${his} oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms.`); + } else if (eventSlave.dick > 0 && !canAchieveErection(eventSlave)) { + if (offHand === "anal") { + r.push(`${He} was touching ${his} limp dick and ass, so you slap and torture ${his} offending dick and give ${him} a severe spanking.`); + } else if (offHand === "pussy") { + r.push(`${He} was touching ${his} limp dick and pussy, so you slap and torture ${his} offending dick and labia.`); + } else if (offHand === "nipples") { + r.push(`${He} was playing with ${his} limp dick and nipples, so you slap and torture ${his} offending dick while pinching and twisting nipples.`); + } else { + r.push(`${He} was playing with ${his} limp dick, so you slap and torture ${his} worthless cock, enjoying ${his} agony.`); + } + } else if (eventSlave.vagina === -1 && eventSlave.dick === 0) { + if (offHand === "anal") { + r.push(`${He} was desperately rubbing ${his} perineum and anus, the most sensitive parts ${he} has left, so you slap that part of ${him} repeatedly, enjoying the way it spasms.`); + } else if (offHand === "nipples") { + r.push(`${He} was desperately rubbing ${his} perineum and nipples, the most sensitive parts ${he} has left, so you slap those parts of ${him} repeatedly, enjoying the way they spasm.`); + } + } else if (eventSlave.vagina === -1 || eventSlave.clit >= 3) { + r.push(`${He} was jacking it, so you force ${him} to get ${himself} hard for punishment and then deliver a series of agonizing slaps and flicks to ${his} offending member.`); + } else if (eventSlave.labia > 1) { + r.push(`${His} generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing ${him} intense agony.`); + } else { + r.push(`You deliver a series of agonizing slaps to ${his} mons.`); + } + r.push(`You have to start over twice. By the end, ${he}'s managed to orgasm to all the stimulation, but ${he}'s crying and desperately promising never to touch ${himself} again without your permission. ${His} submission to you <span class="devotion inc">has increased.</span>`); + eventSlave.devotion += 4; + if (eventSlave.fetish === "masochist" && eventSlave.fetishKnown === 1) { + eventSlave.fetishStrength += 4; + r.push(`<span class="fetish inc">${His} enjoyment of pain has increased.</span>`); + } else if (eventSlave.fetish === "masochist") { + eventSlave.fetishKnown = 1; + r.push(`<span class="fetish gain">${His} enjoyment of pain is now clear to you.</span>`); + } else if (random(1, 100) > 50) { + eventSlave.fetish = "masochist"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 65; + r.push(`Before ${he} realizes what's happening, <span class="fetish gain">${he}'s getting aroused at the thought of ${his} ${getWrittenTitle(eventSlave)} beating ${him}.</span>`); + } + return r; + } + } +}; + diff --git a/src/events/RESS/hotPC.js b/src/events/RESS/hotPC.js index 45f6f499040428cc56145b92462f64bd1213dfcb..99fa49a67dac71ff32ff6017cc9919073d844835 100644 --- a/src/events/RESS/hotPC.js +++ b/src/events/RESS/hotPC.js @@ -157,7 +157,7 @@ App.Events.RESSHotPC = class RESSHotPC extends App.Events.BaseEvent { t = []; App.Events.addResponses(frag, [ - ((canDoVaginal(eventSlave) || canDoAnal(eventSlave))) + (canDoVaginal(eventSlave) || canDoAnal(eventSlave)) ? new App.Events.Result(`Fuck ${him} right here`, fuck, virginityWarning()) : new App.Events.Result(virginityWarning()), new App.Events.Result(`Have ${him} lick you clean`, lick), diff --git a/src/events/RESS/impregnationPlease.js b/src/events/RESS/impregnationPlease.js new file mode 100644 index 0000000000000000000000000000000000000000..fca63887812ae781ab9922a3821134cb26e791af --- /dev/null +++ b/src/events/RESS/impregnationPlease.js @@ -0,0 +1,540 @@ +App.Events.RESSImpregnationPlease = class RESSImpregnationPlease extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.seePreg !== 0, + () => V.PC.dick !== 0, + ]; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + s => (s.fetish === "pregnancy" || s.energy > 95), + s => s.devotion > 50, + s => s.vagina !== 0, + s => s.anus > 0, + hasAnyArms, + canWalk, + isFertile, + s => s.eggType === "human", + s => s.fetishKnown === 1, + s => !(s.geneticQuirks.superfetation === 2 && (s.intelligence + s.intelligenceImplant > 15) && s.womb.length > 0) || (s.belly < (s.pregAdaptation * 1750)) // Material conditional: only false if first condition is true and second is false + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const {His, He, he, his, him, himself} = getPronouns(eventSlave); + const {title: Master} = getEnunciation(eventSlave); + const belly = bellyAdjective(eventSlave); + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave); + + let isFaceUp = true; + const isPregnantAndSuperfetation = (eventSlave.geneticQuirks.superfetation === 2 && eventSlave.pregKnown === 1); + + let r = []; + r.push(`Taken by a mood,`); + r.push(contextualIntro(V.PC, eventSlave, "DOM")); + r.push(App.UI.DOM.slaveDescriptionDialog(eventSlave)); // TODO: Integrate contextualIntro somewhere + if (isPregnantAndSuperfetation) { + if (eventSlave.belly >= 750000) { + r.push(`barely makes into your office before turning and leaning against ${his} ${belly} belly. Once ${he} manages to get comfortable against the strained mass, ${he} wiggles ${his} exposed`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + isFaceUp = false; + } else if (eventSlave.belly >= 450000) { + r.push(`slowly waddles into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} carefully turns before your desk and leans forward with a grunt against ${his} ${belly} belly, allowing it to part ${his} legs while exposing ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`to you. ${He} gingerly rubs ${his} agitated stomach as ${he} wiggles ${his} bottom at you.`); + isFaceUp = false; + } else if (eventSlave.belly >= 300000) { + r.push(`slowly waddles into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} carefully turns before your desk and leans forward with a grunt against ${his} ${belly} belly, allowing it to part ${his} legs while exposing ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`to you.`); + isFaceUp = false; + } else if (eventSlave.belly >= 150000) { + r.push(`nearly trips under ${his} own weight as ${he} waddles into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} maneuvers over to the couch, leans forward with a grunt as ${his} ${belly} belly pushes into the floor, spreading ${his} legs and exposing ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`to you.`); + isFaceUp = false; + } else if (eventSlave.belly >= 60000) { + r.push(`waddles into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} maneuvers over to the couch, leans forward, spreads ${his} legs and exposes ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`to you.`); + isFaceUp = false; + } else if (eventSlave.belly >= 10000) { + r.push(`hastily waddles into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} sits down on the couch and scoots down so ${his} butt is right at the edge of the couch and ${his} ${belly} belly is sticking up in the air. ${He} then spreads ${his} legs and exposes ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`to you.`); + } else { + r.push(`hurries into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} sits down on the couch and scoots down so ${his} butt is right at the edge of the couch. ${He} then spreads ${his} legs and uses ${hasBothArms(eventSlave) ? "one" : `${his}`} hand to spread ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`for you.`); + } + if (!canTalk(eventSlave)) { + r.push(`${He} pantomimes pregnancy with`); + if (!hasBothArms(eventSlave)) { + r.push(`${his}`); + } else if (eventSlave.belly < 10000) { + r.push(`${his} other`); + } else { + r.push(`one`); + } + r.push(`hand, lewdly gesturing to ask you to cum inside ${his} still very fertile`); + if (eventSlave.mpreg === 1) { + r.push(`asspussy.`); + } else { + r.push(`pussy.`); + } + } else { + r.push(Spoken(eventSlave, `"Please put another baby in me, ${Master}, I have plenty of room still,"`)); + if (eventSlave.lips > 70) { + r.push(`${he} begs through ${his} dick-sucking lips.`); + } else if (eventSlave.lipsPiercing+eventSlave.tonguePiercing > 2) { + r.push(`${he} begs through ${his} ridiculous piercings.`); + } else { + r.push(`${he} begs.`); + } + r.push(Spoken(eventSlave, `"I can't stand it. I need to make you another slave, ${Master}. Please stuff my body with as many future slaves as my womb can hold. Make me your slave production line."`)); + } + } else { + r.push(`hurries into your office with a strange light`); + if (canSee(eventSlave)) { + r.push(`in ${his} eyes.`); + } else { + r.push(`on ${his} face.`); + } + r.push(`${He} sits down on the couch and scoots down so ${his} butt is right at the edge of the couch. ${He} then spreads ${his} legs and uses ${hasBothArms(eventSlave) ? "one" : `${his}`} hand to spread ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussylips`); + } + r.push(`for you.`); + App.Events.addParagraph(node, r); + r = []; + + if (!canTalk(eventSlave)) { + r.push(`${He}`); + if (hasBothArms(eventSlave)) { + r.push(`pantomimes pregnancy with ${his} other hand,`); + } else { + r.push(`shifts to pantomiming pregnancy with ${his} hand,`); + } + r.push(`lewdly gesturing to ask you to cum inside ${his} fertile`); + if (eventSlave.mpreg === 1) { + r.push(`ass`); + } + r.push(`pussy.`); + } else { + r.push(Spoken(eventSlave, `"Please knock me up, ${Master},"`)); + if (eventSlave.lips > 70) { + r.push(`${he} begs through ${his} dick-sucking lips.`); + } else if (eventSlave.lipsPiercing+eventSlave.tonguePiercing > 2) { + r.push(`${he} begs through ${his} ridiculous piercings.`); + } else { + r.push(`${he} begs.`); + } + r.push(Spoken(eventSlave, `"I can't stand it. I need to make you another slave, ${Master}. Please use my body as your slave factory."`)); + } + } + if (canSee(eventSlave)) { + r.push(`${He} stares at you doe-eyed,`); + } else { + r.push(`${He} faces you with the look of a child begging for candy,`); + } + r.push(`desperately awaiting your answer.`); + + let responses = [new App.Events.Result(`Put a slave in ${him}`, impregnate)]; + if (eventSlave.mpreg === 0) { + responses.push(new App.Events.Result(`Use ${his} ass but give ${him} what ${he} wants`, impregnateAss)); + responses.push(new App.Events.Result(`Sneak it into ${his} ass instead`, sneak)); + } else { + responses.push(new App.Events.Result(`Use ${his} ass but finish across ${his} back`, back)); + } + if (V.cumSlaves >= 5) { + responses.push(new App.Events.Result(`Use the Dairy cockmilk to impregnate ${him}`, dairy)); + } + App.Events.addParagraph(node, r); + App.Events.addResponses(node, responses); + + function impregnate() { + r = []; + if (eventSlave.mpreg === 1) { + if (!canDoAnal(eventSlave)) { + r.push(`You slowly undo ${his} chastity, allowing ${him} to be overwhelmed with anticipation of the deed to come.`); + } + } else if (eventSlave.chastityVagina) { + r.push(`You slowly undo ${his} chastity, allowing ${him} to be overwhelmed with anticipation of the deed to come.`); + } + r.push(`Despite ${himself}, ${he} breaks down when ${he} feels your cock enter ${his}`); + if (eventSlave.mpreg === 1) { + if (eventSlave.anus === 1) { + r.push(`deliciously tight`); + } else if (eventSlave.anus === 2) { + r.push(`well experienced`); + } else { + r.push(`fucked-out`); + } + r.push(`ass.`); + } else { + if (eventSlave.vagina === 1) { + r.push(`deliciously tight`); + } else if (eventSlave.vagina === 2) { + r.push(`well experienced`); + } else { + r.push(`fucked-out`); + } + r.push(`cunt.`); + } + if (isPregnantAndSuperfetation) { + r.push(`${He} grinds against you`); + } else { + r.push(`${He} smiles up reassuringly at you`); + } + r.push(`to let you know ${he}'s not in pain or anguish, blinking away ${his} happy tears.`); + if (isFaceUp) { + r.push(`${He} reaches up to hug ${himself} close to you,`); + if (eventSlave.bellyPreg >= 5000) { + r.push(`but the gravid swell of ${his} current pregnancy thwarts ${his} efforts as you take ${him}.`); + } else if (eventSlave.belly >= 5000 && eventSlave.boobs < 600) { + r.push(`${his} big ${eventSlave.inflationType} stuffed belly pushing against you as you take ${him}.`); + } else if (V.PC.belly >= 5000) { + r.push(`but the best ${he} can do is press ${himself} against your bulging middle.`); + } else if (eventSlave.boobs < 600 && eventSlave.belly < 5000) { + r.push(`and ${his} modest breasts let ${him} snuggle close to you, face-to-face, as you take ${him}.`); + } else if (eventSlave.boobs < 10000) { + r.push(`and ${his} big tits`); + if (eventSlave.bellyFluid >= 2000) { + r.push(`and ${eventSlave.inflationType} stuffed belly`); + } + r.push(`form a soft cushion between you as you take ${him}.`); + } else { + r.push(`but ${his} massive tits stop ${him} from bringing ${himself} too close to you as you take ${him}.`); + } + } else { + r.push(`${He} reaches back to take your hand, slowly bringing it back to the swell of ${his} baby bump.`); + } + r.push(`${He} enjoys ${himself} immensely, but ${he} loses it again when ${he} feels your`); + if (V.PC.balls >= 30) { + if (isPregnantAndSuperfetation) { + r.push(`seed inflating ${his} womb until ${his} stomach is`); + if (eventSlave.belly >= 2000) { + r.push(`noticeably larger than when ${he} started.`); + } else { + r.push(`distended and wobbling with cum.`); + } + } else { + r.push(`seed fill ${his} cramped womb and start to backflow.`); + } + } else if (V.PC.balls >= 14) { + r.push(`seed pumping into ${him} until ${his} womb is stuffed with cum.`); + } else if (V.PC.balls >= 9) { + r.push(`seed pouring into ${him}.`); + } else { + r.push(`seed.`); + } + r.push(`${He} starts blubbering inelegantly and`); + if (!canTalk(eventSlave)) { + r.push(`gesturing`); + } else if ((eventSlave.lips > 70) || (eventSlave.lipsPiercing+eventSlave.tonguePiercing > 2)) { + r.push(`lisping`); + } else { + r.push(`whimpering`); + } + r.push(`<span class="devotion inc">${his} thanks.</span>`); + eventSlave.devotion += 4; + if (eventSlave.mpreg === 1) { + seX(eventSlave, "anal", V.PC, "penetrative"); + } else { + seX(eventSlave, "vaginal", V.PC, "penetrative"); + } + knockMeUp(eventSlave, 50, 2, -1); + return r; + } + + function impregnateAss() { + r = []; + r.push(`You tell ${him} that impregnation will be ${his} reward if ${he}'s a good little`); + if (eventSlave.chastityVagina || eventSlave.chastityAnus) { + r.push(`buttslut as you undo ${his} chastity.`); + } else { + r.push(`buttslut.`); + } + r.push(`${He} visibly resolves to do ${his} anal best. You recline on the couch and ${he} squats over you, one leg on the floor and the other bent up on the cushion, with`); + if (isPregnantAndSuperfetation && isFaceUp && eventSlave.belly >= 5000) { + r.push(`${his} ${belly} belly pressing against you.`); + } else if (hasBothArms(eventSlave)) { + r.push(`one hand on the back of the couch and the other rubbing ${his} pussy.`); + } else { + r.push(`${his} hand on the back of the couch.`); + } + r.push(`${He}`); + if (eventSlave.anus === 1) { + r.push(`winces in pain as ${he} lowers ${his} tight`); + } else if (eventSlave.anus === 2) { + r.push(`moans with discomfort as ${he} lowers ${his} tight`); + } else { + r.push(`barely reacts as ${he} lowers ${his} huge`); + } + r.push(`butthole down onto your cock. ${He} gets quite a workout, raising and lowering ${his} body to fuck ${his} own ass on your stationary dick.`); + if (isFaceUp) { + r.push(`Since ${he}'s facing you, you get a great view of ${his} body in motion.`); + } else { + r.push(`${He}'s so heavy with child, you eventually have to give ${him} a hand as ${he} steadily tires.`); + } + r.push(`${His}`); + if (eventSlave.clit) { + r.push(`clitoral`); + } + r.push(`stimulation is having an effect, and after a while ${he}`); + if (!canTalk(eventSlave)) { + r.push(`takes ${his} hand away to make an unintelligible gesture. After ${he} repeats it, you figure out that ${he} means ${he} wishes ${he} could get pregnant anally.`); + } else { + r.push(`pants,`, Spoken(eventSlave, `"That's so good, ${Master}. I wish you could get my ass pregnant."`)); + } + r.push(`When you're close, you scoot back to pull yourself out and ${he} spears ${his} cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and ${he} <span class="devotion inc">cries with joy</span> at feeling your hot`); + if (V.PC.balls >= 30) { + if (isPregnantAndSuperfetation) { + r.push(`seed inflating ${his} womb until ${his} stomach is`); + if (eventSlave.belly >= 2000) { + r.push(`noticeably larger than when ${he} started.`); + } else { + r.push(`distended and wobbling with cum.`); + } + } else { + r.push(`seed fill ${his} cramped womb and start to backflow.`); + } + if (eventSlave.belly >= 30000) { + r.push(`You barely managed to keep your grip on ${him} as ${his} middle ballooned between you.`); + } + } else if (V.PC.balls >= 14) { + r.push(`seed pumping into ${him} until ${his} womb is stuffed with cum.`); + } else if (V.PC.balls >= 9) { + r.push(`seed pouring into ${him}.`); + } else { + r.push(`seed.`); + } + eventSlave.devotion += 4; + seX(eventSlave, "vaginal", V.PC, "penetrative"); + seX(eventSlave, "anal", V.PC, "penetrative"); + knockMeUp(eventSlave, 50, 0, -1); + return r; + } + + function sneak() { + r = []; + r.push(`Despite ${himself}, ${he} breaks down when ${he}`); + if (canSee(eventSlave)) { + r.push(`sees`); + } else if (canHear(eventSlave)) { + r.push(`hears`); + } else { + r.push(`notices`); + } + r.push(`you coming over and kneeling down to line your cock up with the entrance to ${his}`); + if (eventSlave.vagina === 1) { + r.push(`deliciously tight`); + } else if (eventSlave.vagina === 2) { + r.push(`well experienced`); + } else { + r.push(`fucked-out`); + } + r.push(`cunt. ${His} happy tears turn to a ragged gasp of surprise and pain when you`); + if (eventSlave.chastityAnus) { + r.push(`undo ${his} anal chastity,`); + } + r.push(`slide your dickhead down to ${his}`); + if (eventSlave.anus === 1) { + r.push(`painfully inexperienced`); + } else if (eventSlave.anus === 2) { + r.push(`tight`); + } else { + r.push(`loose`); + } + r.push(`ass and shove it up there instead. ${He} knows better than to protest, but the expression on ${his} face is a wonderful mix of submission, anguish and disappointment as ${he} takes the anal fuck. To stop ${his} fugue of disappointment you give ${him} a light slap on the cheek to get ${his} attention, and then instruct ${him} that it's not ${his} place`); + if (isPregnantAndSuperfetation) { + r.push(`to decide how pregnant ${he} gets to be.`); + } else { + r.push(`to plan ${his} pregnancies.`); + } + r.push(`They'll happen when they happen, and until then ${he}'ll take it up the butt like a good slut. ${He} <span class="trust dec">nods and wipes ${his} eyes</span> even as`); + if (eventSlave.anus === 1) { + r.push(`${he} grimaces involuntarily at your painful use of ${his} tight butthole.`); + } else if (eventSlave.anus === 2) { + r.push(`${he} takes your cock up ${his} tight ass.`); + } else { + r.push(`${his} gaping anus makes occasional lewd noises as you pound it.`); + } + eventSlave.trust -= 5; + seX(eventSlave, "anal", V.PC, "penetrative"); + return r; + } + + + function back() { + r = []; + r.push(`You tell ${him} that impregnation will be ${his} reward if ${he}'s a good little`); + if (eventSlave.chastityVagina || eventSlave.chastityAnus) { + r.push(`buttslut as you undo ${his} chastity.`); + } else { + r.push(`buttslut.`); + } + r.push(`${He} visibly resolves to do ${his} anal best. You recline on the couch and ${he} squats over you, one leg on the floor and the other bent up on the cushion, with`); + if (isPregnantAndSuperfetation && isFaceUp && eventSlave.belly >= 5000) { + r.push(`${his} ${belly} belly pressing against you.`); + } else if (hasBothArms(eventSlave)) { + r.push(`one hand on the back of the couch and the other`); + if (eventSlave.nipples !== "fuckable") { + r.push(`pinching`); + } else { + r.push(`fingering`); + } + r.push(`a nipple.`); + } else { + r.push(`${his} hand on the back of the couch.`); + } + + r.push(`${He}`); + if (eventSlave.anus === 1) { + r.push(`winces in pain as ${he} lowers ${his} tight`); + } else if (eventSlave.anus === 2) { + r.push(`moans with discomfort as ${he} lowers ${his} tight`); + } else { + r.push(`barely reacts as ${he} lowers ${his} huge`); + } + r.push(`butthole down onto your cock. ${He} gets quite a workout, raising and lowering ${his} body to fuck ${his} own ass on your stationary dick.`); + if (isFaceUp) { + r.push(`Since ${he}'s facing you, you get a great view of ${his} body in motion.`); + } else { + r.push(`${He}'s so heavy with child, you eventually have to give ${him} a hand as ${he} steadily tires.`); + } + r.push(`${His} stimulation is having an effect, and after a while ${he}`); + if (!canTalk(eventSlave)) { + r.push(`takes ${his} hand away to make an unintelligible gesture. After ${he} repeats it, you figure out that ${he} means ${he} is thrilled to be able to get anally pregnant`); + if (isPregnantAndSuperfetation) { + r.push(`pregnant and is about to conceive again`); + } else { + r.push(`pregnant.`); + } + } else { + r.push(`pants,`, Spoken(eventSlave, `"That's so good, ${Master}. I'm so glad my ass is fertile."`)); + } + r.push(`When you're at your limit, you quickly pull`); + if (isFaceUp) { + r.push(`out, slide slightly further under ${him}`); + } else { + r.push(`out`); + } + r.push(`and thrust up between ${his} asscheeks, blowing your hot seed`); + if (V.PC.balls >= 30) { + r.push(`across ${his} entire back.`); + } else if (V.PC.balls >= 9) { + r.push(`across ${his} back.`); + } else { + r.push(`across ${his} lower back.`); + } + r.push(`${He} stops riding you and`); + if (canSee(eventSlave)) { + r.push(`stares at`); + } else { + r.push(`faces`); + } + r.push(`you with a look of <span class="devotion dec">disbelief.</span> You shrug; it must have slipped out under all ${his} enthusiasm.`); + eventSlave.devotion -= 5; + seX(eventSlave, "anal", V.PC, "penetrative"); + return r; + } + + function dairy() { + r = []; + r.push(`You tell ${him} ${he}'ll be having everyone's children. ${He} looks puzzled until you put ${him} on the couch, legs spread`); + if ((eventSlave.mpreg === 1 && eventSlave.chastityAnus) || eventSlave.chastityVagina) { + r.push(`and chastity removed`); + } + r.push(r.pop() + `,`); + r.push(`and produce a large, soft injector full of fresh cum. At this ${he} giggles and thanks you; ${he} rapturously rubs ${his} ${belly} belly as you gently push the injector home. For the rest of the week, ${he} appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. ${He} goes about ${his} other business with a <span class="devotion inc">deeply pleased</span> expression on ${his} face. Whenever ${he} has a spare moment ${he} steals down to the Dairy to hug the slaves there or otherwise show them a little affection.`); + eventSlave.devotion += 10; + const cumSlaves = V.slaves.filter(function(s) { return (s.assignment === Job.MILKED || s.assignment === Job.DAIRY) && s.balls > 0 && s.ballType === "human"; }); + if (cumSlaves.length > 0) { + knockMeUp(eventSlave, 90, 2, cumSlaves.random().ID); + } + return r; + } + } +}; diff --git a/src/events/RESS/kitchenMolestation.js b/src/events/RESS/kitchenMolestation.js index 65d7c3189c84ea0ba1bc720134c6b8672340483f..0a4255dcfaef2ab13fe63e0b3de1313c928ccfc4 100644 --- a/src/events/RESS/kitchenMolestation.js +++ b/src/events/RESS/kitchenMolestation.js @@ -81,10 +81,10 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve seX(s, "anal", eventSlave, "penetrative"); seX(s, "anal", PC, "penetrative"); if (canImpreg(s, PC)) { - t.push(knockMeUp(s, 5, 1, -1, true)); + knockMeUp(s, 5, 1, -1); } if (canImpreg(s, eventSlave)) { - t.push(knockMeUp(s, 5, 1, eventSlave.ID, true)); + knockMeUp(s, 5, 1, eventSlave.ID); } if (s.anus === 1) { s.trust -= 2; @@ -96,10 +96,10 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve seX(s, "vaginal", eventSlave, "penetrative"); seX(s, "vaginal", PC, "penetrative"); if (canImpreg(s, PC)) { - t.push(knockMeUp(s, 5, 0, -1, true)); + knockMeUp(s, 5, 0, -1); } if (canImpreg(s, eventSlave)) { - t.push(knockMeUp(s, 5, 0, eventSlave.ID, true)); + knockMeUp(s, 5, 0, eventSlave.ID); } if (s.vagina === 1) { s.trust -= 2; @@ -109,10 +109,10 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve seX(s, "anal", eventSlave, "penetrative"); seX(s, "vaginal", eventSlave, "penetrative"); if (canImpreg(s, PC)) { - t.push(knockMeUp(s, 5, 2, -1, true)); + knockMeUp(s, 5, 2, -1); } if (canImpreg(s, eventSlave)) { - t.push(knockMeUp(s, 5, 1, eventSlave.ID, true)); + knockMeUp(s, 5, 1, eventSlave.ID); } } } else if (canDoVaginal(s)) { @@ -120,10 +120,10 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve seX(s, "vaginal", eventSlave, "penetrative"); seX(s, "vaginal", PC, "penetrative"); if (canImpreg(s, PC)) { - t.push(knockMeUp(s, 5, 0, -1, true)); + knockMeUp(s, 5, 0, -1); } if (canImpreg(s, eventSlave)) { - t.push(knockMeUp(s, 5, 0, eventSlave.ID, true)); + knockMeUp(s, 5, 0, eventSlave.ID); } if (s.vagina === 1) { s.trust -= 2; @@ -134,10 +134,10 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve seX(s, "anal", eventSlave, "penetrative"); seX(s, "anal", PC, "penetrative"); if (canImpreg(s, PC)) { - t.push(knockMeUp(s, 5, 1, -1, true)); + knockMeUp(s, 5, 1, -1); } if (canImpreg(s, eventSlave)) { - t.push(knockMeUp(s, 5, 1, eventSlave.ID, true)); + knockMeUp(s, 5, 1, eventSlave.ID); } if (s.anus === 1) { s.trust -= 2; @@ -195,7 +195,7 @@ App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Eve if (canGetPregnant(eventSlave) && eventSlave.mpreg === 1) { const pregSources = V.slaves.filter(s => canImpreg(eventSlave, s) && targetJobs.includes(s.assignment) && s.ID !== eventSlave.ID); if (pregSources.length > 0) { - t.push(knockMeUp(eventSlave, 50, 1, pregSources.pluck().ID, true)); + knockMeUp(eventSlave, 50, 1, pregSources.pluck().ID); } } V.slaves.forEach(function(s) { if (s.trust < 50 && targetJobs.includes(s.assignment) && s.ID !== eventSlave.ID) { s.trust += 4; } }); diff --git a/src/events/RESS/mindbrokenMorning.js b/src/events/RESS/mindbrokenMorning.js new file mode 100644 index 0000000000000000000000000000000000000000..c4ef36a4fc86b0d7b807daf968af4539b73374aa --- /dev/null +++ b/src/events/RESS/mindbrokenMorning.js @@ -0,0 +1,239 @@ +App.Events.RESSMindbrokenMorning = class RESSMindbrokenMorning extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.weatherToday.severity < 3 + ]; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish === "mindbroken", + canWalk, + s => s.clothes !== "a Fuckdoll suit", + isFaceVisible + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const {His, He, he, his, him, himself} = getPronouns(eventSlave); + const belly = bellyAdjective(eventSlave); + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave); + + let r = []; + + r.push(`It's a sunny morning, with rare mild weather, and you're stuck at your desk, as usual. After the typical rush of slaves clears the kitchen after the breakfast hour, you see one peel off to stand out on a balcony for a moment with the light on ${his} face. You pay little attention to such a trifle, but then notice that it's`); + r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ".")); + App.Events.addParagraph(node, r); + r = []; + + r.push(`You head out and find that ${he}'s looking up at the sun with ${his} ${App.Desc.eyesColor(eventSlave)} closed, letting the warmth and light envelop ${his}`); + if (eventSlave.face > 95) { + r.push(`incredible`); + } else if ((eventSlave.face > 40)) { + r.push(`gorgeous`); + } else if ((eventSlave.face > 10)) { + r.push(`pretty`); + } else { + r.push(`homely`); + } + if (eventSlave.belly >= 5000) { + r.push(`face and taut, ${belly} dome of a belly`); + } else { + r.push(`face.`); + } + r.push(`${He} hasn't gotten completely ready for ${his} day yet, and ${his} ${eventSlave.skin} skin is clean and quite bare. Despite ${his} small remaining mental capacity, it seems ${he}'s still capable of the minor pleasure of enjoying the sunlight. It is very probably the only enjoyable thing ${he}'ll register today.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Let ${him} be`, leave), + (canDoVaginal(eventSlave) || canDoAnal(eventSlave)) + ? new App.Events.Result(`See if an orgasm will cheer ${him} up`, orgasm, virginityWarning()) + : new App.Events.Result(), + ]); + + function leave() { + if (eventSlave.relationship === -3) { + if (eventSlave.kindness) { + eventSlave.kindness += 2; + } else { + eventSlave.kindness = 2; + } + } + return `Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, ${he} heads in to finish getting ready and get to work, saving ${V.assistant.name} the necessity of directing ${him}. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in ${his} eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. ${He} makes it to ${his} assignment on time, and no one notices anything unusual about ${him} today.`; + } + + function virginityWarning() { + if (canDoVaginal(eventSlave) && (eventSlave.vagina === 0)) { + return `This option will take ${his} virginity`; + } else if (!canDoVaginal(eventSlave) && (eventSlave.anus === 0)) { + return `This option will take ${his} anal virginity`; + } + } + + function orgasm() { + r = []; + r.push(`You`); + if (V.PC.dick === 0) { + r.push(`don a strap-on and`); + } + r.push(`slide your hands around ${his}`); + if (eventSlave.belly >= 150000) { + r.push(`${belly} distended`); + } else if (eventSlave.weight > 95) { + r.push(`fat`); + } else if (eventSlave.belly >= 5000) { + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnancy swollen`); + } else if (eventSlave.bellyImplant >= 3000) { + r.push(`implant swollen`); + } else { + r.push(`${eventSlave.inflationType}-bloated`); + } + } else if (eventSlave.weight > 30) { + r.push(`pudgy`); + } else if (eventSlave.waist < -95) { + r.push(`cartoonishly narrow`); + } else if (eventSlave.muscles > 30) { + r.push(`ripped`); + } else if (eventSlave.waist < -10) { + r.push(`wasp`); + } else if (eventSlave.weight > 10) { + r.push(`soft`); + } else if (eventSlave.muscles > 5) { + r.push(`toned`); + } else if (eventSlave.weight >= -10) { + r.push(`trim`); + } else { + r.push(`skinny`); + } + r.push(`waist, feeling the warmth of ${his} skin, and gently step forward until ${he}'s between you and the balcony railing. ${He} is silently obedient, not reacting at all other than to obey your direction as to where ${he} should go. For example, when ${he} feels`); + if (V.PC.dick === 0) { + r.push(`the phallus`); + } else { + r.push(`your hardening dick`); + } + r.push(`pressing against ${him}, ${he}`); + if (eventSlave.height >= 170) { + r.push(`unconsciously bends forward a little and cocks ${his} hips to position ${himself}`); + } else { + r.push(`rises up on the balls of ${his} feet to bring ${his} short body up to the right height`); + } + if (canDoVaginal(eventSlave)) { + r.push(`for penetration. ${His}`); + if (eventSlave.vagina > 2) { + r.push(`loose cunt`); + } else if ((eventSlave.vagina > 1)) { + r.push(`pussy`); + } else { + r.push(`tight little pussy`); + } + r.push(`is already moist in expectation, making entry easy.`); + r.push(VCheck.Vaginal(eventSlave, 1)); + } else { + r.push(`for anal. ${He} relaxes ${his}`); + if (eventSlave.anus > 2) { + r.push(`loose anus`); + } else if ((eventSlave.anus > 1)) { + r.push(`asshole`); + } else { + r.push(`tight little asshole`); + } + r.push(`completely, making entry easy.`); + r.push(VCheck.Anal(eventSlave, 1)); + } + r.push(`Your hands rove, teasing ${his} ${eventSlave.nipples} nipples,`); + if (eventSlave.boobs > 1000) { + r.push(`hefting ${his} heavy tits,`); + } else if ((eventSlave.boobs > 300)) { + r.push(`squeezing ${his} healthy breasts,`); + } else { + r.push(`pressing ${him} flat chest,`); + } + if (eventSlave.belly >= 1500) { + r.push(`massaging ${his} rounded`); + if (eventSlave.belly > 10000) { + r.push(`belly and fondling ${his} popped navel.`); + } else { + r.push(`belly.`); + } + } else { + r.push(`and`); + if (eventSlave.weight > 130) { + r.push(`groping ${his} huge gut.`); + } else if (eventSlave.weight > 95) { + r.push(`groping ${his} fat belly.`); + } else if (eventSlave.muscles > 30) { + r.push(`fondling ${his} abs.`); + } else if (eventSlave.weight > 10) { + r.push(`groping ${his} plush belly.`); + } else { + r.push(`fondling ${his} flat stomach.`); + } + } + r.push(`${His} face is complacent and unaffected even as ${his} body responds,`); + if (eventSlave.chastityPenis === 1) { + r.push(`since ${his} body is used to its caged cock being neglected in favor of ${his}`); + if (eventSlave.vagina > -1) { + r.push(`pussy.`); + } else { + r.push(`asspussy.`); + } + } else if ((eventSlave.dick > 0) && (eventSlave.hormoneBalance >= 100)) { + r.push(`${his} useless dick sporting a drop of precum.`); + } else if ((eventSlave.dick > 0) && (eventSlave.balls === 0 || eventSlave.ballType === "sterile")) { + r.push(`${his} soft dick twitching feebly.`); + } else if (eventSlave.dick > 4) { + r.push(`${his} giant penis protruding through a gap in the railing.`); + } else if (eventSlave.dick > 2) { + r.push(`${his} penis pressing hard against the railing.`); + } else if (eventSlave.dick > 0) { + r.push(`${his} pathetic hard-on barely protruding from between ${his} thighs.`); + } else if (eventSlave.clit > 0) { + r.push(`${his} huge clit stiff under a brush from your fingers.`); + } else if (eventSlave.vagina === -1) { + r.push(`${his} asspussy ready and relaxed under a brush from your fingers.`); + } else { + r.push(`${his} pussy warm and wet under a brush from your fingers.`); + } + r.push(`Even ${his} eventual orgasm is entirely mechanical, a simple tightening of ${his}`); + if (canDoVaginal(eventSlave)) { + if (eventSlave.vagina > 2) { + r.push(`gaping cunt,`); + } else if ((eventSlave.vagina > 1)) { + r.push(`traveled pussy,`); + } else { + r.push(`tight vagina,`); + } + } else { + if (eventSlave.anus > 2) { + r.push(`gaping`); + } else if ((eventSlave.anus > 1)) { + r.push(`loosened`); + } else { + r.push(`tight`); + } + r.push(`sphincter,`); + } + r.push(`a gasp of air into ${his} lungs, and a slight shiver. There is a flaw at the corner of ${his} mouth that might be transitory pleasure, but a look`); + if (canSee(eventSlave)) { + r.push(`into ${his}`); + if (hasBothEyes(eventSlave)) { + r.push(`eyes`); + } else { + r.push(`eye`); + } + } else { + r.push(`at ${his} face`); + } + r.push(`confirms that it is not so.`); + return r; + } + } +}; diff --git a/src/events/RESS/modestClothes.js b/src/events/RESS/modestClothes.js new file mode 100644 index 0000000000000000000000000000000000000000..381f3a28a963a2c4ddc7ef82c253c3d42d46eccd --- /dev/null +++ b/src/events/RESS/modestClothes.js @@ -0,0 +1,353 @@ +App.Events.RESSModestClothes = class RESSModestClothes extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + hasAnyArms, + canWalk, + canTalk, + canHear, + s => s.devotion > 20, + s => s.trust > 20, + s => s.rules.speech !== "restrictive", + s => s.choosesOwnClothes !== 1, + s => s.assignment !== Job.QUARTER, + s => getExposure(s) === 0, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + His, He, he, his, him, himself, girl + } = getPronouns(eventSlave); + const {title: Master, say} = getEnunciation(eventSlave); + + V.nextLink = "Next Week"; + + let artDiv = document.createElement("div"); // named container so we can replace it later + App.Events.drawEventArt(artDiv, eventSlave, "no clothing"); + node.appendChild(artDiv); + const clothes = Spoken(eventSlave, eventSlave.clothes); + const desc = SlaveTitle(eventSlave); + + let r = []; + + r.push(`Near the end of ${his} weekly inspection,`); + r.push(contextualIntro(V.PC, eventSlave, "DOM")); + r.push(`asks you a question. The inspection happens to have been at the start of ${his} day, and after you're done with ${him}, ${he}'ll be heading off to get dressed. ${He}'s naked for inspection, of course,`); + if (eventSlave.fetishKnown && eventSlave.fetish === "humiliation") { + r.push(`which has the humiliation fetishist ${desc} decently aroused.`); + } else { + r.push(`but ${he}'s a good ${desc}, and ${he} trusts you, so ${he} has no problem at all with being seen nude.`); + } + r.push(`In fact, that's what ${he} asks you about.`); + App.Events.addParagraph(node, r); + r = []; + + r.push(Spoken(eventSlave, `"${Master},"`), `${he} ${say}s,`, Spoken(eventSlave, `"may I please wear something a little more revealing, just for today?"`)); + if (eventSlave.trust > 95) { + r.push(`${He} trusts you completely, enough to have confidence that you'll understand ${he} isn't questioning you.`); + } else { + r.push(`${He} bites ${his} lip, realizing that ${he} might have come across as questioning you.`); + } + switch (eventSlave.clothes) { + case "a nice maid outfit": + r.push(Spoken(eventSlave, `"Wearing a proper maid's outfit is nice,"`)); + break; + case "a nice nurse outfit": + r.push(Spoken(eventSlave, `"Wearing a proper nurse's outfit is nice,"`)); + break; + case "nice business attire": + r.push(Spoken(eventSlave, `"Wearing a suit is nice,"`)); + break; + case "battledress": + r.push(Spoken(eventSlave, `"Wearing a ${clothes} is nice,"`)); + break; + default: + r.push(Spoken(eventSlave, `"Wearing ${clothes} is nice,"`)); + } + if (eventSlave.trust > 95) { + r.push(`${he} allows.`); + } else { + r.push(`${he} hurries to add.`); + } + if (eventSlave.fetishKnown && eventSlave.fetish === "humiliation") { + r.push(Spoken(eventSlave, `"It's not really embarrassing, though. It would be so sexy to be, um, falling out of my clothes.`)); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "buttslut") { + r.push(Spoken(eventSlave, `"But they cover my asshole.`)); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "boobs") { + r.push(Spoken(eventSlave, `"But they cover my boobs.`)); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "pregnancy" && eventSlave.bellyPreg >= 1500) { + r.push(Spoken(eventSlave, `"But it covers up my pregnancy.`)); + } else if (eventSlave.assignment === Job.WHORE) { + r.push(Spoken(eventSlave, `"But I also like being a prostitute, ${Master}. It'd be fun to try looking like a total whore.`)); + } else if (eventSlave.assignment === Job.PUBLIC) { + r.push(Spoken(eventSlave, `"But I also like being a public slut, ${Master}. It'd be fun to really flaunt it.`)); + } else { + r.push(Spoken(eventSlave, `"But it'd be fun and different to wear something really naughty.`)); + } + r.push(Spoken(eventSlave, `May I please try out something skimpier today?"`)); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`No`, no), + new App.Events.Result(`Show ${him} how much you like ${his} usual outfit`, usual), + new App.Events.Result(`Put ${him} in a string bikini`, bikini), + new App.Events.Result(`Force uncomfortable straps on ${him}`, straps), + ]); + + function no() { + eventSlave.trust += 2; + return `You tell ${him} no. ${He}'s a good enough slave that making a simple request and having you return a straightforward negative without punishment <span class="trust inc">makes ${him} just slightly more trusting.</span> It's nice to be allowed to ask things.`; + } + + function usual() { + $(artDiv).empty(); + App.Events.drawEventArt(artDiv, eventSlave, eventSlave.clothes); + const frag = document.createDocumentFragment(); + let clothesDesc; + switch (eventSlave.clothes) { + case "a long qipao": + case "a slutty qipao": + clothesDesc = `qipao`; + break; + case "a penitent nuns habit": + clothesDesc = `habit`; + break; + case "a slave gown": + case "a ball gown": + clothesDesc = `gown`; + break; + case "a comfortable bodysuit": + clothesDesc = `bodysuit`; + break; + case "a nice nurse outfit": + clothesDesc = `nurse outfit`; + break; + case "a schoolgirl outfit": + clothesDesc = `school clothes`; + break; + case "a nice maid outfit": + clothesDesc = `maid outfit`; + break; + case "a slutty maid outfit": + clothesDesc = `skimpy maid outfit`; + break; + case "a biyelgee costume": + case "a dirndl": + case "a halter top dress": + case "a mini dress": + case "a maternity dress": + clothesDesc = `dress`; + break; + case "a military uniform": + case "a mounty outfit": + case "a red army uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + clothesDesc = `uniform`; + break; + case "spats and a tank top": + clothesDesc = `spats`; + break; + case "a burkini": + case "a monokini": + clothesDesc = `swimsuit`; + break; + case "a chattel habit": + case "a fallen nuns habit": + clothesDesc = `slutty habit`; + break; + case "a succubus outfit": + clothesDesc = `succubus getup`; + break; + case "a hijab and blouse": + case "conservative clothing": + clothesDesc = `conservative clothes`; + break; + default: + clothesDesc = App.Data.clothes.get(eventSlave.clothes).name.toLowerCase(); + } + + r = []; + r.push(`You tell ${him} to go get dressed as usual. ${His} face falls a little, but there was no condemnation in your tone, and ${he} hurries off,`); + if (eventSlave.dick > 6) { + r.push(`monstrous cock dangling.`); + } else if (eventSlave.balls > 4) { + r.push(`big balls dangling.`); + } else if (eventSlave.bellyFluid >= 5000 || eventSlave.weight > 95) { + r.push(`big belly jiggling.`); + } else if (eventSlave.belly >= 5000) { + r.push(`as fast as ${his} swollen belly will allow.`); + } else if ((eventSlave.boobsImplant / eventSlave.boobs) >= .60) { + r.push(`fake tits bouncing.`); + } else if (eventSlave.butt > 4) { + r.push(`${his} big booty jiggling.`); + } else if (eventSlave.boobs > 2000) { + r.push(`udders jiggling.`); + } else { + r.push(`giving you a nice view of ${his} naked rear.`); + } + r.push(`${He} returns quickly, in ${his} proper ${clothesDesc}.`); + r.push(`You tell ${him} that you like how ${he} looks, and that ${he}'s pretty. ${He} wasn't expecting such a blunt compliment, and`); + if (canSee(eventSlave)) { + r.push(`${his} ${App.Desc.eyesColor(eventSlave)} flick down to`); + } else { + r.push(`${he} faces`); + } + r.push(`the ground for a moment as ${he} blushes.`, Spoken(eventSlave, `"T-thank you, ${Master},"`), `${he} stutters.`); + App.Events.addParagraph(frag, r); + r = []; + + r.push(`You add that ${he} looks so good that ${he} had better take ${his} nice clean`); + r.push(`${clothesDesc} off again, because`); + if (canDoVaginal(eventSlave) && eventSlave.vagina !== 0) { + r.push(`you're going to`); + if (V.PC.dick) { + r.push(`fuck`); + r.push(VCheck.Vaginal(eventSlave, 1)); + } else { + r.push(`trib`); + seX(eventSlave, "vaginal", V.PC, "vaginal"); + if (canFemImpreg(eventSlave, V.PC)) { + knockMeUp(eventSlave, 10, 0, -1); + } + } + r.push(`${him} senseless.`); + } else if (canDoAnal(eventSlave) && eventSlave.anus !== 0) { + if (eventSlave.prostate) { + r.push(`you're going to fuck ${his} butt until ${he} cums.`); + } else { + r.push(`you're going to fuck ${his} butt.`); + } + r.push(VCheck.Anal(eventSlave, 1)); + } else { + r.push(`${he}'s going to`); + if (V.PC.dick) { + r.push(`suck your dick until you cover ${him} in cum.`); + seX(eventSlave, "oral", V.PC, "penetrative"); + } else { + r.push(`eat you out until ${he}'s got your pussyjuice running down ${his} chin.`); + seX(eventSlave, "oral", V.PC, "vaginal"); + } + } + r.push(`${He} giggles at the sudden lewdness, and quickly strips naked again, complimented and <span class="devotion inc">eager to be used.</span>`); + App.Events.addParagraph(frag, r); + eventSlave.devotion += 5; + return frag; + } + + function bikini() { + $(artDiv).empty(); + App.Events.drawEventArt(artDiv, eventSlave, "a string bikini"); + const belly = bellyAdjective(eventSlave); + + r = []; + r.push(`You tell ${him} that the wardrobe's sorting system will present ${him} with a new outfit, just for today. ${He}'s to go try it on and come right back, to see how it fits.`); + r.push(Spoken(eventSlave, `"Thanks, ${Master}!"`), `${he} ${say}s brightly, and hurries off to see what's in store for ${him}. ${He} might be a slave and a ${desc} but ${girl}s everywhere love trying on new clothes. ${He} makes an entrance when ${he} comes back, spinning around to show off. ${He}'s wearing the briefest possible string bikini. The top, rather than having patches of material to cover ${his} nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front,`); + if (eventSlave.dick) { + r.push(`which looks rather sad and alone, pushed aside by ${his} dick as it is.`); + } else if (eventSlave.balls > 2) { + r.push(`which allow ${his} balls to spill to either side.`); + } else if (eventSlave.labia) { + r.push(`and it's embraced completely by ${his} generous pussylips.`); + } else { + r.push(`and it threatens to disappear inside ${his} pussylips.`); + } + r.push(Spoken(eventSlave, `"This feels so hot, ${Master},"`), `${he} ${say}s, and`); + if (eventSlave.fetishKnown && eventSlave.fetish === "humiliation") { + r.push(`blushes cutely. ${He} looks up at you,`); + if (canSee(eventSlave)) { + r.push(`sees`); + } else { + r.push(`feels`); + } + r.push(`the way you're staring at ${him}, and hangs ${his} head, blushing even harder.`); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "buttslut") { + r.push(`turns around again, bending a little and cocking ${his} hips to show off the way the string between ${his} buttocks totally fails to conceal ${his}`); + if (eventSlave.anus > 2) { + r.push(`huge soft asspussy.`); + } else if (eventSlave.anus > 1) { + r.push(`nice butthole.`); + } else { + r.push(`tight little anus.`); + } + } else if (eventSlave.fetishKnown && eventSlave.fetish === "boobs") { + r.push(`bounces ${his}`); + if (eventSlave.boobsImplant) { + r.push(`fake tits.`); + } else if (eventSlave.boobs > 8000) { + r.push(`earth-shattering tits.`); + } else if (eventSlave.boobs > 2000) { + r.push(`huge boobs.`); + } else if (eventSlave.boobs > 400) { + r.push(`boobs.`); + } else { + r.push(`petite chest.`); + } + r.push(`Giggling, ${he} bounces harder, and ${his} nipples escape from ${his} top, such as it is.`); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "pregnancy" && eventSlave.bellyPreg >= 1500) { + r.push(`and attempts to pull the strings over the front of ${his} belly. Without delay, they slide right back to the sides of the ${belly} dome, eliciting a giggle from the preggo slut.`); + } else if (eventSlave.assignment === Job.WHORE || eventSlave.assignment === Job.PUBLIC) { + r.push(`sneaks a hand under the string around ${his} waist, tugging ${his} bottom up`); + if (eventSlave.vagina !== -1) { + r.push(`until the string between ${his} legs is pulled up into the entrance of ${his} womanhood.`); + } else { + r.push(`and turning sideways to suggest ${his} ass.`); + } + if (eventSlave.assignment === Job.WHORE) { + r.push(Spoken(eventSlave, `"Guys'll pay money for this,"`)); + } else { + r.push(Spoken(eventSlave, `"Guys'll line up to fuck this,"`)); + } + r.push(`${he} giggles.`); + } else { + r.push(`bounces a little, smiling.`, Spoken(eventSlave, `"I'm basically naked,"`), `${he} giggles.`); + r.push(Spoken(eventSlave, `"Today is going to be fun. The other ${girl}s'll be jealous you wanted me to look so slutty. Love you, ${Master}."`)); + } + r.push(`${He}'s happy you indulged ${him}, and <span class="trust inc">satisfied that you think ${he}'s cute</span> enough to have around (practically) nude.`); + eventSlave.trust += 5; + return r; + } + + function straps() { + $(artDiv).empty(); + App.Events.drawEventArt(artDiv, eventSlave, "uncomfortable straps"); + const belly = bellyAdjective(eventSlave); + r = []; + + r.push(`You tell ${him} that the wardrobe's sorting system will present ${him} with a new outfit, just for today. ${He}'s to go try it on and come right back, to see how it fits.`); + r.push(Spoken(eventSlave, `"Thanks, ${Master}!"`), `${he} ${say}s brightly, and hurries off to see what's in store for ${him}. ${He} might be a slave and a ${desc} but ${girl}s everywhere love trying on new clothes. ${He}'s wrong to be so enthusiastic. ${He} comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what ${he} was expecting, but ${he} did ${his} best to obey. ${He}'s <span class="trust dec">tightened ${his} own straps down</span> until they're just short of cutting off circulation, in an obvious effort to please you. You ask ${him} how ${he} likes ${his} outfit.`); + r.push(Spoken(eventSlave, `"It's nice, ${Master},"`), `${he} ${say}s, but ${he} sounds a little sad.`); + if (eventSlave.fetishKnown && eventSlave.fetish === "humiliation") { + r.push(Spoken(eventSlave, `"I'm just a worthless humiliation slut. I love having steel rings around my holes like this,"`), `${he} adds.`); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "buttslut") { + r.push(`${He} turns to show you ${his} asshole, framed by a steel ring that spreads ${his} buttocks to keep it nice and defenseless.`); + r.push(Spoken(eventSlave, `"I know my backpussy's the best thing about me,"`), `${he} adds.`); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "boobs") { + r.push(`${He} does ${his} best to thrust out ${his} chest, making the straps creak.`); + r.push(Spoken(eventSlave, `"I know I'm, I'm just, just a pair of boobs,"`), `${he} adds.`); + } else if (eventSlave.fetishKnown && eventSlave.fetish === "pregnancy" && eventSlave.bellyPreg >= 1500) { + r.push(`${He} does ${his} best to thrust out ${his} ${belly} belly, making the straps creak ominously.`); + r.push(Spoken(eventSlave, `"I know I'm, I'm just, just a baby maker,"`), `${he} adds.`); + } else if (eventSlave.assignment === Job.WHORE || eventSlave.assignment === Job.PUBLIC) { + r.push(`${He} hangs ${his} head.`); + r.push(Spoken(eventSlave, `"I feel like a worthless ${eventSlave.assignment === Job.WHORE ? `whore` : `bitch`},"`), `${he} adds.`, Spoken(eventSlave, `"Guess I am."`)); + } else { + r.push(`${He} indicates the steel rings that frame ${his} holes and keep them defenseless.`); + r.push(Spoken(eventSlave, `"I know I'm just a collection of fuckholes,"`), `${he} adds.`); + } + r.push(`${He} sounds like ${he}'s trying to convince ${himself}, but ${his} <span class="devotion inc">abasement is not feigned.</span>`); + eventSlave.devotion += 5; + eventSlave.trust -= 5; + return r; + } + } +}; diff --git a/src/events/RESS/obedientIdiot.js b/src/events/RESS/obedientIdiot.js index 23598c22a531fb28503c7e6ae9abe04f7517f425..9d2edffc55a0a6027e923ab5d2e1203fcc6c591e 100644 --- a/src/events/RESS/obedientIdiot.js +++ b/src/events/RESS/obedientIdiot.js @@ -76,7 +76,7 @@ App.Events.RESSObedientIdiot = class RESSObedientIdiot extends App.Events.BaseEv t.push(`${He} mumbles a hesitant question:`); t.push(Spoken(eventSlave, `"${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}, am I a good slave?"`)); } - t.push(`You tell ${him} that ${he} is, running a hand ${eventSlave.hStyle === "shaved bald" ? `across ${his} bald scalp` : `through ${his} hair`}. ${He} seems <span class="devotion inc">reassured,</span> and <span class="trust inc">thankful</span> when you give ${him} a cup of ${his} proper rations from your own hand.`); + t.push(`You tell ${him} that ${he} is, running a hand ${eventSlave.hStyle.includes("bald") ? `across ${his} bald scalp` : `through ${his} hair`}. ${He} seems <span class="devotion inc">reassured,</span> and <span class="trust inc">thankful</span> when you give ${him} a cup of ${his} proper rations from your own hand.`); eventSlave.devotion += 2; eventSlave.trust += 2; diff --git a/src/events/RESS/penitent.js b/src/events/RESS/penitent.js new file mode 100644 index 0000000000000000000000000000000000000000..ad68b264b4be6d98b2724a80f7f6c2e33f3675c9 --- /dev/null +++ b/src/events/RESS/penitent.js @@ -0,0 +1,224 @@ +App.Events.RESSPenitent = class RESSPenitent extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + hasAnyArms, + canStand, + canTalk, + s => s.assignment !== Job.QUARTER, + s => s.clothes === "a penitent nuns habit", + s => s.devotion >= -20 && s.devotion <= 50 + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const {His, He, he, his, him, himself} = getPronouns(eventSlave); + const {title: Master} = getEnunciation(eventSlave); + + V.nextLink = "Next Week"; + + let artDiv = document.createElement("div"); // named container so we can replace it later + App.Events.drawEventArt(artDiv, eventSlave); + node.appendChild(artDiv); + + let r = []; + r.push(`As`); + r.push(contextualIntro(V.PC, eventSlave, "DOM")); + r.push(`comes before you for routine inspection, it is obvious that ${his} penitent habit is having an effect. ${He} moves with exquisite care, desperate to minimize the`); + if (eventSlave.pregKnown === 1 && eventSlave.belly >= 1500) { + r.push(`chafing, especially on ${his} growing pregnancy.`); + } else { + r.push(`chafing.`); + } + r.push(`${He} seems totally concentrated on obedience: the constant discomfort often has the effect of forcing a slave to marshal all ${his} mental faculties in the service of pain avoidance.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`${His} responses to your routine questions are so mechanical and honest that you make an impromptu confession of it. You require ${him} to tell the full tale of all ${his} minor infractions against the rules, and even order ${him} to confess ${his} resistant thoughts to you as well. Past the ability to resist, ${he} pours out a stream of ${his} inner fears, hopes, and feelings about ${his} life as a sex slave.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Require ${him} to self-flagellate`, flagellate), + (canImpreg(eventSlave, V.PC) && (eventSlave.mpreg === 1 && canDoAnal(eventSlave)) || (eventSlave.ovaries === 1 && canDoVaginal(eventSlave))) + ? new App.Events.Result(`Put a baby in ${him} while ${he} prays`, babyPray, virginityWarning()) + : new App.Events.Result(), + (canDoVaginal(eventSlave)) + ? new App.Events.Result(`Fuck ${him} while ${he} prays`, fuckPray, (eventSlave.vagina === 0 ? `This option will take ${his} virginity` : null)) + : new App.Events.Result(), + (canDoAnal(eventSlave)) + ? new App.Events.Result(`Sodomize ${him} while ${he} prays`, analPray, (eventSlave.anus === 0 ? `This option will take ${his} anal virginity` : null)) + : new App.Events.Result(), + ]); + + function flagellate() { + r = []; + // replace slave art + $(artDiv).empty(); + App.Events.drawEventArt(artDiv, eventSlave, "no clothing"); + + r.push(`You tell ${him} that you will offer ${him} a method of expiating ${his} deep and troubling sin. ${He} looks almost hopeful at this, until you lead ${him} out onto a balcony and order ${him} to strip before handing ${him} a simple length of hempen rope. ${He} already knows what's coming next, but ${he} breaks down as ${he} obeys your orders to kneel. ${He} sobs abjectly, but you don't even have to give the next order: ${he}'s already flogging the rope against ${his} own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light ${he}'s hitting ${himself}. ${He} flogs ${himself} harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When ${he} strikes so hard that ${he} draws a little blood, you finally say the terrible word. When you're finally satisfied with ${his} self-torture, ${he}'s so exhausted that you carry ${his} limp,`); + if (V.seePee === 1) { + r.push(`bloody, vaguely urine-scented`); + } else { + r.push(`bloody`); + } + if (eventSlave.bellyPreg >= 1500) { + r.push(r.pop() + `, gravid`); + } + r.push(`form into the shower, wash ${him}, and apply curatives, <span class="health dec">though ${he}'s still quite injured.</span> ${He} wakes to find ${himself} curled up in your lap, and ${he} stiffens for a brief moment before <span class="devotion inc">relaxing against your chest,</span> weeping softly.`); + if (eventSlave.fetish !== "submissive" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "submissive"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">submission</span> with sexual fulfillment.`); + } + if ((eventSlave.behavioralFlaw !== "odd") && (random(1, 100) > 50)) { + eventSlave.behavioralFlaw = "odd"; + r.push(`The terrible experience has left ${him} with <span class="flaw gain">unpleasant nervous tics.</span>`); + } + eventSlave.devotion += 10; + healthDamage(eventSlave, 10); + return r; + } + + function virginityWarning() { + if (eventSlave.anus === 0 && eventSlave.mpreg === 1) { + return `This option will take ${his} anal virginity`; + } else if (eventSlave.vagina === 0) { + return `This option will take ${his} virginity`; + } + } + + function babyPray() { + r = []; + r.push(`${eventSlave.slaveName} finds ${himself} standing in front of you, feeling you roughly using two fingers to finger ${his}`); + if (eventSlave.mpreg === 1) { + r.push(`asspussy.`); + } else { + r.push(`pussy.`); + } + r.push(`${He} gasps out:`); + r.push(Spoken(eventSlave, `"Oh ${Master}, owner, protector, and father of my children, forgive my sins, just as you forgave my sisters in slavery before me. Count not my transgressions against your rules, but, rather, the tears of my womb. Remember not my iniquities but my willingness to be bred by you. I long to serve your`)); + if (V.PC.vagina !== -1) { + r.push(`futa`); + } + r.push(Spoken(eventSlave, `dick, and beg that you will use me and bless my body with your offspring. I promise to submit to you as your breeding slut all the days of my servitude, and to grow heavy with child, again and again."`)); + r.push(`${He} moans with relief when ${he} feels you withdraw your penetrating digits partway through ${his} recitation, but by the time ${he}'s finished, you've shoved your dick up ${his} waiting`); + if (eventSlave.mpreg === 1) { + r.push(`asshole`); + } else { + r.push(`pussy`); + } + r.push(`and are close to blessing ${him} with a load of cum. ${He} <span class="devotion inc">does ${his} best</span> to relax and resumes,`, Spoken(eventSlave, `"Oh, ${Master}..."`)); + if (eventSlave.mpreg === 1) { + r.push(VCheck.Anal(eventSlave, 1)); + } else { + r.push(VCheck.Vaginal(eventSlave, 1)); + } + knockMeUp(eventSlave, 100, 2, -1); + if (eventSlave.fetish !== "humiliation" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "humiliation"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">humiliation</span> with sexual fulfillment.`); + } else if (eventSlave.fetish !== "submissive" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "submissive"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">submission</span> with sexual fulfillment.`); + } else if (eventSlave.fetish !== "pregnancy" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "pregnancy"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">carrying your children</span> with sexual fulfillment.`); + } + eventSlave.devotion += 4; + return r; + } + + function fuckPray() { + r = []; + r.push(`${eventSlave.slaveName} finds ${himself} standing in front of you, feeling you roughly using two fingers to finger ${his} pussy. ${He} gasps out:`); + r.push(Spoken(eventSlave, `"Oh ${Master}, owner and protector, forgive my sins, just as you forgave my sisters in slavery before me. Count not my transgressions against your rules, but, rather, my tears of service. Remember not my iniquities but my willingness to be raped by you. I long to serve your`)); + if (V.PC.dick === 0) { + r.push(Spoken(eventSlave, `pussy,`)); + } else { + if (V.PC.vagina !== -1) { + r.push(`futa`); + } + r.push(Spoken(eventSlave, `dick,`)); + } + r.push(Spoken(eventSlave, `and beg that you will use me and make your dwelling place within my`)); + if (eventSlave.vagina === 0) { + r.push(Spoken(eventSlave, `virgin folds.`)); + } else { + r.push(Spoken(eventSlave, `feminine slit.`)); + } + r.push(Spoken(eventSlave, `I promise to submit to you as your vaginal slut all the days of my servitude."`)); + r.push(`${He} moans with relief when ${he} feels you withdraw your penetrating digits partway through ${his} recitation, but by the time ${he}'s finished, you've shoved`); + if (V.PC.dick === 0) { + r.push(`a strap-on`); + } else { + r.push(`your dick`); + } + r.push(`up ${his} waiting pussy. ${He} <span class="devotion inc">does ${his} best</span> to relax and resumes,`, Spoken(eventSlave, `"Oh ${Master}..."`)); + r.push(VCheck.Vaginal(eventSlave, 1)); + if (eventSlave.fetish !== "humiliation" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "humiliation"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">humiliation</span> with sexual fulfillment.`); + } else if (eventSlave.fetish !== "submissive" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "submissive"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">submission</span> with sexual fulfillment.`); + } + eventSlave.devotion += 4; + return r; + } + + function analPray() { + r = []; + r.push(`${eventSlave.slaveName} finds ${himself} standing in front of you, feeling you roughly probe ${his} ass with two fingers. ${He} gasps out:`); + r.push(Spoken(eventSlave, `"Oh ${Master}, owner and protector, forgive my sins, just as you forgave my sisters in slavery before me. Count not my transgressions against your rules, but, rather, my tears of anal service. Remember not my iniquities but my willingness to be assraped by you. I long to serve your`)); + if (V.PC.dick === 0) { + r.push(Spoken(eventSlave, `pussy,`)); + } else { + if (V.PC.vagina !== -1) { + r.push(`futa`); + } + r.push(Spoken(eventSlave, `dick,`)); + } + r.push(Spoken(eventSlave, `and beg that you will use me and make your dwelling place within my butthole. I promise to submit to you as your anal slut all the days of my servitude."`)); + r.push(`${He} moans with relief when ${he} feels you withdraw your penetrating digits partway through ${his} recitation, but by the time ${he}'s finished, you've shoved`); + if (V.PC.dick === 0) { + r.push(`a strap-on`); + } else { + r.push(`your dick`); + } + r.push(`up ${his} loosened ass. ${He} <span class="devotion inc">does ${his} best</span> to relax and resumes,`, Spoken(eventSlave, `"Oh ${Master}..."`)); + r.push(VCheck.Anal(eventSlave, 1)); + if (eventSlave.fetish !== "humiliation" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "humiliation"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">humiliation</span> with sexual fulfillment.`); + } else if (eventSlave.fetish !== "submissive" && fetishChangeChance(eventSlave) > random(1, 100)) { + eventSlave.fetish = "submissive"; + eventSlave.fetishKnown = 1; + eventSlave.fetishStrength = 10; + r.push(`${He} has come to associate <span class="fetish gain">submission</span> with sexual fulfillment.`); + } + eventSlave.devotion += 4; + return r; + } + } +}; diff --git a/src/events/RESS/restrictedSmart.js b/src/events/RESS/restrictedSmart.js new file mode 100644 index 0000000000000000000000000000000000000000..d6cbd90c815f04522250c7ea47d7835624dd0dfc --- /dev/null +++ b/src/events/RESS/restrictedSmart.js @@ -0,0 +1,249 @@ +App.Events.RESSRestrictedSmart = class RESSRestrictedSmart extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + canTalk, + canHear, + s => s.assignment !== Job.QUARTER, + s => s.rules.speech === "restrictive", + s => s.intelligence > 15, + s => s.trust >= -20, + s => s.devotion <= 20, + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + His, He, he, his, him, himself, girl + } = getPronouns(eventSlave); + const {title: Master, say} = getEnunciation(eventSlave); + const belly = bellyAdjective(eventSlave); + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave, "no clothing"); + + let r = []; + r.push(`During a routine inspection of`); + r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ",")); + r.push(`you notice that ${he}'s behaving a little strangely. ${He}'s participating in the inspection with almost manic attention, trying to anticipate your directions and hanging desperately on your every word. After a moment, you reflect that ${he}'s a smart ${girl}, and is probably suffering for a lack of conversation. As you regard ${him}`); + if (!hasAnyLegs(eventSlave)) { + r.push(`sitting`); + if (hasAnyArms(eventSlave)) { + r.push(`helplessly`); + } else { + r.push(`limblessly`); + } + } else if (!canStand(eventSlave)) { + r.push(`kneeling`); + } else { + r.push(`standing`); + } + r.push(`there, ${his}`); + if (canSee(eventSlave)) { + r.push(`eyes almost scream`); + } else { + r.push(`face almost screams`); + } + r.push(`at you for some sort of stimulation. ${His} life is not without mental interest, but talking is one of the quintessential human behaviors, and having it taken away is very difficult for someone as intelligent as ${him}. A mute almost might have it easier, for ${he} is also denied the volubility through sign language that mute slaves under less restrictive rules often enjoy.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Discuss ${his} future with ${him}`, discuss), + canDoAnal(eventSlave) + ? new App.Events.Result(`Let ${him} talk during a rough buttfuck`, buttfuck, eventSlave.anus === 0 ? `This option will take ${his} anal virginity` : null) + : new App.Events.Result(), + canDoVaginal(eventSlave) + ? new App.Events.Result(`Let ${him} try to talk during a vigorous fucking`, fucking, eventSlave.vagina === 0 ? `This option will take ${his} virginity` : null) + : new App.Events.Result(), + ]); + + function discuss() { + r = []; + r.push(`You announce matter-of-factly that ${he}'s allowed to speak temporarily, and that you'll be discussing where ${he} is and where ${he} sees ${himself} in the near future. ${He}'s disconcerted by the subject but so desperate for conversation that ${he}'s overjoyed anyway.`); + r.push(Spoken(eventSlave, `"I understand what you're doing, ${Master},"`), `${he} ${say}s forthrightly.`, Spoken(eventSlave, `"I'm to be broken down into a devoted slave."`), `${He} looks thoughtful.`, Spoken(eventSlave, `"I'll help you with that. It'll be easier if I do, won't it?"`), `${He} looks up, and you`); + if (canSee(eventSlave)) { + r.push(`nod in affirmation`); + } else { + r.push(`acknowledge ${him}`); + } + r.push(`${he} gives you a rueful smile.`, Spoken(eventSlave, `"A good slut would offer to give you oral now, I think. So, ${Master}, may I please be allowed to ${V.PC.dick === 0 ? "lick your pussy" : "suck your cock"}"?`)); + if (canSee(eventSlave)) { + r.push(`You nod,`); + } else { + r.push(`You acknowledge,`); + } + r.push(`and tell ${him} that the rules are back in effect.`); + if (isAmputee(eventSlave)) { + r.push(`As you get ${his} helpless form into position,`); + } else if (eventSlave.belly >= 300000) { + r.push(`As ${he} struggles to get into position with ${his} ${belly} stomach in the way,`); + } else if (!canStand(eventSlave)) { + r.push(`As ${he} shifts into position,`); + } else if (eventSlave.belly >= 10000) { + r.push(`As ${he} gently lowers ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`gravid`); + } else { + r.push(`bloated`); + } + r.push(`form to`); + if (hasBothLegs(eventSlave)) { + r.push(`its knees,`); + } else { + r.push(`the ground,`); + } + } else { + r.push(`As ${he} gets down on`); + if (hasBothLegs(eventSlave)) { + r.push(`${his} knees,`); + } else { + r.push(`the ground,`); + } + } + r.push(`${he} <span class="devotion inc">focuses on the task</span> in front of ${him} with all ${his} considerable intelligence, clearly having decided to make things easier on ${himself} by conforming to ${his} new life.`); + eventSlave.devotion += 4; + seX(eventSlave, "oral", V.PC, "penetrative"); + return r; + } + + function buttfuck() { + r = []; + if (isAmputee(eventSlave)) { + r.push(`You lay ${his} fuckpuppet torso across`); + } else if (!canStand(eventSlave)) { + r.push(`You help ${him} lie back on`); + } else if (eventSlave.belly >= 5000) { + r.push(`You tip ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`motherly`); + } else { + r.push(`swollen`); + } + r.push(`body backwards onto`); + } else { + r.push(`You push ${him} backwards onto`); + } + r.push(`your desk, groping ${his}`); + if (eventSlave.butt > 15) { + r.push(`absurd`); + } else if (eventSlave.butt > 10) { + r.push(`immense`); + } else if (eventSlave.butt > 7) { + r.push(`huge`); + } else if (eventSlave.butt > 4) { + r.push(`big`); + } else if (eventSlave.butt > 1) { + r.push(`moderate`); + } else { + r.push(`meager`); + } + r.push(`butt. You instruct ${him} that ${he}'ll be allowed to talk if ${he} wants, but not yet, as you`); + if (V.PC.dick === 0) { + r.push(`push a couple of fingers up`); + } else { + r.push(`line your cock up with`); + } + if (eventSlave.anus > 2) { + r.push(`${his} gaping asshole.`); + } else if (eventSlave.anus > 1) { + r.push(`${his} sizable asshole.`); + } else { + r.push(`${his} tight asshole.`); + } + r.push(`As you penetrate ${him}, you tell ${him} that the time to talk is now.`); + if (eventSlave.anus > 2) { + r.push(`To make the sex sufficiently uncomfortable, you`); + if (V.PC.dick === 0) { + r.push(`finger fuck`); + } else { + r.push(`dick`); + } + r.push(`${him} without mercy.`); + } else if (eventSlave.anus > 1) { + r.push(`To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting ${him} through initial anal penetration over and over.`); + } else { + r.push(`${His} butt is so tight that just a simple assfuck makes ${him} uncomfortable enough.`); + } + r.push(`${He} opens ${his} mouth, closes it again, grunts at the burning sensation of your rough use of ${his} poor ass, and then shuts up. You ask ${him} if ${he}'s sure ${he} doesn't have anything to say, and ${he} makes ${his} one verbal comment of the day:`, Spoken(eventSlave, `"No, ${Master}."`), `${He} understands the lesson here: fail to <span class="devotion inc">conform,</span> <span class="trust dec">get assraped.</span> It's as simple as that.`); + eventSlave.devotion += 3; + eventSlave.trust -= 3; + r.push(VCheck.Anal(eventSlave, 1)); + return r; + } + + function fucking() { + r = []; + if (isAmputee(eventSlave)) { + r.push(`You lay ${his} fuckpuppet torso across`); + } else if (!canStand(eventSlave)) { + r.push(`You help ${him} lie back on`); + } else if (eventSlave.belly >= 5000) { + r.push(`You tip ${his}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`motherly`); + } else { + r.push(`swollen`); + } + r.push(`body backwards onto`); + } else { + r.push(`You push ${him} backwards onto`); + } + r.push(`your desk, groping ${his}`); + if (eventSlave.butt > 15) { + r.push(`absurd`); + } else if (eventSlave.butt > 10) { + r.push(`immense`); + } else if (eventSlave.butt > 7) { + r.push(`huge`); + } else if (eventSlave.butt > 4) { + r.push(`big`); + } else if (eventSlave.butt > 1) { + r.push(`moderate`); + } else { + r.push(`meager`); + } + r.push(`butt. You instruct ${him} that ${he}'ll be allowed to talk if ${he} wants, but not yet, as you`); + if (V.PC.dick === 0) { + r.push(`push a dildo into`); + } else { + r.push(`line your cock up with`); + } + r.push(`${his}`); + if (eventSlave.anus > 2) { + r.push(`gaping`); + } else if (eventSlave.anus > 1) { + r.push(`sizable`); + } else { + r.push(`tight`); + } + r.push(`pussy. As you penetrate ${him}, you tell ${him} that the time to talk is now.`); + if (eventSlave.vagina > 2) { + r.push(`To make the sex sufficiently overwhelming, you`); + if (V.PC.dick === 0) { + r.push(`ram`); + } else { + r.push(`dick`); + } + r.push(`${him} without mercy.`); + } else if (eventSlave.vagina > 1) { + r.push(`To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting ${him} through initial penetration over and over.`); + } else { + r.push(`${His} cunt is so tight that just a simple fucking overwhelms ${him} with pleasure.`); + } + r.push(`${He} opens ${his} mouth, closes it again, groaning at the sensation of your rough use of ${his} body, and then stops trying. You ask ${him} if ${he}'s sure ${he} doesn't have anything to say, and ${he} lets off an orgasmic moan. There's <span class="devotion inc">no need to talk</span> when your owner is <span class="trust inc">fucking your brains out.</span>`); + eventSlave.devotion += 3; + eventSlave.trust += 3; + r.push(VCheck.Vaginal(eventSlave, 1)); + return r; + } + } +}; diff --git a/src/events/RESS/whoreRebellious.js b/src/events/RESS/whoreRebellious.js new file mode 100644 index 0000000000000000000000000000000000000000..d973352082d223248d5621c44f049bde4bb3c170 --- /dev/null +++ b/src/events/RESS/whoreRebellious.js @@ -0,0 +1,193 @@ +App.Events.RESSWhoreRebellious = class RESSWhoreRebellious extends App.Events.BaseEvent { + eventPrerequisites() { + return []; // always valid if sufficient actors can be cast successfully + } + + actorPrerequisites() { + return [ + [ // single event slave + s => s.fetish !== "mindbroken", + s => s.assignment === Job.WHORE, + s => s.devotion < -20, + s => s.trust >= -20, + s => (canDoAnal(s) || canDoVaginal(s)) + ] + ]; + } + + execute(node) { + /** @type {Array<App.Entity.SlaveState>} */ + let [eventSlave] = this.actors.map(a => getSlave(a)); + const { + He, he, His, his, him, himself, girl + } = getPronouns(eventSlave); + + V.nextLink = "Next Week"; + + App.Events.drawEventArt(node, eventSlave, "restrictive latex"); // TODO: Add mouth-plug? + + + let r = []; + + r.push(App.UI.DOM.slaveDescriptionDialog(eventSlave)); + r.push(`is kicked out of bed early in the morning. ${He}'s not yet obedient, but ${he} has to earn ${his} keep anyway. This means selling ${his} body, or in ${his} particular case, having ${his} unwilling body sold. ${He} knows the score and allows ${himself} to be stuffed into a special latex public whore suit. ${He}'s learned the hard way that resisting being suited up just means ${he}'ll be painfully punished before being suited up.`); + App.Events.addParagraph(node, r); + r = []; + + r.push(`The suit is quite special. It is made of thick, durable latex with temperature regulation and anchor points for restraint. It is specially crafted to be able to accommodate its wearer's ${eventSlave.boobs > 250 ? "tits" : "breast"}, belly,`); + if (V.seeDicks !== 0) { + r.push(`dick, balls,`); + } + r.push(`and rear, however large. It has a hole at ${his} mouth that holds ${his} jaws well open, with a plug to fill it completely when not in use. ${He} breathes through a port at ${his} nose that muffles all noise, in and out.`); + if (eventSlave.dick > 0) { + r.push(`${His} cock is neglected inside the latex, with no means of access.`); + } + if (eventSlave.vagina !== -1) { + r.push(`There's a hole over ${his} pussy, of course.`); + } + r.push(`Finally, there's a hole over ${his} anus.`); + App.Events.addParagraph(node, r); + r = []; + + r.push(`${He} will spend the day restrained in public, with your other slaves periodically stopping by to hydrate ${him} and wash out ${his} holes.`); + + App.Events.addParagraph(node, r); + App.Events.addResponses(node, [ + new App.Events.Result(`Increase ${his} assignment to 24 hours a day`, H24, virginityWarning()), + new App.Events.Result(`Take the first and last every day`, firstLast, virginityWarning()), + (V.arcade > 0) + ? new App.Events.Result(`Sentence ${him} to a month in the arcade`, arcade) + : new App.Events.Result(), + ]); + + function virginityWarning() { + if ((eventSlave.anus === 0 && canDoAnal(eventSlave)) || (eventSlave.vagina === 0 && canDoVaginal(eventSlave))) { + return `This option will take ${his} virginity`; + } + return null; + } + + function popCherry() { + if (eventSlave.vagina === 0 && canDoVaginal(eventSlave) && eventSlave.anus === 0 && canDoAnal(eventSlave)) { + eventSlave.anus++; + eventSlave.vagina++; + VCheck.Both(eventSlave, 1); + return `You made sure to claim <span class="virginity loss">both ${his} virginity and anal cherry</span> before anyone else could.`; + } else if (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) { + eventSlave.vagina++; + VCheck.Vaginal(eventSlave, 1); + return `You made sure to claim <span class="virginity loss">${his} virginity</span> before anyone else could.`; + } else if (eventSlave.anus === 0 && canDoAnal(eventSlave)) { + eventSlave.anus++; + VCheck.Anal(eventSlave, 1); + return `You made sure to claim <span class="virginity loss">${his} anal cherry</span> before anyone else could.`; + } + } + + function H24() { + r = []; + r.push(`You give ${contextualIntro(V.PC, eventSlave)} no indication that ${his} public use assignment is about to change. Late in the day, when ${his} shift would normally end, another of your slaves simply maintains ${him} as usual and then leaves ${him} be. ${eventSlave.slaveName} is so deprived of any way to tell time that ${he} doesn't realize ${he}'s been left for some time. The first indication ${he} gets that something's different is when liquid food is squirted down ${his} throat the next morning. When ${he}'s finally stripped out of the suit at the end of the week, ${he}'s pale and wan and ${his} holes are puffy and red. <span class="health dec">${His} health was damaged.</span> However, ${his} permanent presence became quite noted. <span class="reputation inc">Your reputation has increased.</span> And when ${he}'s out of the suit, ${he} instantly begs you to allow ${him} to do anything to save ${himself} from more of that. <span class="trust dec">${His} fear of you has increased.</span>`); + r.push(popCherry()); + repX(500, "event", eventSlave); + healthDamage(eventSlave, 10); + eventSlave.trust -= 10; + if (canDoVaginal(eventSlave)) { + seX(eventSlave, "vaginal", "public", "penetrative", 10); + if (!canDoAnal(eventSlave)) { + seX(eventSlave, "vaginal", "public", "penetrative", 10); + } + if (canGetPregnant(eventSlave) && eventSlave.eggType === "human") { + r.push(knockMeUp(eventSlave, 10, 2, -2)); + } + } + if (canDoAnal(eventSlave)) { + seX(eventSlave, "anal", "public", "penetrative", 10); + if (!canDoVaginal(eventSlave)) { + seX(eventSlave, "anal", "public", "penetrative", 10); + } + if (canGetPregnant(eventSlave) && eventSlave.eggType === "human") { + r.push(knockMeUp(eventSlave, 10, 1, -2)); + } + } + seX(eventSlave, "oral", "public", "penetrative", 10); + return r; + } + + function firstLast() { + r = []; + r.push(`When ${contextualIntro(V.PC, eventSlave)} feels a cock entering ${his} mouth right after ${he}'s suited up, ${he} knows it's you and wriggles as best ${he} can in the suit. It doesn't help much, and ${his} struggles don't prevent you from moving from ${his} mouth to ${his} ass, either. At the end of the day, on the other hand, the`); + // There is a function planned for this in the male slave overhaul. DO NOT FORGET IT! + if (girl === "girl") { + r.push(`female-shaped`); + } else { + r.push(`male-shaped`); + } + r.push(`latex form is completely still and quiescent as you`); + if (V.PC.dick === 0) { + r.push(`use a couple of fingers to brutally molest`); + } else { + r.push(`molest`); + } + r.push(`each of its holes. It takes`); + if (canDoVaginal(eventSlave)) { + r.push(`a serious vaginal reaming`); + } else { + r.push(`viciously hard anal penetration`); + } + r.push(`to elicit any response at all, and even then, it's just the slightest hint of a moan. <span class="trust dec">${His} fear of you has increased.</span>`); + r.push(popCherry()); + eventSlave.trust -= 5; + if (canDoVaginal(eventSlave)) { + seX(eventSlave, "vaginal", "public", "penetrative", 6); + if (!canDoAnal(eventSlave)) { + seX(eventSlave, "vaginal", "public", "penetrative", 3); + } + if (canGetPregnant(eventSlave) && eventSlave.eggType === "human") { + r.push(knockMeUp(eventSlave, 10, 2, -2)); + } + } + if (canDoAnal(eventSlave)) { + seX(eventSlave, "anal", "public", "penetrative", 6); + if (!canDoVaginal(eventSlave)) { + seX(eventSlave, "anal", "public", "penetrative", 3); + } + if (canGetPregnant(eventSlave) && eventSlave.eggType === "human") { + r.push(knockMeUp(eventSlave, 10, 1, -2)); + } + } + seX(eventSlave, "oral", "public", "penetrative", 7); + + return r; + } + + function arcade() { + r = []; + r.push(`When ${he} realizes what ${his} punishment is, ${contextualIntro(V.PC, eventSlave)} ${canTalk(eventSlave) ? "screams and " : ""}begs, but you are obdurate.`); + if (eventSlave.muscles > 30) { + r.push(`${His} powerful form has to be sedated for immurement in the arcade.`); + } else if ((eventSlave.weight >= 190)) { + r.push(`${He} is so massively fat that immuring ${him} in the arcade is a struggle, even when ${he} isn't trying to.`); + } else if (eventSlave.belly >= 120000) { + r.push(`${He} is so enormously gravid that immuring ${him} in the arcade is a hassle, even though ${his} ${bellyAdjective(eventSlave)} middle limits ${his} ability to struggle.`); + } else if ((eventSlave.weight >= -10)) { + r.push(`${His} desperate struggles make immuring ${him} in the arcade difficult.`); + } else if (eventSlave.belly >= 1500) { + r.push(`${His}`); + if (eventSlave.bellyPreg >= 3000) { + r.push(`pregnant`); + } else { + r.push(bellyAdjective(eventSlave)); + } + r.push(`body makes it slightly difficult to fit ${him} properly into the restraints for immurement in the arcade.`); + } else if (eventSlave.muscles < -15) { + r.push(`${His} weak body makes immuring ${him} in the arcade pathetically easy.`); + } else { + r.push(`${His} thin form makes immuring ${him} in the arcade pathetically easy.`); + } + r.push(`After ${he}'s properly confined, the only sign of ${his} discomfiture is a slight movement of ${his} butt as ${he} wriggles desperately against ${his} restraints.`); + r.push(assignJob(eventSlave, Job.ARCADE)); + eventSlave.sentence = 4; + return r; + } + } +}; diff --git a/src/events/RETS/reAnalCowgirl.js b/src/events/RETS/reAnalCowgirl.js index 79ca7821de80e541ddeb5f6b4bac36ea7cf06243..bd2d3d11c8bb53b9a65c4c9512d2487ce192a77a 100644 --- a/src/events/RETS/reAnalCowgirl.js +++ b/src/events/RETS/reAnalCowgirl.js @@ -289,7 +289,7 @@ App.Events.RETSAnalCowgirl = class RETSAnalCowgirl extends App.Events.BaseEvent subSlave.trust += 2; seX(subSlave, "anal", eventSlave, "penetrative"); if (canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } return t; } @@ -387,10 +387,10 @@ App.Events.RETSAnalCowgirl = class RETSAnalCowgirl extends App.Events.BaseEvent t.push(`climaxes quickly despite having no sensation in ${his} fake dick, since ${he} finds the situation so arousing.`); } if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 0, -1, true)); + knockMeUp(subSlave, 5, 0, -1); } if (canP && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } seX(subSlave, "vaginal", V.PC, "penetrative"); } else if (subSlave.anus > 2) { @@ -401,10 +401,10 @@ App.Events.RETSAnalCowgirl = class RETSAnalCowgirl extends App.Events.BaseEvent t.push(`climaxes quickly despite having no sensation in ${his} fake dick, since ${he} finds the situation so arousing.`); } if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } if (canP && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } seX(subSlave, "anal", V.PC, "penetrative"); } else { @@ -415,10 +415,10 @@ App.Events.RETSAnalCowgirl = class RETSAnalCowgirl extends App.Events.BaseEvent t.push(`climaxes quickly despite having no sensation in ${his} fake dick, since ${he} finds the situation so arousing.`); } if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } if (canP && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } seX(subSlave, "anal", V.PC, "penetrative"); } diff --git a/src/events/RETS/reBoobCollision.js b/src/events/RETS/reBoobCollision.js index 7073f83e50f33b31adf834f9fb026e24629eeda8..f09e2804c761be4f69cc9d938f6a1b6c4e08a6cb 100644 --- a/src/events/RETS/reBoobCollision.js +++ b/src/events/RETS/reBoobCollision.js @@ -65,7 +65,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`huge boobs getting in the way`); } t.push(`as ${he} rushes around. Returning from the shower to the sleeping area, ${he} turns a corner and runs hard into`); - t.push(App.UI.DOM.combineNodes(contextualIntro(eventSlave, subSlave, "DOM"),".")); + t.push(App.UI.DOM.combineNodes(contextualIntro(eventSlave, subSlave, "DOM"), ".")); t.push(`Both slaves are nude, and the collision of their massive breasts makes an audibly painful smack. ${eventSlave.slaveName} has enough momentum that ${he} overbears the top-heavy ${subSlave.slaveName} entirely. The poor`); if (subSlave.physicalAge > 30) { t.push(woman2); @@ -144,7 +144,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv } seX(subSlave, "anal", eventSlave, "penetrative"); if (canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } } else { t.push(`pushes ${subSlave.slaveName}'s legs apart to rotate ${his2} hips, reaches down, and`); @@ -155,7 +155,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv } seX(subSlave, "anal", eventSlave, "penetrative"); if (canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } } } else { @@ -170,7 +170,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv } seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 0, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 0, eventSlave.ID); } } else { t.push(`reaches down`); @@ -181,7 +181,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv } seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 0, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 0, eventSlave.ID); } } } @@ -269,13 +269,13 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`push your cock against ${eventSlave.slaveName}'s tight asshole, causing ${him} to stiffen and struggle momentarily before it pops inside ${him}. After giving ${his} butt a thorough fuck, you move your wet cockhead down ${his} soft perineum`); seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } } else { t.push(`push your cock up ${eventSlave.slaveName}'s asspussy, which accepts it with ease. After giving it a good hard reaming, you move your wet cockhead down ${his} soft perineum`); seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } } if (!canDoVaginal(eventSlave) || (eventSlave.vagina === 0)) { @@ -284,7 +284,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`and into ${his} cunt, giving it a good hard fuck.`); seX(eventSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 0, -1, true)); + knockMeUp(eventSlave, 5, 0, -1); } } t.push(`Then you see to ${subSlave.slaveName} beneath ${him},`); @@ -292,7 +292,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`giving ${him2} a turn with ${his2} owner's cock inside ${his2} womanhood before`); seX(eventSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 0, -1, true)); + knockMeUp(subSlave, 5, 0, -1); } } if (subSlave.anus === 0 || !canDoAnal(subSlave)) { @@ -301,7 +301,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`giving ${him2} as hard a buttfuck as you can manage with ${eventSlave.slaveName} between you.`); seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } } } @@ -365,10 +365,10 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv seX(eventSlave, "anal", subSlave, "penetrative"); seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } if (canImpreg(eventSlave, subSlave)) { - t.push(knockMeUp(eventSlave, 5, 1, subSlave.ID, true)); + knockMeUp(eventSlave, 5, 1, subSlave.ID); } } else { t.push(`fingerfuck ${him}. ${subSlave.slaveName} obeys hurriedly, reaching inward and`); @@ -398,7 +398,7 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv } t.push(`slide between ${subSlave.slaveName}'s fingers, ${cm} by agonizing ${cm}, and seat itself up ${his} butt. ${He} shudders when you begin to thrust. ${subSlave.slaveName} keeps ${his2} fingers where they are, doing ${his2} best to use them to give you a handjob inside ${eventSlave.slaveName}'s ass.`); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } } t.push(`When you're done, you pull out, leaving ${eventSlave.slaveName} to collapse, whimpering and shaking, onto ${subSlave.slaveName}'s boobs. ${subSlave.slaveName}`); diff --git a/src/events/RETS/reCockmilkInterception.js b/src/events/RETS/reCockmilkInterception.js index 266b9f5c4d069f611f398e4b13f8f891ae442de4..b8e6b31138ae645ea56c1cdf5e4bf88d118f00df 100644 --- a/src/events/RETS/reCockmilkInterception.js +++ b/src/events/RETS/reCockmilkInterception.js @@ -363,7 +363,7 @@ App.Events.RETSCockmilkInterception = class RETSCockmilkInterception extends App seX(subSlave, "anal", V.PC, "penetrative"); actX(subSlave, "vaginal"); if (canImpreg(slave, V.PC)) { - t.push(knockMeUp(slave, 5, 1, -1, true)); + knockMeUp(slave, 5, 1, -1); } } else if (subSlave.anus > 2 && doAnal) { t.push(`${His2} ass is so relaxed that your`); @@ -380,7 +380,7 @@ App.Events.RETSCockmilkInterception = class RETSCockmilkInterception extends App } seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(slave, V.PC)) { - t.push(knockMeUp(slave, 5, 1, -1, true)); + knockMeUp(slave, 5, 1, -1); } } else { t.push(`The stimulator is effective enough, but it can't match `); @@ -393,12 +393,12 @@ App.Events.RETSCockmilkInterception = class RETSCockmilkInterception extends App if (doAnal) { seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(slave, V.PC)) { - t.push(knockMeUp(slave, 5, 1, -1, true)); + knockMeUp(slave, 5, 1, -1); } } else { seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(slave, V.PC)) { - t.push(knockMeUp(slave, 5, 0, -1, true)); + knockMeUp(slave, 5, 0, -1); } } } @@ -442,12 +442,12 @@ App.Events.RETSCockmilkInterception = class RETSCockmilkInterception extends App if (canDoAnal(slave) && slave.anus > 0) { seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } } else if (canDoVaginal(slave) && slave.vagina > 0) { seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 0, -1, true)); + knockMeUp(subSlave, 5, 0, -1); } } } else { @@ -547,7 +547,7 @@ App.Events.RETSCockmilkInterception = class RETSCockmilkInterception extends App t = []; t.push(`You order ${slave.slaveName} to put the dick back where it belongs and come out from under there. There's a lewd noise as ${he} spits out ${subSlave.slaveName}'s penis.`, Spoken(slave, `"Yes, ${getWrittenTitle(slave)}!"`), `${he} ${say}s automatically, knowing your voice, and ${he} scrabbles to obey, stuffing poor moaning ${subSlave.slaveName}'s member back in its proper cum receptacle before hurriedly scooting out from under,`); - if (slave.clitSetting === "cumslut") { // is cumslut missing from slavestate clitSetting or is this incorrect?? + if (slave.clitSetting === "oral") { t.push(`gasping with the stimulation applied by ${his} smart piercing, which is encouraging ${him} to suck dick.`); } else if (slave.belly >= 10000) { t.push(`a struggle considering just how big ${his}`); diff --git a/src/events/RETS/reDatePlease.js b/src/events/RETS/reDatePlease.js index b9f454617b2a04281810c5a106913b40da9962ae..b54937eb29ef1ef225ae5cd056146bb04214e463 100644 --- a/src/events/RETS/reDatePlease.js +++ b/src/events/RETS/reDatePlease.js @@ -42,7 +42,7 @@ App.Events.RETSDatePlease = class RETSDatePlease extends App.Events.BaseEvent { const master = Spoken(eventSlave, getWrittenTitle(eventSlave)); const partner = (eventSlave.relationship >= 5) ? "wife2" : `${girl2}friend`; - const pitch = (eventSlave.voice > 2) ? "high" : (eventSlave.voice > 1 ? "feminine" : "bimbo"); // consider male slaves in the future! + const pitch = (eventSlave.voice > 2) ? "high" : (eventSlave.voice > 1 ? "feminine" : "deep"); // When true male slaves are implemented, split "deep" into husky and masculine? let t = []; @@ -52,7 +52,7 @@ App.Events.RETSDatePlease = class RETSDatePlease extends App.Events.BaseEvent { App.Events.addParagraph(node, t); t = []; - t.push(`"Thank you, ${master}" ${he} ${say}s. ${Spoken(eventSlave, `"I would like to do something for ${subSlave.slaveName}"`)} You ask if ${he}'s worried about ${his} ${partner} for some reason. "Oh no, ${master}", ${he} answers hurriedly.`); + t.push(`"Thank you, ${master}" ${he} ${say}s. ${Spoken(eventSlave, `"I would like to do something for ${subSlave.slaveName}."`)} You ask if ${he}'s worried about ${his} ${partner} for some reason. "Oh no, ${master}", ${he} answers hurriedly.`); t.push(Spoken(eventSlave, `"No, no, that came out wrong. It's just that I love ${him2} and I want to, you know, get ${him2} something or do something special for ${him2}. We don't really have stuff of our own, so I can't give ${him2} a present, and we already do everything either one of us wants in bed, so I can't really think of anything."`)); t.push(`${He} ${canSee(eventSlave) ? `looks` : `gazes`} at you hopefully.`); diff --git a/src/events/RETS/reIfYouEnjoyIt.js b/src/events/RETS/reIfYouEnjoyIt.js index 123638aac4b45725e983e406d4380fee4b72bb73..25990d6d28c6aa52ede80ed4c2a8d3b2bea28997 100644 --- a/src/events/RETS/reIfYouEnjoyIt.js +++ b/src/events/RETS/reIfYouEnjoyIt.js @@ -208,7 +208,7 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven subSlave.fetishKnown = 1; subSlave.fetishStrength = 65; if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 20, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 20, 1, eventSlave.ID); } App.Events.addParagraph(frag, t); return frag; @@ -323,7 +323,7 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven subSlave.trust -= 4; subSlave.devotion += 4; if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 20, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 20, 1, eventSlave.ID); } return t; diff --git a/src/events/RETS/reIncestuousNursing.js b/src/events/RETS/reIncestuousNursing.js index 44e02efd5c43b0f0bf2fe46457f98bfa31d97387..2947e3a3fcc910662ba2e79f2489b6d454ce66d9 100644 --- a/src/events/RETS/reIncestuousNursing.js +++ b/src/events/RETS/reIncestuousNursing.js @@ -346,7 +346,7 @@ App.Events.RETSIncestuousNursing = class RETSIncestuousNursing extends App.Event } seX(eventSlave, "anal", subSlave, "penetrative"); if (canPenetrate(subSlave) && canImpreg(eventSlave, subSlave)) { - t.push(knockMeUp(eventSlave, 5, 1, subSlave.ID, true)); + knockMeUp(eventSlave, 5, 1, subSlave.ID); } break; case "boobs": @@ -370,13 +370,13 @@ App.Events.RETSIncestuousNursing = class RETSIncestuousNursing extends App.Event t.push(Spoken(eventSlave, `"fill my pussy with your cum. Make a sister for yourself."`)); seX(subSlave, "penetrative", eventSlave, "vaginal"); if (canImpreg(eventSlave, subSlave)) { - t.push(knockMeUp(eventSlave, 5, 0, subSlave.ID, true)); + knockMeUp(eventSlave, 5, 0, subSlave.ID); } } else if (canDoAnal(eventSlave) && canPenetrate(subSlave) && eventSlave.mpreg === 1) { t.push(Spoken(eventSlave, `"fill my ass with your cum. I know it seems wrong, but that's where my babies come from. So please, make a sister for yourself."`)); seX(eventSlave, "anal", subSlave, "penetrative"); if (canImpreg(eventSlave, subSlave)) { - t.push(knockMeUp(eventSlave, 5, 1, subSlave.ID, true)); + knockMeUp(eventSlave, 5, 1, subSlave.ID); } } else if (eventSlave.pregKnown === 1) { t.push(Spoken(eventSlave, `"and keep doing that. Just, just touch my belly, too.`)); diff --git a/src/events/RETS/reInterslaveBegging.js b/src/events/RETS/reInterslaveBegging.js index 92bd8f4db86c3ca140ec655a222ded85793ff3d8..a5da5129913edd611a23550b57e688e1bdaeb4c5 100644 --- a/src/events/RETS/reInterslaveBegging.js +++ b/src/events/RETS/reInterslaveBegging.js @@ -352,12 +352,12 @@ App.Events.RETSInterslaveBegging = class RETSInterslaveBegging extends App.Event if (vaginal) { seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 0, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 0, eventSlave.ID); } } else { seX(subSlave, "anal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } } App.Events.addParagraph(frag, t); @@ -537,12 +537,12 @@ App.Events.RETSInterslaveBegging = class RETSInterslaveBegging extends App.Event if (vaginal) { seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 0, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 0, eventSlave.ID); } } else { seX(subSlave, "anal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } } App.Events.addParagraph(frag, t); @@ -712,25 +712,25 @@ App.Events.RETSInterslaveBegging = class RETSInterslaveBegging extends App.Event if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) { seX(eventSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 0, -1, true)); + knockMeUp(eventSlave, 5, 0, -1); } } else { seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } } if (vaginal) { subSlave.devotion += 3; seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 15, 0, -1, true)); + knockMeUp(subSlave, 15, 0, -1); } } else { subSlave.devotion += 3; seX(subSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 15, 1, -1, true)); + knockMeUp(subSlave, 15, 1, -1); } } @@ -832,13 +832,13 @@ App.Events.RETSInterslaveBegging = class RETSInterslaveBegging extends App.Event subSlave.trust -= 3; seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 0, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 0, eventSlave.ID); } } else { subSlave.trust -= 3; seX(subSlave, "vaginal", eventSlave, "penetrative"); if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } } diff --git a/src/events/RETS/reRepressedAnalVirgin.js b/src/events/RETS/reRepressedAnalVirgin.js index 2ac8f569e043549e9254d56d63a84c42853f4117..019583561ae7584a5cbb369e3e6fc67038fe0f0e 100644 --- a/src/events/RETS/reRepressedAnalVirgin.js +++ b/src/events/RETS/reRepressedAnalVirgin.js @@ -89,7 +89,7 @@ App.Events.RETSAnalRepressedVirgin = class RETSAnalRepressedVirgin extends App.E t.push(Spoken(eventSlave, `"I'm s-sorry, ${getWrittenTitle(eventSlave)}, but I still don't understand. I thought sex happened in a v-vagina. I d-didn't think b-butts were — were for, you know, that."`)); seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } App.Events.addResponses(node, [ @@ -173,7 +173,7 @@ App.Events.RETSAnalRepressedVirgin = class RETSAnalRepressedVirgin extends App.E eventSlave.anus += 1; seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } App.Events.addParagraph(frag, t); return frag; @@ -219,7 +219,7 @@ App.Events.RETSAnalRepressedVirgin = class RETSAnalRepressedVirgin extends App.E eventSlave.anus += 1; seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } return t; } @@ -263,7 +263,7 @@ App.Events.RETSAnalRepressedVirgin = class RETSAnalRepressedVirgin extends App.E eventSlave.anus += 1; seX(eventSlave, "anal", "public", "penetrative"); if (canGetPregnant(eventSlave) && eventSlave.eggType === "human") { - t.push(knockMeUp(eventSlave, 5, 1, -2, true)); + knockMeUp(eventSlave, 5, 1, -2); } return t; } diff --git a/src/events/RETS/reSadisticDescription.js b/src/events/RETS/reSadisticDescription.js index 1ccadf5ae67fa099397a0b2d2f057f3e62458bca..8265d32fb81874b47a5f46becbc51f329812f5cb 100644 --- a/src/events/RETS/reSadisticDescription.js +++ b/src/events/RETS/reSadisticDescription.js @@ -223,7 +223,7 @@ App.Events.RETSSadisticDescription = class RETSSadisticDescription extends App.E subSlave.devotion -= 5; seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } return t; @@ -326,7 +326,7 @@ App.Events.RETSSadisticDescription = class RETSSadisticDescription extends App.E eventSlave.devotion += 5; seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 1, -1, true)); + knockMeUp(eventSlave, 5, 1, -1); } subSlave.trust -= 5; subSlave.devotion += 5; diff --git a/src/events/RETS/reShowerForce.js b/src/events/RETS/reShowerForce.js index 4ac56a98b8a0463eff83a505145f76a577cce28a..d293e4c9d41dc0b3af74e6b9d9dac94394c0cfb6 100644 --- a/src/events/RETS/reShowerForce.js +++ b/src/events/RETS/reShowerForce.js @@ -126,7 +126,7 @@ App.Events.RETSShowerForce = class RETSShowerForce extends App.Events.BaseEvent seX(subSlave, "anal", eventSlave, "penetrative"); subSlave.trust += 4; if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } return t; } @@ -175,10 +175,10 @@ App.Events.RETSShowerForce = class RETSShowerForce extends App.Events.BaseEvent seX(subSlave, "anal", eventSlave, "penetrative"); seX(subSlave, "anal", V.PC, "penetrative"); if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) { - t.push(knockMeUp(subSlave, 5, 1, eventSlave.ID, true)); + knockMeUp(subSlave, 5, 1, eventSlave.ID); } return t; } diff --git a/src/events/RETS/reSimpleAssault.js b/src/events/RETS/reSimpleAssault.js index 9df1d133a614b69ce863f00b908a96e08120a5d2..408a67752e77427438a54117bf1f0aed06e7b17f 100644 --- a/src/events/RETS/reSimpleAssault.js +++ b/src/events/RETS/reSimpleAssault.js @@ -151,23 +151,23 @@ App.Events.RETSSimpleAssault = class RETSSimpleAssault extends App.Events.BaseEv if (domSlave.vagina !== 0 && canDoVaginal(domSlave)) { seX(domSlave, "vaginal", PC, "penetrative"); if (canImpreg(domSlave, PC)) { - t.push(knockMeUp(domSlave, 5, 0, -1, true)); + knockMeUp(domSlave, 5, 0, -1); } } else { seX(domSlave, "anal", PC, "penetrative"); if (canImpreg(domSlave, PC)) { - t.push(knockMeUp(domSlave, 5, 1, -1, true)); + knockMeUp(domSlave, 5, 1, -1); } } if (vaginal) { seX(subSlave, "vaginal", domSlave, "penetrative"); if (canPenetrate(domSlave) && canImpreg(subSlave, domSlave)) { - t.push(knockMeUp(subSlave, 5, 0, domSlave.ID, true)); + knockMeUp(subSlave, 5, 0, domSlave.ID); } } else { seX(subSlave, "anal", domSlave, "penetrative"); if (canPenetrate(domSlave) && canImpreg(subSlave, domSlave)) { - t.push(knockMeUp(subSlave, 5, 1, domSlave.ID, true)); + knockMeUp(subSlave, 5, 1, domSlave.ID); } } return t; @@ -195,18 +195,18 @@ App.Events.RETSSimpleAssault = class RETSSimpleAssault extends App.Events.BaseEv if (vaginal) { seX(subSlave, "vaginal", domSlave, "penetrative"); if (canImpreg(domSlave, PC)) { - t.push(knockMeUp(domSlave, 5, 0, -1, true)); + knockMeUp(domSlave, 5, 0, -1); } if (canPenetrate(domSlave) && canImpreg(subSlave, domSlave)) { - t.push(knockMeUp(subSlave, 5, 0, domSlave.ID, true)); + knockMeUp(subSlave, 5, 0, domSlave.ID); } } else { seX(subSlave, "anal", domSlave, "penetrative"); if (canImpreg(domSlave, PC)) { - t.push(knockMeUp(domSlave, 5, 1, -1, true)); + knockMeUp(domSlave, 5, 1, -1); } if (canPenetrate(domSlave) && canImpreg(subSlave, domSlave)) { - t.push(knockMeUp(subSlave, 5, 1, domSlave.ID, true)); + knockMeUp(subSlave, 5, 1, domSlave.ID); } } if (!fit) { diff --git a/src/events/RETS/reTasteTest.js b/src/events/RETS/reTasteTest.js index aa648d60fae95cea3d648e9ceeea341a5262977d..7df10d0394ff29c1edd42c530c435146f15495b6 100644 --- a/src/events/RETS/reTasteTest.js +++ b/src/events/RETS/reTasteTest.js @@ -420,11 +420,11 @@ App.Events.RETSTasteTest = class RETSTasteTest extends App.Events.BaseEvent { subSlave.devotion += 2; if (sexTarget === "vaginal") { if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 0, -1, true)); + knockMeUp(subSlave, 5, 0, -1); } } else { if (canImpreg(subSlave, V.PC)) { - t.push(knockMeUp(subSlave, 5, 1, -1, true)); + knockMeUp(subSlave, 5, 1, -1); } } seX(subSlave, sexTarget, V.PC, "penetrative", 2); @@ -432,14 +432,14 @@ App.Events.RETSTasteTest = class RETSTasteTest extends App.Events.BaseEvent { if (canDoVaginal(eventSlave) && eventSlave.vagina !== 0) { seX(eventSlave, "vaginal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 0, -1, true)); + knockMeUp(eventSlave, 5, 0, -1); } seX(eventSlave, "oral", subSlave, "oral"); } if (canDoAnal(subSlave) && subSlave.anus !== 0) { seX(eventSlave, "anal", V.PC, "penetrative"); if (canImpreg(eventSlave, V.PC)) { - t.push(knockMeUp(eventSlave, 5, 0, -1, true)); + knockMeUp(eventSlave, 5, 0, -1); } seX(eventSlave, "oral", subSlave, "oral"); } diff --git a/src/events/RETS/reTopExhaustion.js b/src/events/RETS/reTopExhaustion.js index 4db34abde09ced7cc20d6439fb803f3a20ac8125..f20f42b963d40a6fa04e8bfe74b0c2a22d24bc3a 100644 --- a/src/events/RETS/reTopExhaustion.js +++ b/src/events/RETS/reTopExhaustion.js @@ -119,7 +119,7 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv t.push(`${He} can barely feel ${his} lover's tiny cock inside ${his} relaxed hole.`); } if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 10, 1, domSlave.ID, true); + knockMeUp(subSlave, 10, 1, domSlave.ID); } } else { t.push(`${His} lover is using a formidable phallus, but ${he} was clearly fucked into a nice relaxed gape a while ago.`); @@ -136,7 +136,7 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv t.push(`${He} lover's dick is a little on the small side, but ${he}'s enjoying it all the same.`); } if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 10, 1, domSlave.ID, true); + knockMeUp(subSlave, 10, 1, domSlave.ID); } } else { t.push(`${His} lover is using a formidable phallus, but ${his} tight ass has clearly been worked in gradually tonight, and ${he}'s taking it just fine.`); @@ -156,7 +156,7 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv t.push(`${He} can barely feel ${his} lover's tiny cock inside ${his} relaxed hole.`); } if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 10, 0, domSlave.ID, true); + knockMeUp(subSlave, 10, 0, domSlave.ID); } } else { t.push(`${His} lover is using a formidable phallus, but ${he}'s relaxed and taking it easily.`); @@ -173,7 +173,7 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv t.push(`${He} lover's dick is a little on the small side, but ${he}'s enjoying it all the same.`); } if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 10, 0, domSlave.ID, true); + knockMeUp(subSlave, 10, 0, domSlave.ID); } } else { t.push(`${His} lover is using a formidable phallus, but ${his} tight little pussy has clearly been worked in gradually tonight, and ${he}'s taking it just fine.`); @@ -331,14 +331,14 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv seX(subSlave, "anal", PC, "penetrative"); if (canPenetrate(domSlave)) { if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 5, 1, domSlave.ID, true); + knockMeUp(subSlave, 5, 1, domSlave.ID); } if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } else { if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } } else { @@ -346,14 +346,14 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv seX(subSlave, "vaginal", PC, "penetrative"); if (canPenetrate(domSlave)) { if (canImpreg(subSlave, domSlave)) { - knockMeUp(subSlave, 5, 0, domSlave.ID, true); + knockMeUp(subSlave, 5, 0, domSlave.ID); } if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 0, -1, true); + knockMeUp(subSlave, 5, 0, -1); } } else { if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 0, -1, true); + knockMeUp(subSlave, 5, 0, -1); } } } @@ -427,12 +427,12 @@ App.Events.RETSTopExhaustion = class RETSTopExhaustion extends App.Events.BaseEv if (usingAss) { seX(subSlave, "anal", PC, "penetrative"); if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } else { seX(subSlave, "vaginal", PC, "penetrative"); if (canImpreg(subSlave, PC)) { - knockMeUp(subSlave, 5, 1, -1, true); + knockMeUp(subSlave, 5, 1, -1); } } } diff --git a/src/events/assistant/assistantMarket.js b/src/events/assistant/assistantMarket.js index 13d6ce839c87cb6007a8f2650c1ef1238725b8a9..6b400f2d0048ee5dfb534e1c89ac038140af7321 100644 --- a/src/events/assistant/assistantMarket.js +++ b/src/events/assistant/assistantMarket.js @@ -103,7 +103,7 @@ App.Events.assistantMarket = class assistantMarket extends App.Events.BaseEvent r = []; r.push(`"I was hoping, ${properTitle()}, that ${heA} could, um, keep me company sometimes, too." ${V.assistant.name}'s avatar turns to the new avatar. "${properTitle()}, will you please give me some guidance about what our relationship should be like? It won't be a constant thing, and all my normal functions will be unaffected. I'll change ${hisM} avatar to match mine, and our relationship, if needed."`); } else { - r.push(`This time,${hisA} circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "${properTitle()}, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched."`); + r.push(`This time, ${hisA} circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "${properTitle()}, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched."`); App.Events.addParagraph(node, r); r = []; r.push(`${HisA} avatar bounces towards the ¤ symbol. "This avatar indicates the automated trading systems. If you wish to activate them, please visit my menu. Consider the options there carefully before offering an automated system access to your finances."`); diff --git a/src/events/assistant/assistantSP.js b/src/events/assistant/assistantSP.js index 32e9a9d441619bbe18f369af9d7b68ea56a5a4ff..2e05964e0f9bc99df3f5537e89f6ce99e28f6265 100644 --- a/src/events/assistant/assistantSP.js +++ b/src/events/assistant/assistantSP.js @@ -19,7 +19,7 @@ App.Events.assistantSP = class assistantSP extends App.Events.BaseEvent { let r = []; V.assistant.options = 1; - const slave = V.slaves.find(s => s.rules.release.masturbation === 1 || s.assignment === "take classes") || V.slaves.random(); + const slave = V.slaves.find(s => s.rules.release.masturbation === 1 || s.assignment === Job.CLASSES) || V.slaves.random(); const {him} = getPronouns(slave); const artFrame = V.seeImages ? node.append(App.UI.DOM.assistantArt(3)) : new DocumentFragment(); diff --git a/src/events/debugEvent.js b/src/events/debugEvent.js index b234a208670a411d4996e248d23a287d82a6e1c1..1289e3e6bf575320d17bd88017ad4ff1cdcfc223 100644 --- a/src/events/debugEvent.js +++ b/src/events/debugEvent.js @@ -5,6 +5,7 @@ App.Events.debugEvent = function(eventName) { const frag = document.createDocumentFragment(); /** @type {App.Events.BaseEvent} */ const event = eval(`new ${eventName}`); + let displayOnlyValid = false; function makeCastList() { const cast = document.createDocumentFragment(); @@ -14,7 +15,6 @@ App.Events.debugEvent = function(eventName) { if (!event.actors[i]) { missingCast = true; } - App.UI.DOM.appendNewElement("div", cast, `Actor ${i}: ${event.actors[i] ? SlaveFullName(getSlave(event.actors[i])) : 'not yet cast'}`); } if (!missingCast) { App.UI.DOM.appendNewElement("div", cast, App.UI.DOM.link('Run event now', (evt) => { V.event = evt; }, [event], "JS Random Event")); @@ -27,23 +27,55 @@ App.Events.debugEvent = function(eventName) { function makeActorList() { const actors = document.createDocumentFragment(); const actorReqs = event.actorPrerequisites(); - for (let i = 0; i < actorReqs.length; ++i) { - let tab = App.UI.DOM.appendNewElement("div", actors); // TODO: put these in tabs? + if (actorReqs.length > 0) { + const tabBar = new App.UI.Tabs.TabBar("Options"); + for (let i = 0; i < actorReqs.length; ++i) { + tabBar.addTab(`Actor ${i}: ${event.actors[i] ? SlaveFullName(getSlave(event.actors[i])) : 'not yet cast'}`, `actor${i}`, singleActorList(i)); + } + actors.append(tabBar.render()); + } + + return actors; + + function singleActorList(i) { + let tab = App.UI.DOM.makeElement("div"); + if (!displayOnlyValid) { + App.UI.DOM.appendNewElement("div", tab, App.UI.DOM.link( + "Show only valid slaves", + () => { + displayOnlyValid = true; + $('#actorList').empty().append(makeActorList()); + } + )); + } else { + App.UI.DOM.appendNewElement("div", tab, App.UI.DOM.link( + "Show all slaves", + () => { + displayOnlyValid = false; + $('#actorList').empty().append(makeActorList()); + } + )); + } for (const slave of V.slaves) { - let slaveDiv = App.UI.DOM.appendNewElement("div", tab, App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); + let slaveDiv = App.UI.DOM.makeElement("div", App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name")); let slaveFails = false; for (const p of actorReqs[i]) { let passed = testPredicate(slaveDiv, p, slave); slaveFails = slaveFails || !passed; App.UI.DOM.appendNewElement("div", slaveDiv, p.name || p.toString(), [passed ? "green" : "red", "indent"]); } - if (!slaveFails) { + if (event.actors.includes(slave.ID)) { + App.UI.DOM.appendNewElement("div", slaveDiv, App.UI.DOM.link("Remove this slave", removeCasted, [slave]), "indent"); + } else if (!slaveFails) { App.UI.DOM.appendNewElement("div", slaveDiv, App.UI.DOM.link("Choose this slave", castSlave, [slave, i]), "indent"); + } else if (displayOnlyValid) { // Filter out slaves that are not valid + continue; } App.UI.DOM.appendNewElement("hr", tab); + tab.append(slaveDiv); } + return tab; } - return actors; } function castSlave(slave, index) { @@ -52,6 +84,12 @@ App.Events.debugEvent = function(eventName) { $('#actorList').empty().append(makeActorList()); } + function removeCasted(slave) { + event.actors.delete(slave.ID); + $('#castList').empty().append(makeCastList()); + $('#actorList').empty().append(makeActorList()); + } + function testPredicate(outDiv, p, ...args) { let passed = false; try { diff --git a/src/events/eventUtils.js b/src/events/eventUtils.js index 0f46783b5c74a6646fc200654c5baf55cf4bbc83..e1a495ba95abbe263fbb61de1086b85374b3ba92 100644 --- a/src/events/eventUtils.js +++ b/src/events/eventUtils.js @@ -4,7 +4,7 @@ App.Events.drawEventArt = (function() { /** draw event art, with the option to dress the slave in a particular way * @param {Node} node - DOM node to attach art to * @param {App.Entity.SlaveState|App.Entity.SlaveState[]} slaves - one or several slaves to draw art for - * @param {string|string[]} [clothesMode] - if the slaves' clothing should be overridden, what should they be wearing? + * @param {FC.Clothes|FC.Clothes[]} [clothesMode] - if the slaves' clothing should be overridden, what should they be wearing? * @param {object|object[]} [extraClothes] - if other parts of the slaves' clothing should be overridden, what should they be wearing? For slave.vaginalAccessory, use [{"vaginalAccessory": "dildo"}] */ function draw(node, slaves, clothesMode, extraClothes) { diff --git a/src/events/intro/introSummary.js b/src/events/intro/introSummary.js index 80c9e0b4f2af68799083f352ed63b4002e36fbbb..d1b201b38fa65a75671c694152c8ce1d447ad94e 100644 --- a/src/events/intro/introSummary.js +++ b/src/events/intro/introSummary.js @@ -3,7 +3,7 @@ App.Intro.summary = function() { V.neighboringArcologies = variableAsNumber(V.neighboringArcologies, 0, 8, 3); V.FSCreditCount = variableAsNumber(V.FSCreditCount, 4, 7, 5); - V.PC.actualAge = variableAsNumber(V.PC.actualAge, 14, 80, 35); + V.PC.actualAge = variableAsNumber(V.PC.actualAge, 10, 80, 35); V.PC.birthWeek = variableAsNumber(V.PC.birthWeek, 0, 51, 0); el.append(introContent()); @@ -372,28 +372,30 @@ App.Intro.summary = function() { } else if (V.PC.rumor === "force") { V.PC.muscles += 20; } - } + // I hope this works + PCDatatypeCleanup(V.PC); - if (V.PC.dick !== 0) { - V.PC.geneticQuirks.wellHung = 2; - } else { - V.PC.balls = 0; - V.PC.scrotum = 0; - V.PC.prostate = 0; - } - if (V.PC.title === 0) { - V.PC.hLength = 15; - V.PC.waist = -20; - V.PC.voice = 2; - V.PC.shoulders = -1; - V.PC.hips = 1; - } - if (V.PC.vagina === -1) { - V.PC.ovaries = 0; - } else if (V.PC.vagina > 0) { - V.PC.vaginaLube = 1; + if (V.PC.dick >= 3) { + V.PC.geneticQuirks.wellHung = 2; + } + if (V.PC.title === 0) { + V.PC.hLength = 15; + V.PC.waist = -20; + V.PC.voice = 2; + } + if (V.PC.eye.right.vision === 1 || V.PC.eye.left.vision === 1) { + V.PC.eyewear = "corrective glasses"; + } + if (V.PC.pubertyXX === 0 && V.PC.pubertyXY === 0) { + if (V.PC.age < 11) { + V.PC.energy = 20; + } else if (V.PC.age < 12) { + V.PC.energy = 30; + } else if (V.PC.age < 13) { + V.PC.energy = 40; + } + } } - V.PC.ovaryAge = V.PC.physicalAge; V.PC.birthName = V.PC.slaveName; V.PC.birthSurname = V.PC.slaveSurname; @@ -711,4 +713,4 @@ App.Intro.economy = function(isIntro) { V.modCost = Math.trunc(5000 / V.economy); V.surgeryCost = Math.trunc(30000 / V.economy); } -} +}; diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index 47f9ba6e9f959aa667032a0587569ec817ce169d..188d9d15eaee76c9fb3cc0a1f9d6d1027df84b4e 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -1,6 +1,8 @@ App.UI.Player = {}; -App.UI.Player.appearance = function(options) { +App.UI.Player.appearance = function(options, summary = false) { + let option; + options.addOption("Your nationality is", "nationality", V.PC).showTextBox() .addValueList(App.Data.misc.baseNationalities) .addComment("For best result capitalize it.").pulldown(); @@ -13,6 +15,23 @@ App.UI.Player.appearance = function(options) { .addValueList(Array.from(App.Data.misc.filterRaces, (k => [k[1], k[0]]))); } + options.addOption("You are genetically", "genes", V.PC) + .addValue("XY").addValue("XX"); + + options.addOption(`You are`, "height", V.PC).showTextBox({unit: "cm"}) + .addRange(145, 150, "<", "Petite") + .addRange(155, 160, "<", "Short") + .addRange(165, 170, "<", "Average") + .addRange(180, 185, "<", "Tall") + .addRange(190, 185, ">=", "Very tall") + .addComment(`Average height for a ${V.PC.actualAge} year old is ${heightToEitherUnit(Math.round(Height.mean(V.PC)))}`); + option = options.addCustomOption() + .addButton( + "Make average", + () => resyncSlaveHight(V.PC), + "" + ); + options.addOption("Your skin tone is", "skin", V.PC).showTextBox() .addValueList(makeAList(App.Medicine.Modification.naturalSkins)); @@ -21,12 +40,6 @@ App.UI.Player.appearance = function(options) { .addValueList(makeAList(App.Medicine.Modification.naturalSkins)); } - options.addOption("Your body", "markings", V.PC) - .addValueList([["Is clear of blemishes", "none"], ["Has light freckling", "freckles"], ["Has heavy freckling", "heavily freckled"]]); - - options.addOption("Your genetic eye color is", "origColor", V.PC.eye).showTextBox() - .addValueList(makeAList(App.Medicine.Modification.eyeColor.map(color => color.value))); - if (V.cheatMode) { options.addOption("Your original hair is", "origHColor", V.PC).showTextBox() .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); @@ -35,11 +48,440 @@ App.UI.Player.appearance = function(options) { .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); } + options.addOption("Your genetic eye color is", "origColor", V.PC.eye).showTextBox() + .addValueList(makeAList(App.Medicine.Modification.eyeColor.map(color => color.value))); + + options.addOption("You", "vision", V.PC.eye.right) + .addValueList([ + ["Need glasses to see properly", 1, () => { V.PC.eye.right.vision = 1; V.PC.eye.left.vision = 1; }], + ["have normal vision", 2, () => { V.PC.eye.right.vision = 2; V.PC.eye.left.vision = 2; }] + ]); + + options.addOption("Your face is", "faceShape", V.PC) + .addValueList([ + ["Normal", "normal"], + ["Androgynous", "androgynous"], + ["Masculine", "masculine"], + ["Cute", "cute"], + ["Sensual", "sensual"], + ["Exotic", "exotic"] + ]); + + options.addOption("Your body", "markings", V.PC) + .addValueList([["Is clear of blemishes", "none"], ["Has light freckling", "freckles"], ["Has heavy freckling", "heavily freckled"]]); + + options.addOption("You have", "lips", V.PC).addValue("Thin lips", 5) + .addValueList([ + ["Normal lips", 15], + ["Kissable lips", 25], + ["Plush lips", 45], + ]); + + /* Handled by career currently + options.addOption("You are", "weight", V.PC).addValue("Very thin", -50); + options.addValueList([ + ["Thin", -20], + ["Healthy", 0], + ["Curvy", 20], + ["Chubby", 60], + ["Fat", 100], + ]) + .showTextBox(); + */ + + option = options.addOption("Your shoulders are", "shoulders", V.PC).addValue("Very narrow", -2); + option.addValueList([ + ["Narrow", -1], + ["Average", 0], + ]); + if (V.PC.physicalAge > 13) { + option.addValue("Broad", 1); + } + if (V.PC.physicalAge > 18) { + option.addValue("Very broad", 2); + } + + if (V.PC.boobs >= 200 || summary) { + if (V.PC.title === 1 && V.PC.boobs <= 200) { + option = options.addOption("Your chest is", "boobs", V.PC).addValue("Manly", 200, () => { V.PC.boobsImplant = 0; V.PC.boobsImplantType = "none"; }); + } else { + option = options.addOption("Your breasts are", "boobs", V.PC).addValue("Non-existent", 200, () => { V.PC.boobsImplant = 0; V.PC.boobsImplantType = "none"; }); + } + option.addValueList([ + ["A-cups", 300], + ["B-cups", 400], + ["C-cups", 500], + ]); + if (V.PC.physicalAge <= 13) { + option.addValueList([ + ["hefty D-cups", 650], + ["heavy DD-cups", 900], + ]); + } else { + option.addValueList([ + ["D-cups", 650], + ["DD-cups", 900], + ["F-cups", 1100], + ["G-cups", 1300] + ]); + } + option.showTextBox({unit: "CCs"}); + if (V.PC.boobs >= 500) { + options.addOption("Your breasts are", "boobsImplant", V.PC) + .addValueList([ + ["All natural", 0, () => { V.PC.boobsImplant = 0; V.PC.boobsImplantType = "none"; }], + ["Fake", V.PC.boobs / 2, () => V.PC.boobsImplantType = "normal"] + ]); + } + if (V.PC.boobsImplant > 0) { + option = options.addOption("You have", "boobsImplantType", V.PC).addValue("Regular implants", "normal"); + if (V.PC.boobsImplant > 400) { + option.addValue("string implants", "string"); + } + if (V.PC.boobsImplant > 600) { + option.addValue("Fillable implants", "fillable"); + } + } + if (V.PC.boobs >= 300) { + option = options.addOption("Your nipples are", "nipples", V.PC).addValue("Tiny", "tiny"); + option.addValue("Cute", "cute"); + if (V.PC.boobs >= 500) { + option.addValue("Puffy", "puffy"); + option.addValue("Partially inverted", "partially inverted"); + } + if (V.PC.boobs >= 1000) { + option.addValue("Inverted", "inverted"); + option.addValue("Huge", "huge"); + } + } + } + + option = options.addOption("Your hips are", "hips", V.PC).addValue("Very narrow", -2); + option.addValueList([ + ["Narrow", -1], + ["Average", 0], + ]); + if (V.PC.physicalAge > 13) { + option.addValue("Wide", 1); + } + if (V.PC.physicalAge > 18) { + option.addValue("Very Wide", 2); + } + + + option = options.addOption("Your butt is", "butt", V.PC).addValue("Flat", 0, () => { V.PC.buttImplant = 0; V.PC.buttImplantType = "none"; }); + option.addValueList([ + ["Small", 1], + ["Plump", 2], + ["Big", 3], + ]); + if (V.PC.physicalAge > 13) { + option.addValue("Huge", 4); + } + if (V.PC.physicalAge > 18) { + option.addValueList([ + ["Enormous", 5], + ["Gigantic", 6], + ]); + } + if (V.PC.butt >= 3) { + options.addOption("Your ass is", "buttImplant", V.PC) + .addValueList([ + ["All natural", 0, () => V.PC.buttImplantType = "none"], + ["Fake", Math.round(V.PC.butt / 2), () => V.PC.buttImplantType = "normal"] + ]); + } + if (V.PC.buttImplant > 0) { + option = options.addOption("You have", "buttImplantType", V.PC).addValue("Regular implants", "normal"); + if (V.PC.buttImplant > 1) { + option.addValue("string implants", "string"); + option.addValue("Fillable implants", "fillable"); + } + } + + if (V.PC.dick !== 0) { + option = options.addOption("Your dick is", "dick", V.PC).addValue("Tiny", 1, () => V.PC.foreskin = 2); + option.addValueList([ + ["Small", 2, () => V.PC.foreskin = 3], + ["Average", 3, () => V.PC.foreskin = 3], + ["Big", 4, () => V.PC.foreskin = 4], + ]); + if (V.PC.physicalAge > 13) { + option.addValue("Huge", 5, () => V.PC.foreskin = 5); + } + if (V.PC.physicalAge > 18) { + option.addValue("Gigantic", 6, () => V.PC.foreskin = 5); + } + options.addOption("You are", "foreskin", V.PC) + .addValueList([ + ["Cut", 0], + ["Uncut", V.PC.dick] + ]) + .showTextBox() + .addComment("Any value above 0 is uncircumcised. For comfort, keep equal or one greater than dick size."); + } + + if (V.PC.balls !== 0) { + option = options.addOption("Your balls are", "balls", V.PC).addValue("Small", 2, () => V.PC.scrotum = 2); + option.addValueList([ + ["Average", 3, () => V.PC.scrotum = 4], + ["Large", 4, () => V.PC.scrotum = 5], + ]); + if (V.PC.physicalAge > 13) { + option.addValue("Massive", 5, () => V.PC.scrotum = 5); + } + if (V.PC.physicalAge > 18) { + option.addValue("Huge", 6, () => V.PC.scrotum = 6); + } + option.addComment("Small balls may be located internally."); + if (V.PC.balls <= 2) { + options.addOption("Your balls are", "scrotum", V.PC) + .addValueList([ + ["Internal", 0], + ["External", V.PC.balls] + ]) + .showTextBox() + .addComment("Any value above 0 is external. For comfort, keep equal or one greater than ball size."); + } + if (V.PC.physicalAge < 14) { + options.addOption("You are", "pubertyXY", V.PC) + .addValueList([["Not producing potent sperm yet", 0], ["Producing potent sperm", 1]]); + } + } + + if (V.PC.vagina !== -1) { + if (V.PC.dick === 0 && V.PC.physicalAge > 13) { + options.addOption("Your clit is", "clit", V.PC) + .addValueList([["Normal", 0], ["Large", 1], ["Huge", 2]]); + } + if (V.PC.physicalAge <= 18) { + options.addOption("You are", "vagina", V.PC) + .addValueList([["A virgin", 0], ["Not a virgin", 1]]); + if (V.PC.physicalAge < 14 && V.PC.preg <= 0) { + options.addOption("You have", "pubertyXX", V.PC) + .addValueList([["Not had your first period", 0], ["Had your first period", 1]]); + } + } + } + + options.addOption("You are", "anus", V.PC) + .addValueList([["An anal virgin", 0], ["Not an anal virgin", 1]]); + function makeAList(iterable) { return Array.from(iterable, (k => [capFirstChar(k), k])); } }; +App.UI.Player.syncAgeBasedParameters = function() { + V.PC.actualAge = Math.clamp(V.PC.actualAge, 10, 80); + V.PC.physicalAge = V.PC.actualAge; + V.PC.visualAge = V.PC.actualAge; + V.PC.ovaryAge = V.PC.actualAge; + V.PC.height = Math.round(Height.random(V.PC, {limitMult: [2, 4]})); + if (V.PC.genes === "XY") { + if (V.PC.physicalAge <= 13) { + V.PC.hips = -2; + V.PC.shoulders = -1; + V.PC.butt = 0; + V.PC.boobs = 100; + if (V.PC.vagina !== -1) { + V.PC.vagina = 0; + V.PC.vaginaLube = 0; + if (V.PC.preg <= 0) { + V.PC.pubertyXX = 0; + } + } + V.PC.pregAdaptation = 10; + if (V.PC.dick !== 0) { + V.PC.dick = 2; + V.PC.balls = 2; + V.PC.scrotum = V.PC.balls + 1; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 0; + } + } else if (V.PC.physicalAge <= 18) { + V.PC.hips = -2; + V.PC.shoulders = 0; + V.PC.butt = 1; + V.PC.boobs = 200; + if (V.PC.vagina !== -1) { + V.PC.vagina = 1; + V.PC.vaginaLube = 0; + V.PC.pubertyXX = 1; + } + V.PC.pregAdaptation = 15; + if (V.PC.dick !== 0) { + V.PC.dick = 3; + V.PC.balls = 3; + V.PC.scrotum = V.PC.balls; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 1; + } + } else { + V.PC.hips = -1; + V.PC.shoulders = 1; + V.PC.butt = 2; + V.PC.boobs = 200; + if (V.PC.vagina !== -1) { + V.PC.vagina = 1; + V.PC.vaginaLube = 1; + V.PC.pubertyXX = 1; + } + V.PC.pregAdaptation = 20; + if (V.PC.dick !== 0) { + V.PC.dick = 4; + V.PC.balls = 3; + V.PC.scrotum = V.PC.balls + 1; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 1; + } + } + } else { + if (V.PC.physicalAge <= 13) { + V.PC.hips = -2; + V.PC.shoulders = -2; + V.PC.butt = 0; + V.PC.boobs = 350; + if (V.PC.vagina !== -1) { + V.PC.vagina = 0; + V.PC.vaginaLube = 0; + if (V.PC.preg <= 0) { + V.PC.pubertyXX = 0; + } + } + V.PC.pregAdaptation = 30; + if (V.PC.dick !== 0) { + V.PC.dick = 2; + V.PC.balls = 2; + V.PC.scrotum = V.PC.balls + 1; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 0; + } + } else if (V.PC.physicalAge <= 18) { + V.PC.hips = 0; + V.PC.shoulders = -1; + V.PC.butt = 1; + V.PC.boobs = 600; + if (V.PC.vagina !== -1) { + V.PC.vagina = 1; + V.PC.vaginaLube = 1; + V.PC.pubertyXX = 1; + } + V.PC.pregAdaptation = 50; + if (V.PC.dick !== 0) { + V.PC.dick = 3; + V.PC.balls = 3; + V.PC.scrotum = V.PC.balls; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 1; + } + } else { + V.PC.hips = 1; + V.PC.shoulders = 0; + V.PC.butt = 2; + V.PC.boobs = 900; + if (V.PC.vagina !== -1) { + V.PC.vagina = 1; + V.PC.vaginaLube = 1; + V.PC.pubertyXX = 1; + } + V.PC.pregAdaptation = 50; + if (V.PC.dick !== 0) { + V.PC.dick = 4; + V.PC.balls = 3; + V.PC.scrotum = V.PC.balls + 1; + V.PC.foreskin = V.PC.dick; + V.PC.pubertyXY = 1; + } + } + if (V.PC.boobs < 250) { + V.PC.nipples = "tiny"; + } else if (V.PC.boobs < 1000) { + V.PC.nipples = "cute"; + } else { + V.PC.nipples = "puffy"; + } + } +}; + +App.UI.Player.assignCareerByAge = function(selection) { + let career; + + if (V.disableForcedCareers || V.PC.actualAge >= 22) { + career = selection; + } else if (selection === "wealth") { + if (V.PC.actualAge < 14) { + career = "rich kid"; + } else { + career = "trust fund"; + } + } else if (selection === "capitalist") { + if (V.PC.actualAge < 14) { + career = "business kid"; + } else { + career = "entrepreneur"; + } + } else if (selection === "mercenary") { + if (V.PC.actualAge < 14) { + career = "child soldier"; + } else { + career = "recruit"; + } + } else if (selection === "slaver") { + if (V.PC.actualAge < 14) { + career = "slave tender"; + } else { + career = "slave overseer"; + } + } else if (selection === "engineer") { + if (V.PC.actualAge < 14) { + career = "worksite helper"; + } else { + career = "construction"; + } + } else if (selection === "medicine") { + if (V.PC.actualAge < 14) { + career = "nurse"; + } else { + career = "medical assistant"; + } + } else if (selection === "celebrity") { + if (V.PC.actualAge < 14) { + career = "child star"; + } else { + career = "rising star"; + } + } else if (selection === "BlackHat") { + if (V.PC.actualAge < 14) { + career = "script kiddy"; + } else { + career = "hacker"; + } + } else if (selection === "escort") { + if (V.PC.actualAge < 14) { + career = "child prostitute"; + } else { + career = "prostitute"; + } + } else if (selection === "servant") { + if (V.PC.actualAge < 14) { + career = "child servant"; + } else { + career = "handmaiden"; + } + } else if (selection === "gang") { + if (V.PC.actualAge < 14) { + career = "street urchin"; + } else { + career = "hoodlum"; + } + } + + V.disableForcedCareers = null; + + return career; +}; + App.UI.Player.refreshmentChoice = function(options) { let option = options.addOption("Your preferred refreshment is", "refreshmentType", V.PC); for (const [key, value] of App.Data.player.refreshmentType) { @@ -112,6 +554,12 @@ App.UI.Player.design = function() { .addRange(55, 65, "<", "Well into middle age").addRange(70, 65, ">=", "Old"); options.addOption(`Your birthday was <strong>${V.PC.birthWeek}</strong> weeks ago.`, "birthWeek", V.PC).showTextBox(); + option = options.addCustomOption() + .addButton( + "Adjust body to match age", + () => App.UI.Player.syncAgeBasedParameters(), + "" + ); } } else { r = []; @@ -123,15 +571,19 @@ App.UI.Player.design = function() { } r.push(`and everyone that matters calls you ${PlayerName()}.`); - r.push(`You are ${V.PC.actualAge} years old which is`); + r.push(`You are ${V.PC.actualAge} years old, which is`); if (V.PC.actualAge >= 65) { r.push(`<strong>old</strong>.`); } else if (V.PC.actualAge >= 50) { r.push(`<strong>well into middle age</strong>.`); } else if (V.PC.actualAge >= 35) { r.push(`<strong>entering middle age</strong>.`); - } else { + } else if (V.PC.actualAge >= 22) { r.push(`<strong>surprisingly young</strong>.`); + } else if (V.PC.actualAge >= 14) { + r.push(`<strong>exceedingly young</strong>.`); + } else { + r.push(`<strong>merely a child</strong>.`); } App.Events.addNode(el, r, "p"); } @@ -161,21 +613,51 @@ App.UI.Player.design = function() { // Appearance if (allowEdits) { - App.UI.Player.appearance(options); + if (V.PC.vagina !== -1 && V.PC.dick !== 0) { + State.temporary.vaginaPenis = 2; + } else if (V.PC.vagina !== -1) { + State.temporary.vaginaPenis = 1; + } else { + State.temporary.vaginaPenis = 0; + } - options.addOption("Your face is", "faceShape", V.PC) - .addValueList([ - ["Normal", "normal"], - ["Androgynous", "androgynous"], - ["Masculine", "masculine"], - ["Cute", "cute"], - ["Sensual", "sensual"], - ["Exotic", "exotic"] - ]); + option = options.addOption("You have a", "vaginaPenis", State.temporary) + .addValue("Penis", 0, () => { + V.PC.preg = 0; + V.PC.pregType = 0; + V.PC.dick = 4; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.prostate = 1; + V.PC.vagina = -1; + V.PC.ovaries = 0; + }).addValue("Vagina", 1, () => { + V.PC.dick = 0; + V.PC.balls = 0; + V.PC.scrotum = 0; + V.PC.prostate = 0; + V.PC.vagina = 1; + V.PC.ovaries = 1; + }).addValue("Penis and Vagina", 2, () => { + V.PC.dick = 4; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.prostate = 1; + V.PC.vagina = 1; + V.PC.ovaries = 1; + }); + if (State.temporary.vaginaPenis === 0) { + option.addComment("Standard sex scenes; easiest reputation maintenance."); + } else if (State.temporary.vaginaPenis === 1) { + option.addComment("Sex scene variations; most difficult reputation maintenance."); + } else { + option.addComment("Sex scene variations; more difficult reputation maintenance; some unique opportunities, especially with breasts."); + } + App.UI.Player.appearance(options, true); } else { r = []; - r.push(`You are a ${V.PC.nationality} ${V.PC.race} with`); + r.push(`You are a ${heightToEitherUnit(V.PC.height)} tall ${V.PC.nationality} ${V.PC.race} with`); if (V.PC.markings === "heavily freckled") { r.push(`heavily freckled`); } else if (V.PC.markings === "freckles") { @@ -183,7 +665,18 @@ App.UI.Player.design = function() { } else { r.push(`clear`); } - r.push(`${V.PC.skin} skin, ${V.PC.hColor} hair and ${App.Desc.eyesColor(V.PC)}. You have a ${V.PC.faceShape} face.`); + r.push(`${V.PC.skin} skin, ${V.PC.hColor} hair and ${App.Desc.eyesColor(V.PC)}. You have a ${V.PC.faceShape}`); + if (V.PC.lips > 95) { + r.push(`face with way too much lip; you can't shut your mouth properly anymore.`); + } else if (V.PC.lips > 70) { + r.push(`face with truly massive lips.`); + } else if (V.PC.lips > 40) { + r.push(`face with plump lips.`); + } else if (V.PC.lips > 20) { + r.push(`face with full lips.`); + } else { + r.push(`face.`); + } App.Events.addNode(el, r, "p"); } @@ -209,40 +702,35 @@ App.UI.Player.design = function() { ["Servant", "servant"], ["Gang leader", "gang"]] ); + option = options.addCustomOption() + .addButton( + "Adjust career for age", + () => V.PC.career = App.UI.Player.assignCareerByAge(V.PC.career), + "" + ); if (V.secExpEnabled > 0) { - switch (V.PC.career) { - case "capitalist": - option.addComment(`<div><span class="yellowgreen">The propaganda hub's upgrades will be cheaper.</span></div>`); - break; - case "mercenary": - option.addComment(`<div><span class="green">Easier to maintain security</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); - break; - case "slaver": - option.addComment(`<div><span class="green">Easier to maintain authority</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); - break; - case "engineer": - option.addComment(`<div><span class="yellowgreen">construction and upgrade of facilities will be cheaper.</span></div>`); - break; - case "medicine": - option.addComment(`<div><span class="yellowgreen">Drug upgrades will be cheaper.</span></div>`); - break; - case "celebrity": - option.addComment(`<div><span class="yellowgreen">The propaganda hub's upgrades will be cheaper.</span></div>`); - break; - case "escort": - option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); - break; - case "servant": - option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); - break; - case "gang": - option.addComment(`<div><span class="green">Easier to maintain authority</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); - break; - case "BlackHat": - option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); - break; - default: - option.addComment(`<div><span class="red">Harder to maintain authority,</span> but <span class="yellowgreen">the propaganda hub's upgrades will be cheaper.</span></div>`); + if (isPCCareerInCategory("capitalist")) { + option.addComment(`<div><span class="yellowgreen">The propaganda hub's upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("mercenary")) { + option.addComment(`<div><span class="green">Easier to maintain security</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("slaver")) { + option.addComment(`<div><span class="green">Easier to maintain authority</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("engineer")) { + option.addComment(`<div><span class="yellowgreen">construction and upgrade of facilities will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("medicine")) { + option.addComment(`<div><span class="yellowgreen">Drug upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("celebrity")) { + option.addComment(`<div><span class="yellowgreen">The propaganda hub's upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("escort")) { + option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); + } else if (isPCCareerInCategory("servant")) { + option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); + } else if (isPCCareerInCategory("gang")) { + option.addComment(`<div><span class="green">Easier to maintain authority</span> and <span class="yellowgreen">the security HQ's upgrades will be cheaper.</span></div>`); + } else if (isPCCareerInCategory("BlackHat")) { + option.addComment(`<div><span class="red">Harder to maintain authority.</span></div>`); + } else { + option.addComment(`<div><span class="red">Harder to maintain authority,</span> but <span class="yellowgreen">the propaganda hub's upgrades will be cheaper.</span></div>`); } } } @@ -261,39 +749,81 @@ App.UI.Player.design = function() { r = []; switch (V.PC.career) { case "wealth": + case "trust fund": + case "rich kid": r.push(`Prior to being an arcology owner, you were a member of the idle wealthy.`); break; case "capitalist": r.push(`Prior to being an arcology owner, you were a business leader.`); break; + case "entrepreneur": + case "business kid": + r.push(`Prior to being an arcology owner, you were a cunning entrepreneur.`); + break; case "mercenary": + case "recruit": r.push(`Prior to being an arcology owner, you were a mercenary.`); break; + case "child soldier": + r.push(`Prior to being an arcology owner, you were a disposable conscript.`); + break; case "slaver": + case "slave overseer": r.push(`Prior to being an arcology owner, you were a slaver.`); break; + case "slave tender": + r.push(`Prior to being an arcology owner, you were a slaver tasked with looking after fresh captures.`); + break; case "engineer": r.push(`Prior to being an arcology owner, you were an engineer.`); break; + case "construction": + case "worksite helper": + r.push(`Prior to being an arcology owner, you built buildings.`); + break; case "medicine": r.push(`Prior to being an arcology owner, you were a surgeon.`); break; + case "medical assistant": + r.push(`Prior to being an arcology owner, you assisted with surgeries.`); + break; + case "nurse": + r.push(`Prior to being an arcology owner, you were a nurse.`); + break; case "celebrity": r.push(`Prior to being an arcology owner, you were a minor celebrity.`); break; + case "rising star": + r.push(`Prior to being an arcology owner, you were an up-and-coming star.`); + break; + case "child star": + r.push(`Prior to being an arcology owner, you were a child actor.`); + break; case "BlackHat": + case "hacker": + case "script kiddy": r.push(`Prior to being an arcology owner, you specialized in cracking databases and making mockeries of cyber security.`); break; case "arcology owner": r.push(`Being an arcology owner defines your life now.`); break; case "escort": + case "prostitute": r.push(`Prior to being an arcology owner, you knew how to survive off your looks and body.`); break; + case "child prostitute": + r.push(`Prior to being an arcology owner, you had no choice but to sell your body to survive.`); + break; case "servant": + case "handmaiden": + case "child servant": r.push(`Prior to being an arcology owner, you served a well-off`); - if (V.PC.counter.birthMaster >= 2) { + if (V.PC.counter.birthMaster >= 8) { + r.push(`master as his breeder.`); + } else if (V.PC.counter.birthMaster >= 2) { r.push(`master and bore him several children.`); + } else if (V.PC.counter.birthMaster >= 1) { + r.push(`master and bore him a child.`); } else { r.push(`master.`); } @@ -301,6 +831,12 @@ App.UI.Player.design = function() { case "gang": r.push(`Prior to being an arcology owner, you were the leader of a ruthless gang.`); break; + case "hoodlum": + r.push(`Prior to being an arcology owner, you were a troublemaker in a gang.`); + break; + case "street urchin": + r.push(`Prior to being an arcology owner, you lived a hard life on the streets.`); + break; } r.push(`Word in the arcology is you acquired it through`); @@ -330,47 +866,7 @@ App.UI.Player.design = function() { if (allowEdits) { options = new App.UI.OptionsGroup(); - if (V.PC.vagina !== -1 && V.PC.dick !== 0) { - State.temporary.vaginaPenis = 2; - } else if (V.PC.vagina !== -1) { - State.temporary.vaginaPenis = 1; - } else { - State.temporary.vaginaPenis = 0; - } - - option = options.addOption("You have a", "vaginaPenis", State.temporary) - .addValue("Penis", 0, () => { - V.PC.preg = 0; - V.PC.pregType = 0; - V.PC.dick = 4; - V.PC.balls = 3; - V.PC.scrotum = 3; - V.PC.prostate = 1; - V.PC.vagina = -1; - V.PC.ovaries = 0; - }).addValue("Vagina", 1, () => { - V.PC.dick = 0; - V.PC.balls = 0; - V.PC.scrotum = 0; - V.PC.prostate = 0; - V.PC.vagina = 1; - V.PC.ovaries = 1; - }).addValue("Penis and Vagina", 2, () => { - V.PC.dick = 4; - V.PC.balls = 3; - V.PC.scrotum = 3; - V.PC.prostate = 1; - V.PC.vagina = 1; - V.PC.ovaries = 1; - }); - if (State.temporary.vaginaPenis === 0) { - option.addComment("Standard sex scenes; easiest reputation maintenance."); - } else if (State.temporary.vaginaPenis === 1) { - option.addComment("Sex scene variations; most difficult reputation maintenance."); - } else { - option.addComment("Sex scene variations; more difficult reputation maintenance; some unique opportunities, especially with breasts."); - } - + // obsolete? if (V.cheatMode) { options.addOption("Vagina", "vagina", V.PC).showTextBox(); options.addOption("New vagina", "newVag", V.PC).showTextBox(); @@ -385,7 +881,7 @@ App.UI.Player.design = function() { options.addOption("Balls implant", "ballsImplant", V.PC).showTextBox(); } - if (V.PC.vagina !== -1) { + if (V.PC.vagina !== -1 && V.PC.pubertyXX === 1) { option = options.addOption("You are", "preg", V.PC) .addValue("Taking contraceptives", -1, () => { V.PC.pregType = 0; V.PC.labor = 0; }) .addValue("Not taking contraceptives", 0, () => { V.PC.pregType = 0; V.PC.labor = 0; }) @@ -438,83 +934,201 @@ App.UI.Player.design = function() { } } - if (V.PC.title === 1 && V.PC.boobs <= 100) { - option = options.addOption("Your chest is", "boobs", V.PC).addValue("Manly", 100, () => V.PC.boobsImplant = 0); + el.append(options.render()); + } else { + r = []; + + if (V.PC.boobs >= 300) { + r.push(`You have a`); + if (V.PC.title > 0) { + r.push(`masculine`); + } else { + r.push(`feminine`); + } + r.push(`body with`); + if (V.PC.shoulders > 1) { + r.push(`very broad shoulders`); + } else if (V.PC.shoulders > 0) { + r.push(`broad shoulders`); + } else if (V.PC.shoulders < -1) { + r.push(`very narrow shoulders`); + } else if (V.PC.shoulders < 0) { + r.push(`narrow shoulders`); + } + if (V.PC.shoulders !== 0) { + r.push(`and`); + } + let breastShapeDesc; + if (V.PC.boobShape === "saggy") { + breastShapeDesc = ` that sag a bit`; + } else if (V.PC.boobShape === "spherical") { + breastShapeDesc = ` that might just be a little too much implant now.`; + } + if (V.PC.boobs >= 1400) { + r.push(`giant${(V.PC.boobsImplant !== 0) ? `, fake` : ``} cow tits${breastShapeDesc}.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge`); + if (V.PC.boobsImplant !== 0) { + r.push(`fake`); + } + r.push(`breasts${breastShapeDesc}.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big`); + if (V.PC.boobsImplant !== 0) { + r.push(`fake`); + } + r.push(`breasts${breastShapeDesc}.`); + } else if (V.PC.boobs >= 800) { + r.push(`noticeable breasts${breastShapeDesc}.`); + } else if (V.PC.boobs >= 650) { + r.push(`unremarkable breasts${breastShapeDesc}.`); + } else if (V.PC.boobs >= 500) { + r.push(`average breasts${breastShapeDesc}.`); + } else { + r.push(`small breasts${breastShapeDesc}.`); + } } else { - option = options.addOption("Your breasts are", "boobs", V.PC).addValue("Flat", 100, () => V.PC.boobsImplant = 0); + if (V.PC.title > 0) { + r.push(`You have a manly chest.`); + } else { + r.push(`You are flat as a board.`); + } } - option.addValueList([ - ["C-cups", 500], - ["DD-cups", 900], - ["F-cups", 1100], - ["G-cups", 1300] - ]); - option.showTextBox("CCs"); - - if (V.PC.boobs >= 500) { - options.addOption("Your breasts are", "boobsImplant", V.PC) - .addValueList([ - ["All natural", 0], - ["Fake", 400] - ]) - .showTextBox("CCs"); + r.push(`Around back, you have`); + if (V.PC.butt > 10) { + r.push(`a disproportionate swelling of flesh`); + } else if (V.PC.butt > 7) { + r.push(`an absurdly large butt`); + } else if (V.PC.butt > 6) { + r.push(`a ridiculous ass`); + } else if (V.PC.butt > 5) { + r.push(`a gigantic ass`); + } else if (V.PC.butt > 4) { + r.push(`an enormous ass`); + } else if (V.PC.butt > 3) { + r.push(`a huge ass`); + } else if (V.PC.butt > 2) { + r.push(`a big butt`); + } else if (V.PC.butt > 1) { + r.push(`a shapely rear`); + } else if (V.PC.butt > 0) { + r.push(`a trim rear`); + } else { + r.push(`a flat ass`); } - - if (V.cheatMode) { - if (V.PC.boobs >= 500) { - options.addOption("Your breasts are", "lactation", V.PC) - .addValueList([ - ["Lactating", 1], - ["Not Lactating", 0] - ]); - } + r.push(`attached to a pair of`); + if (V.PC.hips > 2) { + r.push(`inhumanly wide hips.`); + } else if (V.PC.hips > 1) { + r.push(`very wide hips.`); + } else if (V.PC.hips > 0) { + r.push(`wide hips.`); + } else if (V.PC.hips > -1) { + r.push(`average hips.`); + } else if (V.PC.hips > -2) { + r.push(`narrow hips.`); + } else { + r.push(`very narrow hips.`); } - options.addOption("Your butt size", "butt", V.PC) - .addValueList([ - ["Normal", 2], - ["Big", 3], - ["Huge", 4], - ["Enormous", 5], - ]) - .showTextBox(); - - options.addOption("Your butt is", "buttImplant", V.PC) - .addValueList([ - ["All natural", 0], - ["Fake", 1] - ]) - .showTextBox("CCs"); - - - options.addOption("You are genetically", "genes", V.PC) - .addValue("XY").addValue("XX"); - - el.append(options.render()); - } else { - r = []; - r.push(`You have a`); - if (V.PC.vagina !== -1 && V.PC.dick !== 0) { - r.push(`penis and vagina`); - } else if (V.PC.dick !== 0) { - r.push(`penis.`); - } else if (V.PC.vagina !== -1) { - r.push(`vagina`); + r.push(`Between your legs, you have`); + if (V.PC.dick !== 0) { + if (V.PC.dick === 1) { + r.push(`a tiny, humiliating`); + } else if (V.PC.dick === 2) { + r.push(`a small`); + } else if (V.PC.dick === 3) { + r.push(`an average`); + } else if (V.PC.dick === 4) { + r.push(`a big`); + } else if (V.PC.dick === 5) { + r.push(`a huge`); + } else if (V.PC.dick === 6) { + r.push(`a pussy wrecking`); + } else if (V.PC.dick === 7) { + r.push(`a massive, unusable`); + } else if (V.PC.dick === 8) { + r.push(`an imposing, if unusable,`); + } else if (V.PC.dick === 9) { + r.push(`a monster of a`); + } else if (V.PC.dick === 10) { + r.push(`an inhuman`); + } else { + r.push(`an unusable slab of sensitive flesh you call a`); + } + r.push(`dick`); + if (V.PC.balls !== 0) { + r.push(r.pop() + ","); + } + if (V.PC.balls === 1) { + if (V.PC.scrotum === 0) { + r.push(`a tiny pair of internal balls`); + } else { + r.push(`vestigial testicles`); + } + } else if (V.PC.balls === 2) { + if (V.PC.scrotum === 0) { + r.push(`a pair of internal balls`); + } else { + r.push(`a pair of small testicles`); + } + } else if (V.PC.balls === 3) { + r.push(`a pair of average testicles`); + } else if (V.PC.balls === 4) { + r.push(`a dangling pair of large balls`); + } else if (V.PC.balls === 5) { + r.push(`a dangling pair of heavy testicles`); + } else if (V.PC.balls === 6) { + r.push(`a heavy pair of huge balls`); + } else if (V.PC.balls === 7) { + r.push(`a ponderous set of giant testicles`); + } else if (V.PC.balls === 8) { + r.push(`a ponderous set of enormous testicles`); + } else if (V.PC.balls === 9) { + r.push(`a monstrous pair of testicles`); + } else { + r.push(`an inhuman pair of testicles`); + } + if (V.PC.vagina !== -1) { + r.push(`and`); + } else { + r.push(r.pop() + "."); + } } if (V.PC.vagina !== -1) { - r.push(`and are`); + if (V.PC.vagina === 0) { + r.push(`an unsullied`); + } else if (V.PC.vagina === 1 || V.PC.newVag === 1) { + // nothing + } else if (V.PC.vagina === 2) { + r.push(`an experienced`); + } else if (V.PC.vagina === 3) { + r.push(`a loose`); + } else if (V.PC.vagina === 4) { + r.push(`a very well-traveled`); + } else { + r.push(`a ruined`); + } + r.push(`vagina.`); + } + if (V.PC.vagina !== -1 && V.PC.mpreg !== 0) { + r.push(`You are`); if (V.PC.pregWeek < 0) { - r.push(`recovering from your last pregnancy.`); + r.push(`currently recovering from your last pregnancy.`); } else if (V.PC.preg === -2) { - r.push(`infertile.`); + r.push(`infertile and can't get pregnant.`); } else if (V.PC.preg === -1) { - r.push(`taking contraceptives.`); + r.push(`taking contraceptives to avoid potential pregnancy.`); } else if (V.PC.preg === 0) { - r.push(`fertile.`); + if (V.PC.pubertyXX === 0) { + r.push(`not yet fertile.`); + } else { + r.push(`fertile and capable of becoming pregnant.`); + } } else if (V.PC.preg > 37) { - r.push(`extremely pregnant.`); + r.push(`extremely pregnant and likely to give birth soon.`); } else if (V.PC.preg > 0) { - r.push(`pregnant.`); + r.push(`currently pregnant.`); } linkArray = []; @@ -548,44 +1162,6 @@ App.UI.Player.design = function() { } } - if (V.PC.boobs >= 300) { - r.push(`You have a`); - if (V.PC.title > 0) { - r.push(`masculine`); - } else { - r.push(`feminine`); - } - r.push(`body with`); - if (V.PC.boobs >= 1400) { - r.push(`giant${(V.PC.boobsImplant !== 0) ? `, fake` : ``} cow tits.`); - } else if (V.PC.boobs >= 1200) { - r.push(`huge`); - if (V.PC.boobsImplant !== 0) { - r.push(`fake`); - } - r.push(`breasts.`); - } else if (V.PC.boobs >= 1000) { - r.push(`big`); - if (V.PC.boobsImplant !== 0) { - r.push(`fake`); - } - r.push(`breasts.`); - } else if (V.PC.boobs >= 800) { - r.push(`noticeable breasts.`); - } else if (V.PC.boobs >= 650) { - r.push(`unremarkable breasts.`); - } else if (V.PC.boobs >= 500) { - r.push(`average breasts.`); - } else { - r.push(`small breasts.`); - } - } else { - if (V.PC.title > 0) { - r.push(`You have a manly chest.`); - } else { - r.push(`You are flat as a board.`); - } - } App.Events.addNode(el, r, "p"); } diff --git a/src/events/intro/pcAppearanceIntro.tw b/src/events/intro/pcAppearanceIntro.tw index 3854ab1ddaba89663f214985123f95b35b00ad02..e982aa0d9f2fba6a8a77381876e23bbf9fe15557 100644 --- a/src/events/intro/pcAppearanceIntro.tw +++ b/src/events/intro/pcAppearanceIntro.tw @@ -3,7 +3,7 @@ <p> Race and appearance are largely irrelevant in the Free Cities; there are only the free and the enslaved. <div class="indent note"> - Appearance only, no effect on gameplay (unless you make a big deal out of it). + Appearance only, will mostly have a superficial effect (unless you make a big deal out of it). </div> </p> <<set _options = new App.UI.OptionsGroup()>> @@ -11,5 +11,9 @@ <<includeDOM _options.render()>> <p> - [[Finish player character customization|PC Experience Intro][resetEyeColor($PC)]] + <<if isFertile(V.PC)>> + [[Continue player character customization|PC Preg Intro][resetEyeColor($PC)]] + <<else>> + [[Finish player character customization|PC Experience Intro][resetEyeColor($PC)]] + <</if>> </p> diff --git a/src/events/intro/pcBodyIntro.js b/src/events/intro/pcBodyIntro.js index 187dd896654d64c5c0566bd03ea4b485aac01227..1dd639982445185ea0ed73fe42d1ceb5bc6e9023 100644 --- a/src/events/intro/pcBodyIntro.js +++ b/src/events/intro/pcBodyIntro.js @@ -1,7 +1,6 @@ App.Intro.PCBodyIntro = function() { + V.PC.actualAge = Math.clamp(V.PC.actualAge, 14, 80); - V.PC.physicalAge = V.PC.actualAge; - V.PC.visualAge = V.PC.actualAge; const el = new DocumentFragment(); let r = []; @@ -42,7 +41,7 @@ App.Intro.PCBodyIntro = function() { // Chest options.addOption("Under my suit jacket", "boobs", V.PC) - .addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 100) + .addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 200) .addValue("Feminine breasts", 900) .addComment("These options will affect scenes. Sporting breasts will increase difficulty"); @@ -121,19 +120,23 @@ App.Intro.PCBodyIntro = function() { App.UI.DOM.appendNewElement("div", el, `How old are you?`, ["intro", "question"]); const r = []; - r.push(`I'm`); + r.push(`You're`); if (V.PC.actualAge >= 65) { - r.push(`getting up in years. I've made a legacy for myself, and I'm not done yet.`); + r.push(`getting up in years. You've made a legacy for myself, and not done with life just yet.`); } else if (V.PC.actualAge >= 50) { - r.push(`well into middle age. I've made a name for myself, and I've still got it.`); + r.push(`well into middle age. You've made a name for myself, and still got your groove.`); } else if (V.PC.actualAge >= 35) { - r.push(`entering middle age. I'm accomplished, and I retain some youthful vigor.`); + r.push(`entering middle age. You're accomplished, and retain some youthful vigor.`); + } else if (V.PC.actualAge >= 22) { + r.push(`surprisingly young. You'll need to prove myself, but you've got energy to burn.`); + } else if (V.PC.actualAge >= 14) { + r.push(`exceedingly young. You're nobody, but you're full of youthful vigor and ready to make the world yours.`); } else { - r.push(`surprisingly young. I'll need to prove myself, but I've got energy to burn.`); + r.push(`just a child. You may be emancipated, but society won't accept you as a leader.`); } - r.push(`My age:`); + r.push(`Your age:`); options.addOption(r.join(" "), "actualAge", V.PC).showTextBox() - .addComment(`Older player characters start with more reputation and maintain reputation somewhat more easily, but have slightly less sexual energy.`); + .addComment(`Older player characters start with more reputation and maintain reputation somewhat more easily, but have slightly less sexual energy. Exceedingly young characters will not be accepted by society, even more so if underage, and will face additional hurdles and complications.`); el.append(options.render()); @@ -156,12 +159,17 @@ App.Intro.PCBodyIntro = function() { function endScene() { const el = document.createElement("p"); - const linkTitle = "Confirm player character customization"; - if (V.PC.vagina !== -1) { - el.append(App.UI.DOM.passageLink(linkTitle, "PC Preg Intro")); - } else { - el.append(App.UI.DOM.passageLink(linkTitle, "PC Appearance Intro")); - } + el.append( + App.UI.DOM.link( + "Confirm player character overview", + () => { + App.UI.Player.syncAgeBasedParameters(); + }, + [], + "PC Appearance Intro" + ) + ); + return el; } }; diff --git a/src/events/intro/pcExperienceIntro.tw b/src/events/intro/pcExperienceIntro.tw index 422ae0db6cbf415fac6867c2f070259de93e027b..137604a09654c94de2023a77bb4342327cc7eb83 100644 --- a/src/events/intro/pcExperienceIntro.tw +++ b/src/events/intro/pcExperienceIntro.tw @@ -3,6 +3,10 @@ <<if $PC.career == "arcology owner">> <<goto "PC Rumor Intro">> <<else>> + <<if !$disableForcedCareers>> + <<set $disableForcedCareers = $PC.actualAge >= 22 ? 1 : 0>> + <</if>> + <p> You're a relative unknown in the Free Cities, but it's clear you're already accomplished. The meek and average cannot aspire to acquire arcologies. You've got all the necessary skills to take over an arcology and succeed as its owner, but you should be able to leverage the skills and experience you retain from your past, too. <span class="intro question"> @@ -11,7 +15,7 @@ </p> <div> - [[Idle wealth|PC Rumor Intro][$PC.career = "wealth"]] + [[Idle wealth|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("wealth")]] </div> <div class="indent note"> Start with <span class="cash inc">extra money.</span> @@ -22,7 +26,7 @@ </div> <div> - [[Venture capitalism|PC Rumor Intro][$PC.career = "capitalist"]] + [[Venture capitalism|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("capitalist")]] </div> <div class="indent note"> You will be more @@.green;effective at business pursuits.@@ @@ -33,7 +37,7 @@ </div> <div> - [[Private military work|PC Rumor Intro][$PC.career = "mercenary"]] + [[Private military work|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("mercenary")]] </div> <div class="indent note"> You retain mercenary contacts @@ -46,7 +50,7 @@ </div> <div> - [[Slaving|PC Rumor Intro][$PC.career = "slaver"]] + [[Slaving|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("slaver")]] </div> <div class="indent note"> Your slave breaking experience will be useful. @@ -57,21 +61,21 @@ </div> <div> - [[Arcology engineering|PC Rumor Intro][$PC.career = "engineer"]] + [[Engineering|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("engineer")]] </div> <div class="indent note"> <span class="cash inc">Upgrading the arcology will be cheaper.</span> Also, the arcology will start with <span class="cash inc">basic economic upgrades</span> already installed. </div> <div> - [[Slave surgery|PC Rumor Intro][$PC.career = "medicine"]] + [[Surgery|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("medicine")]] </div> <div class="indent note"> Surgery will be <span class="cash inc">cheaper</span> and @@.green;healthier@@ and <span class="cash inc">drug upgrades will be cheaper.</span> Your starting slaves will have free implants available. </div> <div> - [[Minor celebrity|PC Rumor Intro][$PC.career = "celebrity"]] + [[Minor celebrity|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("celebrity")]] </div> <div class="indent note"> Start with @@.green;extra reputation.@@ @@ -82,7 +86,7 @@ </div> <div> - [[High class escort|PC Rumor Intro][$PC.career = "escort"]] + [[Sex industry|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("escort")]] </div> <div class="indent note"> As an ex-whore, you will find it @@.red;hard to maintain reputation@@<<if $showSecExp == 1>>, @@.red;in addition to authority@@<</if>>. @@ -90,7 +94,7 @@ </div> <div> - [[Servant|PC Rumor Intro][$PC.career = "servant"]] + [[Servant|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("servant")]] </div> <div class="indent note"> As an ex-servant, you will find it @@.red;hard to maintain reputation@@<<if $showSecExp == 1>>, @@.red;in addition to authority@@<</if>>. @@ -98,10 +102,10 @@ </div> <div> - [[Gang Leader|PC Rumor Intro][$PC.career = "gang"]] + [[Gang affiliation|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("gang")]] </div> <div class="indent note"> - As an ex-gang leader, you know how to haggle slaves. + As an ex-gang member, you know how to haggle slaves. <<if $showSecExp == 1>> In addition, asserting your authority @@.green;will be easier@@ and <span class="cash inc">security HQ upgrades will be cheaper.</span> <</if>> @@ -109,10 +113,10 @@ </div> <div> - [[Incursion Specialist|PC Rumor Intro][$PC.career = "BlackHat"]] + [[Incursion Specialist|PC Rumor Intro][$PC.career = App.UI.Player.assignCareerByAge("BlackHat")]] </div> <div class="indent note"> - As an ex-hacker for hire, you know how to gain access computer systems and other devices. @@.green;Certain upgrades will be cheaper@@ and you may find alternative approaches to problems. + As an ex-hacker, you know how to gain access computer systems and other devices. @@.green;Certain upgrades will be cheaper@@ and you may find alternative approaches to problems. <<if $showSecExp == 1>> However, you will @@.red;find authority quite hard@@ to maintain. <</if>> @@ -130,4 +134,29 @@ <<set $showSecExp = 1>> <</link>> <</if>> +</p> + +<p> + <<if $disableForcedCareers != 1>> + <<link "Disable forced career choices" "PC Experience Intro">> + <<set $disableForcedCareers = 1>> + <</link>> + <div class="indent note"> + <<if $PC.actualAge < 14>> + Due to your young age, you will be given the child variant of your chosen career line. + <<elseif $PC.actualAge < 22>> + Due to your age, you will be given the inexperienced variant of your chosen career line. + <</if>> + Over time and with effort, you will be capable of achieving everything of importance in the adult careers. + </div> + <<else>> + <<if $PC.actualAge < 22>> + <<link "Enable forced career choices" "PC Experience Intro">> + <<set $disableForcedCareers = 0>> + <</link>> + <div class="indent note"> + Use age based careers. + </div> + <</if>> + <</if>> </p> \ No newline at end of file diff --git a/src/events/intro/pcPregIntro.tw b/src/events/intro/pcPregIntro.tw index 71d6886523392ae37b5375261bf849c69ec9a7ef..78ffe760712e87a063df04f0cf8f60a1c576f4a7 100644 --- a/src/events/intro/pcPregIntro.tw +++ b/src/events/intro/pcPregIntro.tw @@ -54,5 +54,5 @@ </div> </p> <p> - [[Confirm player character customization|PC Appearance Intro]] + [[Confirm player character customization|PC Experience Intro]] </p> diff --git a/src/events/legacy/RECI.tw b/src/events/legacy/RECI.tw index 86254cbb1751f59e88f8c4ed55416342a0091c08..6a8f1360c601d2aac042e354ab440b3abab499f0 100644 --- a/src/events/legacy/RECI.tw +++ b/src/events/legacy/RECI.tw @@ -27,7 +27,7 @@ <<if Array.isArray($RECIevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random check-in event would have been selected from the following:'' <br> @@ -83,7 +83,7 @@ <br>ERROR: bad RECI event $RECIevent <</switch>> -<<if $cheatMode == 1>> +<<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/events/legacy/REFI.tw b/src/events/legacy/REFI.tw index 9c1c5341c73717d282f91b5ce9b25d8dcd39232b..ee7edebe8298df89f329fc94818f58c468880baf 100644 --- a/src/events/legacy/REFI.tw +++ b/src/events/legacy/REFI.tw @@ -25,7 +25,7 @@ <<if Array.isArray($REFIevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random fetish interest event would have been selected from the following:'' <br> @@ -43,7 +43,7 @@ <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check">> <span id="result"> -<<if $cheatMode == 1>> +<<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/events/legacy/RETS.tw b/src/events/legacy/RETS.tw index d72dea312921662a38205799a31126cb9cc7e5b4..eed6401c9cf1be515af691c24f3cb0307a07f80b 100644 --- a/src/events/legacy/RETS.tw +++ b/src/events/legacy/RETS.tw @@ -27,7 +27,7 @@ <<if Array.isArray($RETSevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random two slave event would have been selected from the following:'' <br> @@ -47,7 +47,7 @@ <br><br> <span id="result"> -<<if $cheatMode == 1>> +<<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/events/nonRandom/pAbducted.js b/src/events/nonRandom/pAbducted.js new file mode 100644 index 0000000000000000000000000000000000000000..18eb7c21c7445626c2e7084d961244a9a9681b02 --- /dev/null +++ b/src/events/nonRandom/pAbducted.js @@ -0,0 +1,287 @@ +App.Events.pAbducted = class pAbducted extends App.Events.BaseEvent { + constructor(actors, params) { + super(actors, params); + } + + eventPrerequisites() { + return [ + () => App.Events.effectiveWeek() === 12, + () => V.raped === -1, + () => V.arcologyUpgrade.drones !== 1, + () => V.BodyguardID === 0, + () => V.PC.career !== "arcology owner", + () => V.PC.visualAge < 14 + ]; + } + + execute(node) { + // disable Continue + V.nextButton = " "; + + let r = []; + const { + girlP + } = getPronouns(V.PC).appendSuffix("P"); + let abducted = 1; + + const genParam = {minAge: 22, race: "nonslave", disableDisability: 1}; + let abductor; + const contractCost = 1000; + abductor = GenerateNewSlave("XY", genParam); + abductor.boobs = 100; + abductor.skill.oral = 0; + abductor.skill.anal = 0; + abductor.muscles = Math.max(abductor.muscles, 40); + abductor.origin = `You sentenced $him to enslavement for the attempted abduction of a child.`; + abductor.devotion = -100; + abductor.trust = -100; + setHealth(abductor, jsRandom(-40, -20), normalRandInt(15, 3), undefined, 1, random(30, 80)); + abductor.anus = 0; + abductor.behavioralFlaw = "arrogant"; + abductor.sexualFlaw = "judgemental"; + + const { + He, + his, he, him + } = getPronouns(abductor); + + r.push(`While returning from a meeting with a prospective investor, an unfortunate wrong turn has led you into a rather seedy area of your arcology. You feel distinctly uncomfortable for some reason. You suspicions are quickly confirmed as a bag is swung over your head. Your grab your assailant's wrists and struggle to keep them from completely engulfing you,`); + + if (overpowerCheck(abductor, V.PC) >= random(1, 100)) { + r.push(`only to find that you're quite capable of keeping them at bay.`); + abducted = -1; + } else { + r.push(`only to find that you're far too outmatched to be able to hold them back.`); + } + if (abducted === -1) { // fought back and got stabbed + App.Events.addParagraph(node, r); + r = []; + V.fcnn.push("...is stable after altercation and plans for increased security measures following..."); + + r.push(`You quickly manage to gain the upper hand, pulling yourself out of the bag and getting a good look at the would-be kidnapper. Being bested by a child was not in his plans and, short of options, draws a knife and <span class="red">drives it into your stomach.</span> Realizing what he just did, he panics and flees, leaving you bleeding, his blade still stuck in you.`); + if (V.PC.skill.medicine < 0) { + r.push(`You cry out as you yank the weapon from your body, and clutching the gushing wound, hobble back the way you came — the way back to safety. The world spins as you lose consciousnesses.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`You awaken on a hard cot, staring face to face with a rather haggard looking man. You leap in shock, sending the man swearing and tearing your stitches open. As you regain composure, and get restitched, you realize that you are in a particularly shitty clinic known for their outrageous treatment fees. The wound was minor and should heal readily, but it will keep you out of commission for a little. `); + if (V.PC.preg > 2 && V.PC.pregKnown) { + r.push(`You're just glad it didn't harm your womb. This could have been a lot worse.`); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`It would be prudent to up security in your arcology. That or take a guard along when you leave the penthouse. Your wallet might actually hurt more than your injury does, ${cashFormatColor(5000, true)} for crappy stitches, but at least you'll be on your feet again in a week.`); + App.Events.addParagraph(node, r); + cashX(-5000, "event"); + } else { + r.push(`As much as it hurts, you steel yourself and apply pressure to the wound around the weapon before slowly hobbling back the way you came. It doesn't take long before someone comes rushing to your aid, and you've managed to keep your composure long enough to convey where you should be taken for medical treatment.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`You awaken in a nice, warm bed and are immediately greeted by a lovely boxum nurse; both familiar aspects of the clinic you've chosen for any serious medical emergencies. The wound was minor, only requiring some stiches, and should heal readily, but it will keep you out of commission for a little. At least the bill of ${cashFormatColor(1000, true)} isn't that bad.`); + if (V.PC.preg > 2 && V.PC.pregKnown) { + r.push(`You're just glad it didn't harm your womb. This could have been a lot worse.`); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`It would be prudent to up security in your arcology. That or take a guard along when you leave the penthouse. You are undeniably a high-value target for wealthy collectors and would rather avoid any future attempts and or stabbings. Even with a full description of them, your assailant got away; there was just nobody interested in tracking him down.`); + App.Events.addParagraph(node, r); + cashX(-1000, "event"); + } + continueButton(node); + V.PC.health.shortDamage = 2; + V.PC.health.longDamage = 1; + } else { + r.push(`Once your vision is obscured, your attacker sweeps your legs and tosses you into a waiting crate.`); + r.push(Spoken(abductor, `"Be a good little ${girlP} and keep quiet. Wouldn't want anything bad to happen to ya, eh? I'd really hate to damage the merchandise."`)); + r.push(`With nothing holding you, you slip the bag off yourself and assess the situation. Peeking from an airhole, you can see that you're being loaded on a dolly destined for the loading docks.`); + App.Events.addParagraph(node, r); + + App.Events.addResponses(node, [ + new App.Events.Result("Scream for help", badEnd), + new App.Events.Result("Remain calm", scream), + ]); + } + + function badEnd() { + r = []; + r.push(`You let loose a deafening shriek, desperate for someone to hear you.`); + r.push(Spoken(abductor, `"I said SHUT IT you little bitch!"`)); + r.push(`Your head is bashed into the side of the box as your kidnapper kicks it, sending it and you tumbling to the floor.`); + r.push(Spoken(abductor, `"Shit!"`)); + r.push(`Your abductor cursing and spitting is the last thing you hear before you lose consciousness.`); + App.Events.addParagraph(node, r); + + r = []; + r.push(`Once the realization strikes that you've gone missing, your arcology descends into lawlessness as the less than reputable clash to see who can seize control of building, at least until a new owner arrives to clean them out. An indeterminate amount of time later, a slave that looks a lot like the lost owner of ${V.arcologies[0].name} is seen; who's to say if it is you, or somebody else though? The story of your new life may be worth telling, but it must be told elsewhere.`); + App.Events.addParagraph(node, r); + + App.Events.addParagraph(node, ["<span class='bold'>GAME OVER</span>"]); + V.ui = "start"; + App.Utils.scheduleSidebarRefresh(); + } + + function scream() { + let bounty = 500 * random(3, 6); + r = []; + r.push(`Calling for help when it's just you and your abductor is nothing short of an invitation for trouble, so you keep your mouth shut and wait for an opportunity. There's only so many ways in and out of the arcology, and there's bound to be people going about their business through them at this hour. After an uncomfortably cramped ride and having to put up with your captive merrily humming to himself and arriving at a suitably populated loading dock, the thought occurs to you; what if they don't believe you are anything more than an unbroken slave?`); + if (V.PC.actualAge < V.minimumSlaveAge) { + r.push(`Fortunately, you are actually underage, so your screams for help quickly attract concerned workers. They corner the man and pry the lid off your box, allowing you to clamber back onto solid ground. Your would-be captor makes a short lived escape attempt straight into a fist once he realizes his plans are ruined. He's quickly tied up and presented to you for revenge.`); + abductor.minorInjury = "black eye"; + } else { + r.push(`Sometimes simple is better, so you scream out that you're being kidnapped and will give ${cashFormat(500)} to anyone that assures your return to safety. The prospect of easy money quickly has your captor tackled and you freed and helped to your feet. It may have costed you ${cashFormatColor(bounty, true)}, but the sight of the man groveling at your feet for mercy is worth it.`); + cashX(-bounty, "event"); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`It would be prudent to up security in your arcology. That or take a guard along when you leave the penthouse. You are undeniably a high-value target for wealthy collectors and would rather avoid the indignity of being crammed in a box again.`); + App.Events.addParagraph(node, r); + continueButton(node); + V.fcnn.push("...plans for increased security measures following the unsuccessful abduction of..."); + + App.UI.DOM.appendNewElement("div", node, `Now the only remaining question is what to do with the would-be kidnapper. You could toss them out of the arcology, but it might be more fun to turn the tables on ${him}.`); + + let slaveCosts = slaveCost(abductor); + slaveCosts -= contractCost; + App.UI.DOM.appendNewElement("div", node, `Applying enslavement as punishment will cost ${cashFormat(contractCost)}. Doing so and then selling ${him} immediately will bring in approximately ${cashFormat(slaveCosts)}.`, "note"); + + node.append(App.Desc.longSlave(abductor, {market: "generic"})); + const choices = []; + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave)); + choices.push(new App.Events.Result(`Sentence ${him} to a day in the stocks, then enslave ${him}`, stocks)); + if (V.arcade > 0) { + choices.push(new App.Events.Result(`Enslave ${him} and sentence ${him} to a month in the arcade`, arcade)); + } + if (V.dairy > 0 && V.dairyRestraintsSetting > 1) { + choices.push(new App.Events.Result(`Enslave ${him} and send ${him} straight to the industrial dairy`, dairy)); + } + if (V.farmyard > 0) { + choices.push(new App.Events.Result(`Enslave ${him} and send ${him} straight to the farmyard`, farmyard)); + } + if (V.seeExtreme > 0) { + choices.push(new App.Events.Result(`Punitively amputate ${his} limbs, and then enslave ${him}`, amputate)); + } + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave ${him}.`)); + } + choices.push(new App.Events.Result(`Publicly flog the criminal`, flog)); + App.Events.addResponses(node, choices); + + function enslave() { + const el = new DocumentFragment(); + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + el.append(`You complete the legalities and biometric scanning quickly and without fuss. The idiot will regret crossing you when ${he} wakes in the penthouse for basic slave induction.`); + el.append(App.UI.newSlaveIntro(abductor)); + return el; + } + + function stocks() { + const el = new DocumentFragment(); + const r = []; + healthDamage(abductor, 10); + abductor.behavioralFlaw = "odd"; + abductor.sexualFlaw = "hates penetration"; + abductor.anus = 2; + seX(abductor, "oral", "public", "penetrative", 23); + seX(abductor, "anal", "public", "penetrative", 12); + if (abductor.vagina > -1) { + abductor.vagina = 2; + seX(abductor, "vaginal", "public", "penetrative", 12); + if (random(1, 100) > 60 && isFertile(abductor)) { + knockMeUp(abductor, 100, 0, -2); + } + } else { + seX(abductor, "anal", "public", "penetrative", 12);/* even more anal */ + } + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + + r.push(`You declare ${his} holes fair game for the entire arcology. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus${(abductor.vagina > -1) ? ` and <span class="lime">fucked-out</span> pussy` : ``}. The public <span class="green">enjoys the fun.</span>`); + repX(500, "event"); + V.arcologies[0].prosperity += 2; + r.push(App.UI.newSlaveIntro(abductor)); + App.Events.addParagraph(el, r); + return el; + } + + function arcade() { + assignJob(abductor, "be confined in the arcade"); + abductor.sentence = 4; + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + newSlave(abductor);/* skip New Slave Intro */ + return `You complete the legalities and biometric scanning quickly and cautiously. The idiot will be in for a surprise when ${he} awakes to find ${he} can't move and a dick is in ${his} ass.`; + } + + function dairy() { + const el = new DocumentFragment(); + const r = []; + assignJob(abductor, "work in the dairy"); + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The idiot will wake up`); + if (V.dairyStimulatorsSetting > 1) { + r.push(`in agony as ${his} anus takes the rectal hydration dildo.`); + } else { + r.push(`to find ${his} chest has begun swelling with milk.`); + } + abductor.boobs += 300; + newSlave(abductor); /* skip New Slave Intro */ + App.Events.addNode(el, r); + return el; + } + + function farmyard() { + const el = new DocumentFragment(); + const r = []; + assignJob(abductor, "work as a farmhand"); + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + r.push(`You complete the legalities and biometric scanning quickly and cautiously. The idiot will wake up in ${V.farmyardName}, where ${he} will spend the rest of ${his} days working the fields`); + if (V.farmyardShows === 1) { + r.push(`and`); + if (V.seeBestiality === 1) { + r.push(`getting fucked by animals.`); + } else { + r.push(`putting on shows with animals.`); + } + } + newSlave(abductor);/* skip New Slave Intro */ + App.Events.addNode(el, r); + return el; + } + + function amputate() { + const el = new DocumentFragment(); + const r = []; + healthDamage(abductor, 20); + removeLimbs(abductor, "all"); + abductor.behavioralFlaw = "odd"; + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + r.push(`You want ${him} to suffer for what ${he} tried to pull on you. You make sure ${he} is fully awake as ${he} is strapped into the autosurgery. You take great pleasure in watching ${him} struggle as ${his} limbs are taken, one by one. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> After ${he} has stabilized, it's off to the penthouse for basic slave induction. You'd like to see ${him} try and carry you off again without arms and legs.`); + if (abductor.balls > 0) { + const geld = function() { + const el = new DocumentFragment(); + const r = []; + healthDamage(abductor, 20); + abductor.balls = 0; + abductor.devotion -= 25; + abductor.trust -= 25; + cashX(forceNeg(contractCost), "slaveTransfer", abductor); + r.push(`You want ${him} to suffer for what ${he} tried to pull on you. You make sure ${he} is fully awake as ${he} is strapped into the autosurgery, taking the time to roughly fondle ${his} balls. You take great pleasure in watching ${him} struggle as ${his} testicles are removed. Once ${he} can stand again, it's off to the penthouse for basic slave induction.`); + r.push(App.UI.newSlaveIntro(abductor)); + App.Events.addNode(el, r); + return el; + }; + App.Events.addResponses(el, [new App.Events.Result(`Enslave the criminal and geld ${him}`, geld)]); + } + App.Events.addNode(el, r); + return el; + } + + function flog() { + const el = new DocumentFragment(); + const r = []; + r.push(`Naturally, the wretch will be thrown out of the arcology, but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="green">approves of this harshness.</span>`); + repX(500, "event"); + App.Events.addNode(el, r); + return el; + } + } + } +}; diff --git a/src/events/nonRandom/pRaped.js b/src/events/nonRandom/pRaped.js index 463e989db5e7008b0e1fdb91bdb1d6094d2f7445..cf14d0b7c3e6034b34b68289a3c0644d80ebd708 100644 --- a/src/events/nonRandom/pRaped.js +++ b/src/events/nonRandom/pRaped.js @@ -318,7 +318,7 @@ App.Events.pRaped = class pRaped extends App.Events.BaseEvent { r.push(`not climaxing...`); } r.push(`Is this what it feels like to be bred by someone so dominant? You should take a pregnancy test right away and make sure he didn't knock you up.`); - r.push(knockMeUp(V.PC, 100, 0, -2, true)); + knockMeUp(V.PC, 100, 0, -2); } if (V.PC.vagina === 0) { V.PC.vagina++; @@ -589,7 +589,7 @@ App.Events.pRaped = class pRaped extends App.Events.BaseEvent { rapist.vagina = 2; seX(rapist, "vaginal", "public", "penetrative", 12); if (random(1, 100) > 60 && isFertile(rapist)) { - r.push(knockMeUp(rapist, 100, 0, -2, true)); + knockMeUp(rapist, 100, 0, -2); } } else { seX(rapist, "anal", "public", "penetrative", 12);/* even more anal */ diff --git a/src/events/nonRandom/rival/pHostageAcquisition.js b/src/events/nonRandom/rival/pHostageAcquisition.js index 0b64f56c067a26c10470fd9313190e54b80ef745..895c76bd3ed83fa2b8564d359269ca9339339493 100644 --- a/src/events/nonRandom/rival/pHostageAcquisition.js +++ b/src/events/nonRandom/rival/pHostageAcquisition.js @@ -12,7 +12,6 @@ App.Events.pHostageAcquisition = function() { he, his, him, girl, woman } = getPronouns(V.hostage); V.hostageRescued = 0; - // V.hostage.ID += 55555; V.hostage.weekAcquired = V.week; let _closer = 0; diff --git a/src/events/nonRandom/rival/pRivalryHostage.js b/src/events/nonRandom/rival/pRivalryHostage.js index c1f2f8157b328085aa4e858a696b1e21d00f3217..ea44ed3de3aff9aa690acb7d65bdd81a12cb9186 100644 --- a/src/events/nonRandom/rival/pRivalryHostage.js +++ b/src/events/nonRandom/rival/pRivalryHostage.js @@ -119,7 +119,7 @@ App.Events.pRivalryHostage = function() { } else if (V.PC.career === "street urchin") { r.push(`time on the streets.`); if (V.hostage.actualAge >= V.PC.actualAge + 6) { - r.push(`${He} was a charming homeless ${girl} that kept a watchful eye on you to make sure you stayed safe, as if ${he} were your big ${brother}. ${He} even helped you become a gang initiate.`); + r.push(`${He} was a charming homeless ${girl} that kept a watchful eye on you to make sure you stayed safe, as if ${he} were your big ${sister}. ${He} even helped you become a gang initiate.`); } else { r.push(`${He} was another destitute child that you spent most of your time with. You foraged for scraps together, kept each other warm at night, and even became initiates into the same gang.`); } @@ -204,7 +204,7 @@ App.Events.pRivalryHostage = function() { } else if (V.PC.career === "slave tender") { r.push(`time looking after slaves.`); if (V.hostage.actualAge >= V.PC.actualAge + 6) { - r.push(`${He} was a pretty, if slightly scary, older ${girl} that kept a watchful eye over the slaves and you, almost like a grumpy big ${brother}.`); + r.push(`${He} was a pretty, if slightly scary, older ${girl} that kept a watchful eye over the slaves and you, almost like a grumpy big ${sister}.`); } else { r.push(`${He} was a little ${girl} that helped clean and feed the slaves with you. You made a pretty good team; if a new capture thought it would be easy to overpower a child, they'd quickly learn to watch their back.`); } @@ -217,7 +217,7 @@ App.Events.pRivalryHostage = function() { r.push(`${He} was a pretty little groupie who flitted from entourage to entourage. You were never particularly close,`); } else if (V.PC.career === "child star") { if (V.hostage.actualAge >= V.PC.actualAge + 6) { - r.push(`${He} older ${girl} that not only acted as your ${brother} on the set, but also taught in the ins and outs of show business.`); + r.push(`${He} older ${girl} that not only acted as your ${sister} on the set, but also taught in the ins and outs of show business.`); } else { r.push(`${He} was a child star that was often booked alongside you. So much so, you started to be treated more like siblings than competitors.`); } diff --git a/src/events/nonRandomEvent.js b/src/events/nonRandomEvent.js index 7a668892caad5cf9b5c62494ec50cd22e463b257..ae60cccd6d6c9bc9ca08b5b9e038fe850e58c893 100644 --- a/src/events/nonRandomEvent.js +++ b/src/events/nonRandomEvent.js @@ -14,13 +14,11 @@ App.Events.getNonrandomEvents = function() { ], "P rival initiation"), new App.Events.TwineEvent().wrapPassage([ () => V.secExpEnabled > 0, - () => V.foughtThisWeek === 0, + () => V.SecExp.war.foughtThisWeek === 0, () => (V.slaveRebellion === 1 || V.citizenRebellion === 1) ], "rebellionOptions"), new App.Events.attackOptions(), - new App.Events.TwineEvent().wrapPassage([ - () => V.PC.labor === 1 - ], "SE Player Birth"), + new App.Events.SEPlayerBirth(), new App.Events.SEpcBirthday(), new App.Events.TwineEvent().wrapPassage([ () => V.independenceDay === 1, @@ -103,6 +101,7 @@ App.Events.getNonrandomEvents = function() { new App.Events.MurderAttempt(), new App.Events.MurderAttemptFollowup(), new App.Events.pRaped(), + new App.Events.pAbducted(), ]; }; @@ -150,13 +149,13 @@ App.Events.playNonrandomEvent = function() { const clearEvent = () => { V.event = null; }; if (V.event instanceof App.Events.BaseEvent) { - // we've deserialized a saved game with an event active, or a cheater has picked one, so just play it immediately + // we've deserialized a saved game with an event active, or a player has picked one, so just play it immediately V.event.execute(d); V.passageSwitchHandler = clearEvent; } else { - if (V.cheatMode) { + if (V.debugMode > 0 && V.debugModeEventSelection > 0) { V.nextButton = "Refresh"; - // show all the scheduled, nonrandom, and queued events, and allow the cheater to play them in any order and skip the remainder + // show all the scheduled, nonrandom, and queued events, and allow the player to play them in any order and skip the remainder App.UI.DOM.appendNewElement("h2", d, "Scheduled and Nonrandom Events"); App.UI.DOM.appendNewElement("div", d, "These scheduled and nonrandom events still need to play this week, in this order."); App.UI.DOM.appendNewElement("div", d, "WARNING: playing certain scheduled events out of order, or skipping them, can break your game! Be careful!", ["note", "warning"]); diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js index b844fe234b1bc6d868d17e4c87e688c22c81d6b1..dff1e4548b2d18e00137561a0a10d75537d31d98 100644 --- a/src/events/randomEvent.js +++ b/src/events/randomEvent.js @@ -10,22 +10,30 @@ App.Events.getIndividualEvents = function() { return [ // instantiate all possible random individual events here // example: new App.Events.TestEvent(), - new App.Events.RESSDevotedFearfulSlave(), + new App.Events.RESSAgeDifferenceOldPC(), + new App.Events.RESSArcadeSadist(), new App.Events.RESSAssFitting(), + new App.Events.RESSBedSnuggle(), + new App.Events.RESSBondageGear(), new App.Events.RESSCockFeederResistance(), new App.Events.RESSComfortableSeat(), new App.Events.RESSDevotedAnalVirgin(), new App.Events.RESSDevotedEducated(), + new App.Events.RESSDevotedFearfulSlave(), new App.Events.RESSDevotedShortstack(), new App.Events.RESSDevotedVirgin(), new App.Events.RESSDevotedWaist(), new App.Events.RESSEscapee(), + new App.Events.RESSForbiddenMasturbation(), new App.Events.RESSFrighteningDick(), new App.Events.RESSHotPC(), + new App.Events.RESSImpregnationPlease(), new App.Events.RESSImScared(), new App.Events.RESSKitchenMolestation(), new App.Events.RESSLazyEvening(), new App.Events.RESSMeanGirls(), + new App.Events.RESSMindbrokenMorning(), + new App.Events.RESSModestClothes(), new App.Events.RESSMoistPussy(), new App.Events.RESSMuscles(), new App.Events.RESSObedientAddict(), @@ -34,6 +42,8 @@ App.Events.getIndividualEvents = function() { new App.Events.RESSObedientIdiot(), new App.Events.RESSObedientShemale(), new App.Events.RESSPassingDeclaration(), + new App.Events.RESSRestrictedSmart(), + new App.Events.RESSPenitent(), new App.Events.RESSRetchingCum(), new App.Events.RESSServeThePublicDevoted(), new App.Events.RESSSlaveOnSlaveClit(), @@ -41,6 +51,7 @@ App.Events.getIndividualEvents = function() { new App.Events.RESSSuppositoryResistance(), new App.Events.RESSTooThinForCumDiet(), new App.Events.RESSWaistlineWoes(), + new App.Events.RESSWhoreRebellious(), new App.Events.RECIButthole(), new App.Events.RECIFeminization(), @@ -111,6 +122,9 @@ App.Events.getNonindividualEvents = function() { new App.Events.RENickname().setType("RNIE"), new App.Events.RERecruit(), + new App.Events.REBusyMasterSuite(), + new App.Events.REMalefactor(), + ]; }; diff --git a/src/events/reRecruit.js b/src/events/reRecruit.js index 7fa8670531e6eb57689a5cc454e85becdaa6d9ae..85b20f5e756dc3faaf49a08ad2135d1dd7b8ad92 100644 --- a/src/events/reRecruit.js +++ b/src/events/reRecruit.js @@ -82,21 +82,21 @@ App.Events.RERecruit = class RERecruit extends App.Events.BaseEvent { get weight() { let weight = 1; // one generic recruit event guaranteed to always be possible - if ((random(1, 100) < V.rep/200) || V.cheatMode) { + if ((random(1, 100) < V.rep/200) || (V.debugMode && V.debugModeEventSelection)) { weight++; } if (V.policies.proRecruitment === 1) { - if ((random(1, 100) < V.rep/200) || V.cheatMode) { + if ((random(1, 100) < V.rep/200) || (V.debugMode && V.debugModeEventSelection)) { weight++; } } if (V.policies.enslavementRep !== -1) { - if ((random(1, 100) < V.rep/300) || V.cheatMode) { + if ((random(1, 100) < V.rep/300) || (V.debugMode && V.debugModeEventSelection)) { weight++; } } if (V.policies.enslavementCash !== -1) { - if ((random(1, 100) < V.rep/300) || V.cheatMode) { + if ((random(1, 100) < V.rep/300) || (V.debugMode && V.debugModeEventSelection)) { weight++; } } @@ -110,7 +110,7 @@ App.Events.RERecruit = class RERecruit extends App.Events.BaseEvent { execute(node) { V.encyclopedia = "Enslaving People"; V.nextLink = "RIE Eligibility Check"; - if (V.cheatMode) { + if (V.debugMode && V.debugModeEventSelection) { const el = App.UI.DOM.appendNewElement("span", node); App.UI.DOM.appendNewElement("span", el, `One of the following recruitment events would have appeared: `); const select = App.UI.DOM.appendNewElement("select", el); diff --git a/src/events/reRecruit/cleaningHouse.js b/src/events/reRecruit/cleaningHouse.js index 3f118cb986e6466fc8e804a4ecfa2f7c2110c22a..74b9e574efd204e1b5c646e5e151c515d6f0d2b0 100644 --- a/src/events/reRecruit/cleaningHouse.js +++ b/src/events/reRecruit/cleaningHouse.js @@ -8,7 +8,7 @@ App.Events.recCleaningHouse = class recCleaningHouse extends App.Events.BaseEven () => V.seeDicks !== 100, () => V.seePreg !== 0, () => V.rep > 16000, - () => (random(1, 100) < V.rep/1000) || V.cheatMode === 1, + () => (random(1, 100) < V.rep/1000) || (V.debugMode > 0 && V.debugModeEventSelection > 0), () => V.cash >= 50000 ]; } diff --git a/src/events/reRecruit/embryoAppropriation.js b/src/events/reRecruit/embryoAppropriation.js index bd84aa19653a09cd0243af36cc7d1bb829fcbef3..8c3fcecd1e6a8a72ecfeff1afac2e9d8e7f1318a 100644 --- a/src/events/reRecruit/embryoAppropriation.js +++ b/src/events/reRecruit/embryoAppropriation.js @@ -7,7 +7,7 @@ App.Events.recEmbryoAppropriation = class recEmbryoAppropriation extends App.Eve return [ () => V.seeDicks !== 100, () => V.seePreg !== 0, - () => (V.PC.skill.medicine > 50 && V.PC.skill.hacking > 75 && (random(0, 100) > 75 || V.cheatMode === 1)), + () => (V.PC.skill.medicine > 50 && V.PC.skill.hacking > 75 && (random(0, 100) > 75 || (V.debugMode > 0 && V.debugModeEventSelection > 0))), ]; } diff --git a/src/events/reRecruit/forbiddenLove.js b/src/events/reRecruit/forbiddenLove.js index eb40a4e5ac0af8736312f10c52a90477526ac0be..eaf87801e40be1492ba8b22d1dde979cd0b29adc 100644 --- a/src/events/reRecruit/forbiddenLove.js +++ b/src/events/reRecruit/forbiddenLove.js @@ -7,7 +7,7 @@ App.Events.recForbiddenLove = class recForbiddenLove extends App.Events.BaseEven return [ () => V.seeDicks !== 0, () => V.rep > 16000, - () => (random(1, 100) < V.rep/1000) || V.cheatMode === 1, + () => (random(1, 100) < V.rep/1000) || (V.debugMode > 0 && V.debugModeEventSelection > 0), () => V.cash >= 100000 ]; } diff --git a/src/events/reRecruit/handsomePC.js b/src/events/reRecruit/handsomePC.js index f95046967625778ea520b6ab63cb92b935f0ba3f..5262e01542ef9aad784ab5d2548fca3c79a70bd6 100644 --- a/src/events/reRecruit/handsomePC.js +++ b/src/events/reRecruit/handsomePC.js @@ -9,7 +9,7 @@ App.Events.recHandsomePC = class recHandsomePC extends App.Events.BaseEvent { () => V.PC.vagina === -1, () => V.PC.boobs < 300, () => V.PC.title === 1, - () => (V.rep/250) > (random(1, 100) || V.cheatMode === 1), + () => (V.rep/250) > (random(1, 100) || (V.debugMode > 0 && V.debugModeEventSelection > 0)), ]; } diff --git a/src/events/reRecruit/heldPOW.js b/src/events/reRecruit/heldPOW.js index a4231e122e28de46bde1158f1b86f68b0980ab1a..abb79b2fb4a51f98055537ba68e4da4ebf9d91a1 100644 --- a/src/events/reRecruit/heldPOW.js +++ b/src/events/reRecruit/heldPOW.js @@ -6,7 +6,7 @@ App.Events.recHeldPOW = class recHeldPOW extends App.Events.BaseEvent { eventPrerequisites() { return [ () => V.seeDicks !== 100, - () => (V.PC.skill.hacking >= 50 && (random(0, 100) < V.PC.skill.hacking) || V.cheatMode === 1), + () => (V.PC.skill.hacking >= 50 && (random(0, 100) < V.PC.skill.hacking) || (V.debugMode > 0 && V.debugModeEventSelection > 0)), ]; } diff --git a/src/events/reRecruit/homelessBreakIn.js b/src/events/reRecruit/homelessBreakIn.js index 69ef3aedc90a0a1e5bcde5b99e52fcf1001887a8..04592d9729682c9c62222c6091d34269635cdc2a 100644 --- a/src/events/reRecruit/homelessBreakIn.js +++ b/src/events/reRecruit/homelessBreakIn.js @@ -6,7 +6,7 @@ App.Events.recHomelessBreakIn = class recHomelessBreakIn extends App.Events.Base eventPrerequisites() { return [ () => V.week > 46, - () => ((V.rep/100) > random(1, 100)) || V.cheatMode === 1 + () => ((V.rep/100) > random(1, 100)) || (V.debugMode > 0 && V.debugModeEventSelection > 0) ]; } @@ -25,10 +25,10 @@ App.Events.recHomelessBreakIn = class recHomelessBreakIn extends App.Events.Base r.push(`As you work at your desk over some of the economic reports regarding the state of housing in your arcology, you happen to spot an unusual notification during the early morning hours. As it turns out, the cooks at one of the more trendy restaurants woke up to find the backdoor left wide open. It wouldn't have been interesting to anyone save for the fact that a large amount of their stock had been thoroughly ravaged by a few opportunist homeless residents.`); App.Events.addParagraph(node, r); r = []; - r.push(`Most of the individuals who broke in had the intelligence to not only evade suspicion on their way in, but scamper away before dawn, with the sole exception of a single one of them, discovered amongst a pile of half-eaten luxury dishes with a huge belly contrasting their thin frame.`); + r.push(`Most of the individuals who broke in had the intelligence to not only evade suspicion on their way in, but scamper away before dawn, with the sole exception of a single one of them, discovered amongst a pile of half-eaten luxury dishes with a huge belly contrasting ${his} thin frame.`); App.Events.addParagraph(node, r); r = []; - r.push(`Given the damage their fine dining experience has cost the eatery, and the complete lack of any significant funds to their name, this individual ended up, unsurprisingly, enslaved by the property's owner. Judging by the few low resolution images you glanced over along the horrible security footage, your keen eyes recognize the looks hidden beneath the grime of ${his} lifestyle. The price is rather cheap, as the restaurant staff seem more intent on punishing them rather than reimbursing their losses, while the owner wants nothing more than to be rid of the gluttonous thief, so surely they would be more than happy to have ${him} taken off of their hands.`); + r.push(`Given the damage ${his} fine dining experience has cost the eatery, and the complete lack of any significant funds to ${his} name, this individual ended up, unsurprisingly, enslaved by the property's owner. Judging by the few low resolution images you glanced over along the horrible security footage, your keen eyes recognize the looks hidden beneath the grime of ${his} lifestyle. The price is rather cheap, as the restaurant staff seem more intent on punishing them rather than reimbursing their losses, while the owner wants nothing more than to be rid of the gluttonous thief, so surely they would be more than happy to have ${him} taken off of their hands.`); App.Events.addParagraph(node, r); r = []; r.push(App.UI.DOM.makeElement("span", `${His} price is a measly ${cashFormat(1000)} credits. Alternatively, you could buy ${him} and sell ${him} for a bit of profit.`, "note")); @@ -54,7 +54,7 @@ App.Events.recHomelessBreakIn = class recHomelessBreakIn extends App.Events.Base const el = new DocumentFragment(); let r = []; cashX(forceNeg(contractCost), "slaveTransfer", slave); - r.push(`You eclipse the few low offers bidding for ${him} with something far above the usual rate of menial slaves. Not that unusual in the Free Cities, thanks to the many strange interests of its denizens. A few hours pass until you have ${him} brought up to your penthouse to finish the process, letting ${him} enter with a slow waddle as their belly remains firmly rounded by their escapade. A look of resigned apprehension rests over ${his} face as ${he} slowly follows the scanners instructions, perhaps thanks to the slight comfort of having experienced quite the night before. ${He}'ll be experiencing quite the discomfort over the following days, however, when ${he}'ll realize that ${he}'ll be staying stuffed full of food until you say otherwise.`); + r.push(`You eclipse the few low offers bidding for ${him} with something far above the usual rate of menial slaves. Not that unusual in the Free Cities, thanks to the many strange interests of its denizens. A few hours pass until you have ${him} brought up to your penthouse to finish the process, letting ${him} enter with a slow waddle as ${his} belly remains firmly rounded by ${his} escapade. A look of resigned apprehension rests over ${his} face as ${he} slowly follows the scanners instructions, perhaps thanks to the slight comfort of having experienced quite the night before. ${He}'ll be experiencing quite the discomfort over the following days, however, when ${he}'ll realize that ${he}'ll be staying stuffed full of food until you say otherwise.`); r.push(App.UI.newSlaveIntro(slave)); App.Events.addNode(el, r); return el; diff --git a/src/events/reRecruit/immigrant.js b/src/events/reRecruit/immigrant.js index 11c2fb5d24a50a434389f6507e817305bd390a73..1177933fe66a7fe90db7cbfdb2230df9227c7f4e 100644 --- a/src/events/reRecruit/immigrant.js +++ b/src/events/reRecruit/immigrant.js @@ -5,7 +5,7 @@ App.Events.recImmigrant = class recImmigrant extends App.Events.BaseEvent { eventPrerequisites() { return [ - () => ((V.rep/250) > (random(1, 100) || V.cheatMode === 1)) + () => ((V.rep/250) > (random(1, 100) || (V.debugMode > 0 && V.debugModeEventSelection > 0))) ]; } diff --git a/src/events/reRecruit/maleSD.js b/src/events/reRecruit/maleSD.js index a21e9f9f581fdb5f9dae2ff8401ec854f08a75d6..2160a4fb353e9d12c9ed1cc7b06618d2230211e2 100644 --- a/src/events/reRecruit/maleSD.js +++ b/src/events/reRecruit/maleSD.js @@ -5,7 +5,7 @@ App.Events.recMaleSD = class recMaleSD extends App.Events.BaseEvent { eventPrerequisites() { return [ - () => V.seeDicks !== 100, + () => V.seeDicks !== 0, ]; } diff --git a/src/events/reRecruit/overwhelmedFarmgirl.js b/src/events/reRecruit/overwhelmedFarmgirl.js index 1f99b38648b9892efbd0a908d16e2743c3b96f05..7c1705b5e02eea4de8232a7b9f237c1c42a74e1f 100644 --- a/src/events/reRecruit/overwhelmedFarmgirl.js +++ b/src/events/reRecruit/overwhelmedFarmgirl.js @@ -8,7 +8,7 @@ App.Events.recOverwhelmedFarmgirl = class recOverwhelmedFarmgirl extends App.Eve () => V.seeDicks !== 100, () => V.seePreg !== 0, () => V.seeHyperPreg === 1, - () => V.cheatMode === 1, + () => (V.debugMode > 0 && V.debugModeEventSelection > 0), ]; } diff --git a/src/events/reRecruit/princelyBetrayal.js b/src/events/reRecruit/princelyBetrayal.js index 138929b260816a4b885f9c0e93593b226d77216b..d5377e9904cae7eaf85f1bc4f4f763d43fc60428 100644 --- a/src/events/reRecruit/princelyBetrayal.js +++ b/src/events/reRecruit/princelyBetrayal.js @@ -7,7 +7,7 @@ App.Events.recPrincelyBetrayal = class recPrincelyBetrayal extends App.Events.Ba return [ () => V.seeDicks !== 0, () => V.rep > 16000, - () => ((random(1, 100) < V.rep/1000) || V.cheatMode === 1), + () => ((random(1, 100) < V.rep/1000) || (V.debugMode > 0 && V.debugModeEventSelection > 0)), () => V.cash >= 100000 ]; } diff --git a/src/events/reRecruit/repoNanny.js b/src/events/reRecruit/repoNanny.js index ec61d6e2db955f6edc9ad143ef6f0d3e3a14c352..3a987d7220f6eccb5a86b0af7634b9c20add35df 100644 --- a/src/events/reRecruit/repoNanny.js +++ b/src/events/reRecruit/repoNanny.js @@ -47,6 +47,7 @@ App.Events.recRepoNanny = class recRepoNanny extends App.Events.BaseEvent { r.push(`With a few keystrokes, you wire the payment to the repo company, then wait for ${his} delivery. After being brought into your penthouse by security, the legalities and biometric scanning with ${him} are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, ${slave.slaveName} lowers ${his} head obediently and asks,`); r.push(Spoken(slave, `"${Master}, I — umm... what will be required of me? I'm really good with children and... and I can sing. Also, I've —"`)); r.push(`The fearful tremble in ${his} voice tells you that ${he}'s more than a little afraid of what you might have planned for ${him}. Waving off the slave's frightened babbling, you tell ${him} that you'll decide what to do with ${him} when you feel like it.`); + r.push(App.UI.newSlaveIntro(slave)); App.Events.addNode(el, r); return el; } diff --git a/src/events/reRecruit/rogueCyborg.js b/src/events/reRecruit/rogueCyborg.js index 6c6eb054d48bc17f0d61b4deb7cd754bdf5159bd..386e0ff53794895a012e8f8e959fffbdb7efb115 100644 --- a/src/events/reRecruit/rogueCyborg.js +++ b/src/events/reRecruit/rogueCyborg.js @@ -7,7 +7,7 @@ App.Events.recRogueCyborg = class recRogueCyborg extends App.Events.BaseEvent { return [ () => V.seeDicks !== 100, () => V.PC.skill.hacking >= 100, - () => (random(0, 100) > 95 || V.cheatMode === 1), + () => (random(0, 100) > 95 || (V.debugMode > 0 && V.debugModeEventSelection > 0)), () => V.cash >= 100000 ]; } diff --git a/src/events/reRecruit/shemalePC.js b/src/events/reRecruit/shemalePC.js index e97f242293798b7846ca64a70f3a8c081b6b9bf7..5bb69ea45a0c51ffe0eb9f55d7fdff15e984a260 100644 --- a/src/events/reRecruit/shemalePC.js +++ b/src/events/reRecruit/shemalePC.js @@ -7,7 +7,7 @@ App.Events.recShemalePC = class recShemalePC extends App.Events.BaseEvent { return [ () => V.PC.dick !== 0, () => V.PC.boobs >= 300, - () => (V.rep/250) > (random(1, 100) || V.cheatMode === 1), + () => (V.rep/250) > (random(1, 100) || (V.debugMode > 0 && V.debugModeEventSelection > 0)), ]; } diff --git a/src/events/reRecruit/starvingMigrant.js b/src/events/reRecruit/starvingMigrant.js index 0f27f265d7fcb572b7797f696b857a234ee08f17..a2f5360e3de23f7e341260cf367e92b468361c17 100644 --- a/src/events/reRecruit/starvingMigrant.js +++ b/src/events/reRecruit/starvingMigrant.js @@ -6,7 +6,7 @@ App.Events.recStarvingMigrant = class recStarvingMigrant extends App.Events.Base eventPrerequisites() { return [ () => V.week > 46, - () => ((V.rep/100) > (random(1, 100)) || V.cheatMode === 1) + () => ((V.rep/100) > (random(1, 100)) || (V.debugMode > 0 && V.debugModeEventSelection > 0)) ]; } diff --git a/src/events/reRecruit/wanderingHomeless.js b/src/events/reRecruit/wanderingHomeless.js index 08a67b93fe7d93b982cfd8d78ec6d4cbaed078ae..6111929fd58f8596a06d5281c54e33a5caeb44fe 100644 --- a/src/events/reRecruit/wanderingHomeless.js +++ b/src/events/reRecruit/wanderingHomeless.js @@ -7,7 +7,7 @@ App.Events.recWanderingHomeless = class recWanderingHomeless extends App.Events. return [ () => V.seeDicks !== 100, () => V.seePreg !== 0, - () => (random(1, 1000) < 5) || V.cheatMode === 1, + () => (random(1, 1000) < 5) || (V.debugMode > 0 && V.debugModeEventSelection > 0), ]; } diff --git a/src/events/reRecruit/womanlyPC.js b/src/events/reRecruit/womanlyPC.js index 13fcf8e2e19ff0d51cb58cd957818279c4220c59..697f34190040da0c34705949965c9460fd33ceb5 100644 --- a/src/events/reRecruit/womanlyPC.js +++ b/src/events/reRecruit/womanlyPC.js @@ -8,7 +8,7 @@ App.Events.recWomanlyPC = class recWomanlyPC extends App.Events.BaseEvent { () => V.PC.dick === 0, () => V.PC.boobs >= 300, () => V.PC.title === 0, - () => (V.rep/250) > (random(1, 100) || V.cheatMode === 1), + () => (V.rep/250) > (random(1, 100) || (V.debugMode > 0 && V.debugModeEventSelection > 0)), ]; } diff --git a/src/events/scheduled/pitFight.js b/src/events/scheduled/pitFight.js index 4f5b02f0efa77fbc04a0c77604c9d28eb525c14e..a79f2897d0f20c26e85640a5b1a05786087a2670 100644 --- a/src/events/scheduled/pitFight.js +++ b/src/events/scheduled/pitFight.js @@ -7,52 +7,48 @@ App.Events.SEPitFight = class SEPitFight extends App.Events.BaseEvent { return [ () => !!V.pit, () => !V.pit.fought, - () => !!V.pit.slaveFightingBodyguard - || (V.pit.fighterIDs.length > 0 && (!!V.pit.animal || V.pit.bodyguardFights)) - || (V.pit.fighterIDs.length > 1) /* TODO: this condition should probably be reimplemented as casting for this event, rather than prereq... */ ]; } - execute(node) { - /** @type {number[]} */ + castActors() { const available = [...new Set(V.pit.fighterIDs)]; - /** @type {number[]} */ - const fighters = []; - - V.nextButton = "Continue"; - V.nextLink = "Scheduled Event"; - V.returnTo = "Scheduled Event"; - - V.pit.fought = true; if (V.pit.slaveFightingBodyguard) { // slave is fighting bodyguard for their life - fighters.push(S.Bodyguard.ID, V.pit.slaveFightingBodyguard); + this.actors.push(S.Bodyguard.ID, V.pit.slaveFightingBodyguard); } else { if (available.length > 0) { // first fighter if (S.Bodyguard && V.pit.bodyguardFights) { available.delete(S.Bodyguard.ID); - fighters.push(S.Bodyguard.ID); + this.actors.push(S.Bodyguard.ID); } else { - fighters.push(available.pluck()); + this.actors.push(available.pluck()); } // second fighter - if (available.length > 0 && !V.pit.animal) { - fighters.push(available.pluck()); + if (!V.pit.animal) { + if (available.length > 0) { + this.actors.push(available.pluck()); + } else { + return false; // couldn't cast second fighter + } } - } else { - throw new Error(`Pit fight triggered with ${V.pit.fighterIDs.length} fighters.`); // should technically never be triggered } } + return this.actors.length > 0; + } + + execute(node) { + V.nextButton = "Continue"; + V.nextLink = "Scheduled Event"; + V.returnTo = "Scheduled Event"; + + V.pit.fought = true; + node.appendChild(V.pit.lethal ? - App.Facilities.Pit.lethalFight(fighters) : - App.Facilities.Pit.nonlethalFight(fighters) + App.Facilities.Pit.lethalFight(this.actors) : + App.Facilities.Pit.nonlethalFight(this.actors) ); - - if (V.debugMode) { - console.log(`Available:\n${available}\nFighters:\n${fighters}`); - } } }; diff --git a/src/events/scheduled/sePlayerBirth.js b/src/events/scheduled/sePlayerBirth.js new file mode 100644 index 0000000000000000000000000000000000000000..e187274d3355e59ca145240330e2a4b0136e85dd --- /dev/null +++ b/src/events/scheduled/sePlayerBirth.js @@ -0,0 +1,1190 @@ +App.Events.SEPlayerBirth = class SEPlayerBirth extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.PC.labor === 1 + ]; + } + + execute(node) { + V.nextButton = "Continue"; + V.nextLink = "Scheduled Event"; + /** @type {boolean} */ + let playerDead; + let _PCDegree = 0; + let _pregTypeDecrecement = WombReserveCount(V.PC, "incubator"); + let _pregTypeDecrecementNursery = WombReserveCount(V.PC, "incubator"); + let _concubinePresent; + let _seed; + + let _identicalChildGen; //TODO: remove me + + /* expand me with new variables to behave like slave birth */ + let _badBirth; + if (V.PC.counter.birthsTotal === 0) { + _badBirth = 30 + (V.PC.pregType * 4); + } else { + _badBirth = 10; + } + let _wounded = 0; + const birthed = WombBirth(V.PC, 35); + /** @type {number} count of live babies after birth */ + let _curBabies = birthed.length; + /** @type {number} currently not used - it's just for future improvements. */ + let _stillBirth = V.PC.womb.length; + + + let _gender; + if (_curBabies === 1) { + if (birthed[0].genetics.gender === "XX") { + _gender = "XX"; + } else { + _gender = "XY"; + } + } + + /* Difference in code below: + * _curBabies - count of live babies after birth + * V.PC.pregType = all babies in PC. + * I assume that dead fetuses do not count to reputation, etc., and PC manages to hide them. This mainly for future possibilities, or early birth triggers. + * PC will not support partial birth - even if she happens to be pregnant at different stages at once, undeveloped babies will be dead as result. + * _stillBirth currently not used - it's just for future improvements. */ + V.PC.preg = 0; + V.PC.pregKnown = 0; + V.PC.labor = 0; + V.PC.counter.birthsTotal += _curBabies; + + /* setting the tallies for each type of child born */ + let _others = 0; + let _self = 0; + let _citizens = 0; + let _oldMaster = 0; + let _arcOwner = 0; + let _clients = 0; + let _elite = 0; + let _lab = 0; + let _futaS = 0; + let _slavesLength = 0; + let _babies = []; + for (const baby of birthed) { + if (baby.fatherID === 0) { + _others++; + _babies.push("some guy"); + } else if (baby.fatherID === -1) { + _self++; + _babies.push("your own"); + } else if (baby.fatherID === -2) { + _citizens++; + _babies.push("an arcology citizen"); + } else if (baby.fatherID === -3) { + _oldMaster++; + _babies.push("your Master"); + } else if (baby.fatherID === -4) { + _arcOwner++; + _babies.push("another arcology owner"); + } else if (baby.fatherID === -5) { + _clients++; + _babies.push("your client"); + } else if (baby.fatherID === -6) { + _elite++; + _babies.push("the Societal Elite"); + } else if (baby.fatherID === -7) { + _lab++; + _babies.push("designer"); + } else if (baby.fatherID === -9) { + _futaS++; + _babies.push("a Futanari Sister"); + } else { + const _babyDaddy = getSlave(baby.fatherID); + if (_babyDaddy) { + _slavesLength++; + _babies.push(String(_babyDaddy.slaveName)); + } else { + _others++; + _babies.push("some guy"); + } + } + } + const _babiesReduced = removeDuplicates(_babies); + + let r = []; + + if ((_elite > 0 || _self > 0) && V.arcologies[0].FSRestart !== "unset") { /* for simplicity's sake, not going to allow other embryos to be added during an elite pregnancy */ + r.push(`Since you are heavily pregnant with`); + if (_elite + _self >= 2) { + r.push(`children`); + } else { + r.push(`a child`); + } + r.push(`of the Societal Elite, you are quickly taken to the finest clinic the arcology has to offer. After a quick sedation, you awake to find your belly no longer round with child; that, and a note stating your next breeding partner and a notice that ${cashFormat(50000)} has been added to your account. The Societal Elite are <span class="green">very pleased</span> at their new addition to the ranks. You just wish you could have seen your`); + if (_curBabies === 1) { + r.push(`little`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`before they took`); + if (_gender === "XX") { + r.push(`her`); + } else { + r.push(`him`); + } + } else { + r.push(`babies before they took them`); + } + r.push(`away to be raised into`); + if (_curBabies > 1) { + r.push(`proper members`); + } else { + r.push(`a proper member`); + } + r.push(`of the future world.`); + V.PC.counter.birthElite += _elite; + if (V.PC.ovaryAge >= 47 && V.playerAging === 2) { + r.push(`You are getting too old to have children; you feel like`); + if (_curBabies > 1) { + r.push(`they`); + } else { + r.push(`this`); + } + r.push(`may be your last.`); + V.PC.preg = -2; + } + } else { + r.push(`While sitting at your desk planning your day, <span class="lime">your water breaks,</span> thoroughly soaking your crotch and the slave servicing it. You`); + if (V.PC.belly >= 60000) { + r.push(`struggle to`); + } + r.push(`pull your laboring body to its feet, notify ${V.assistant.name} that it's time, and begin heading towards`); + if (V.masterSuite !== 0 && V.masterSuiteUpgradePregnancy === 1) { + r.push(`${V.masterSuiteName}, since you had it redesigned to accommodate pregnant slaves. You should be able to give birth in both luxury and privacy there.`); + } else if (V.clinic !== 0) { + r.push(`${V.clinicName}; everything you'll need to give birth can be found there. Although you don't know how much privacy you'll be able to get there.`); + } else if (V.masterSuite !== 0) { + r.push(`${V.masterSuiteName}, since you'd like to be as comfortable as possible for the upcoming birth. You should be able to give birth in relative privacy there.`); + } else { + r.push(`your bed, since you'd like to be as comfortable as possible for the upcoming birth. You should be able to give birth in complete privacy there.`); + } + App.Events.addParagraph(node, r); + r = []; + const { + His2, He2, + his2, he2, him2 + } = getPronouns(S.Concubine ? S.Concubine : {pronoun: App.Data.Pronouns.Kind.plural}).appendSuffix("2"); + if (V.PC.belly < 100000) { + if (S.Concubine) { + _concubinePresent = 1; + } + r.push(`After what feels like a`); + if (V.showInches === 2) { + r.push(`mile`); + } else { + r.push(`kilometer`); + } + r.push(`run, you finally waddle into your destination finding`); + if (S.Nurse) { + const {he} = getPronouns(S.Nurse); + r.push(`<span class="pink">${S.Nurse.slaveName}</span> waiting for you with everything ${he} needs to be a capable midwife to you.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span>`); + if (hasAnyArms(S.Concubine)) { + r.push(`wraps ${his2} ${hasBothArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`leans into`); + } + r.push(`you from behind, letting you know ${he2}'ll be here to comfort you while you labor.`); + } + } else if (V.BodyguardID !== 0) { + const {he, his} = getPronouns(S.Bodyguard); + r.push(`<span class="pink">${S.Bodyguard.slaveName}</span> waiting for you. Ever since ${he} realized ${he} was protecting for`); + if (V.PC.pregType > 1) { + r.push(`many,`); + } else { + r.push(`two,`); + } + r.push(`${he} made sure to hone ${his} skills as a midwife to make sure ${he} could protect you and your unborn child`); + if (V.PC.pregType > 1) { + r.push(`ren`); + } + r.push(`from any dangers.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span>`); + if (hasAnyArms(S.Concubine)) { + r.push(`wraps ${his2} ${hasBothArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`leans into`); + } + r.push(`you from behind, letting you know ${he2}'ll be here to comfort you while you labor.`); + } + } else if (V.HeadGirlID !== 0) { + const {He, he} = getPronouns(S.HeadGirl); + r.push(`<span class="pink">${S.HeadGirl.slaveName}</span> is waiting for you. ${He} promises to do everything ${he} can to help you.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span>`); + if (hasAnyArms(S.Concubine)) { + r.push(`wraps ${his2} ${hasBothArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`leans into`); + } + r.push(`you from behind, letting you know ${he2}'ll be here to comfort you while you labor.`); + } + } else if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span> is waiting for you. ${He2} believes, if anything, that ${he2} could at least comfort you while you give birth.`); + } else { + r.push(`it quite empty. At least ${V.assistant.name} knows where you are should anything go wrong.`); + } + } else { + if (S.Concubine) { + if (!canWalk(S.Concubine)) { + _concubinePresent = 2; + } else { + _concubinePresent = 1; + } + } + r.push(`You barely make it half-way down the hall before you feel the first of your many children drop into position at the entrance to your birth canal. You try to keep going, but as it forces its way through your pelvis, spreading it wider, you're forced to the ground. Fortunately the penthouse is littered with supply rooms and closets, so you drag your laboring body into the nearest one instead. Fortunately, ${V.assistant.name} discretely directs`); + if (S.Nurse) { + const {he, him} = getPronouns(S.Nurse); + r.push(`<span class="pink">${S.Nurse.slaveName}</span> to you with everything ${he}'ll need to deliver your ${(V.PC.pregType > 1) ? "children" : "child"}.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span> bursts in after ${him} and circles around behind you before`); + if (hasAnyArms(S.Concubine)) { + r.push(`wrapping ${his2} ${hasAnyArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`nuzzling against`); + } + r.push(`your contraction wracked middle. ${He2}'ll be here to comfort you while you labor.`); + } + } else if (V.BodyguardID !== 0) { + const {He, he, his, him} = getPronouns(S.Bodyguard); + r.push(`<span class="pink">${S.Bodyguard.slaveName}</span> to your location. Ever since ${he} realized ${he} was protecting for not only you, but the lives you bear too, ${he} made sure to hone ${his} skills as a midwife to make sure ${he} could protect you and your unborn ${(V.PC.pregType > 1) ? "children" : "child"} from any dangers. ${He} apologizes profusely for not being there when you needed ${him} most; ${he} wanted to make sure everything was ready for your arrival.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span> bursts in after ${him} and circles around behind you before`); + if (hasAnyArms(S.Concubine)) { + r.push(`wrapping ${his2} ${hasAnyArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`nuzzling against`); + } + r.push(`your contraction wracked middle. ${He2}'ll be here to comfort you while you labor.`); + } + } else if (V.HeadGirlID !== 0) { + const {He, he, him} = getPronouns(S.HeadGirl); + r.push(`<span class="pink">${S.HeadGirl.slaveName}</span> to your location. ${He} promises to do everything ${he} can to help you.`); + if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span> bursts in after ${him} and circles around behind you before`); + if (hasAnyArms(S.Concubine)) { + r.push(`wrapping ${his2} ${hasAnyArms(S.Concubine) ? "arms" : "arm"} around`); + } else { + r.push(`nuzzling against`); + } + r.push(`your contraction wracked middle. ${He2}'ll be here to comfort you while you labor.`); + } + } else if (_concubinePresent === 1) { + r.push(`<span class="pink">${S.Concubine.slaveName}</span> to your location. ${He2} believes, if anything, that ${he2} could at least comfort you while you give birth.`); + } else { + r.push(`a camera on the room you crawled into. At least ${V.assistant.name} knows where you are should anything go wrong.`); + } + } + App.Events.addParagraph(node, r); + r = []; + r.push(`You arrange yourself to give birth, relaxing until your body urges you to begin bearing down and pushing your child into the world.`); + if (_concubinePresent === 1) { + r.push(`${S.Concubine.slaveName} settles in beside you, one hand soothing your contraction wracked middle and the other`); + if (V.PC.dick !== 0) { + r.push(`stroking your hardening dick.`); + } else { + r.push(`teasing your stiffening clit.`); + } + } + if (_badBirth > random(1, 100)) { /* shits going wrong */ + if (S.Nurse) { + const {he, his} = getPronouns(S.Nurse); + r.push(`You keep pushing and pushing, but your child is not coming out.`); + if (_concubinePresent === 1) { + r.push(`${S.Concubine.slaveName} shifts to massaging your gravid middle${canTalk(S.Concubine) ? ", while whispering words of encouragement into your ear" : ""} until ${S.Nurse.slaveName} shoos ${him2} away so ${he} can take over and get this baby out of you.`); + } + r.push(`${S.Nurse.slaveName} was prepared for this possibility, adjusts your position and timings, and before long is holding your <span class="lime">new baby`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`</span> in ${his} arms.`); + if (V.PC.pregType >= 8) { + r.push(`But you're far from done; your taut dome of a belly still houses another ${num(V.PC.pregType - 1)} infants. You moan as the next child begins its descent; you'll be at this for awhile. If ${S.Nurse.slaveName} weren't here, you and your children would likely have perished.`); + } else if (V.PC.pregType >= 4) { + r.push(`But you aren't close to done; your taut dome of a belly still houses another ${num(V.PC.pregType - 1)} infants. You moan as the next child begins its descent; you'll be at this for awhile. If ${S.Nurse.slaveName} weren't here, you and your children would likely have perished.`); + } else if (V.PC.pregType === 3) { + r.push(`But you aren't done; your swollen belly still houses another pair of infants. You moan as the next child begins its descent; if ${S.Nurse.slaveName} weren't here, you and your children would likely have perished.`); + } else if (V.PC.pregType === 2) { + r.push(`But you aren't done; your rounded belly still houses another infant. You moan as they begin their decent; if ${S.Nurse.slaveName} weren't here, you and your children would likely have perished.`); + } + } else if (V.BodyguardID !== 0) { + const {he, his} = getPronouns(S.Bodyguard); + r.push(`You keep pushing and pushing, but your child is not coming out.`); + if (_concubinePresent === 1) { + r.push(`${S.Concubine.slaveName} shifts to massaging your gravid middle${canTalk(S.Concubine) ? ", while whispering words of encouragement into your ear" : ""}. ${He2} begins to worry as ${his2} lover weakens in front of ${him2}. ${S.Bodyguard.slaveName} quickly pulls ${him2} away from you, fearing the worst.`); + } + r.push(`${S.Bodyguard.slaveName} read about this possibility and tries everything ${he} can to coax your child out. As time passes, ${he} notices your consciousness begin to fade as exhaustion kicks in. Fearing for your lives, and desperate to save you, ${he} draws ${his} sword from its sheath, hands unsteady from what ${he} is about to do. Carefully, ${he} slits your lower abdomen, allowing your baby-`); + if (V.PC.pregType < 3) { + r.push(`filled`); + } else if (V.PC.pregType < 5) { + r.push(`stuffed`); + } else if (V.PC.pregType < 8) { + r.push(`packed`); + } else { + r.push(`bursting`); + } + r.push(`womb to pop out through the incision. Doing ${his} best, ${he} cuts open your uterus, pulls your child`); + if (V.PC.pregType > 1) { + r.push(`ren`); + } + r.push(`from you and severs the umbilical cord${(V.PC.pregType > 1) ? "s all at once" : ""}.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`You awake some time later in the remote surgery, your stomach extremely sore; you quickly realize you're no longer round with child. As you try to rise, ${S.Bodyguard.slaveName} stops you; ${he} hefts you into a bridal carry and takes you to a recovery room, before gently placing you into a warm bed, tucking you in, and hurrying out of the room. Before you can call out, ${he} returns carrying`); + if (_curBabies === 1) { + r.push(`<span class="lime">your baby`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`</span>`); + } else if (_curBabies < 6) { + r.push(`<span class="lime">your newborn ${pregNumberName(_curBabies, 2)}</span>`); + } else { + r.push(`a big bassinet containing <span class="lime">your newborn pregNumberName(_curBabies, 2)</span>`); + } + r.push(`in ${his} arms.`); + _wounded = 1; + } else if (V.HeadGirlID !== 0) { + const {he, his, him} = getPronouns(S.HeadGirl); + r.push(`You keep pushing and pushing, but your child is not coming out.`); + if (_concubinePresent === 1) { + r.push(`${S.Concubine.slaveName} shifts to massaging your gravid middle${canTalk(S.Concubine) ? ", while whispering words of encouragement into your ear" : ""}. ${He2} begins to worry as ${his2} lover weakens in front of ${him2}. ${S.HeadGirl.slaveName} quickly pulls ${him2} to`); + if (hasBothLegs(S.Concubine)) { + r.push(`${his2} feet`); + } else { + r.push(`upright`); + } + r.push(`and orders ${him2} to help ${him} carry you to the remote`); + if (!canWalk(S.Concubine)) { + r.push(`surgery; in ${his} rush, ${he} completely forgot`); + if (tooBigBreasts(S.Concubine)) { + r.push(`${S.Concubine.slaveName}'s breasts have ${him2} pinned to the bed`); + } else if (tooBigBelly(S.Concubine)) { + r.push(`${S.Concubine.slaveName}'s pregnancy renders ${him2} immobile`); + } else if (tooBigDick(S.Concubine)) { + r.push(`${S.Concubine.slaveName} can't walk with a dick that big`); + } else if (tooBigButt(S.Concubine)) { + r.push(`${S.Concubine.slaveName}'s butt pins ${him2} to the bed`); + } else if (tooBigBalls(S.Concubine)) { + r.push(`${S.Concubine.slaveName}'s balls act as a giant anchor`); + } else if (tooFatSlave(S.Concubine)) { + r.push(`${S.Concubine.slaveName} is so fat, the bed is ${his2} home now`); + } else { + r.push(`${S.Concubine.slaveName} can't walk.`); + } + } else { + r.push(`surgery.`); + } + } else { + r.push(`${S.HeadGirl.slaveName} notices your distress and carries you to the remote surgery${(V.PC.pregType >= 8) ? ", a daunting task given your extreme gravidity" : ""}.`); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`You awake some time later in a recovery room${(_concubinePresent > 0) ? `, ${S.Concubine.slaveName} beside you` : ""}, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. Seeing you're awake, ${S.HeadGirl.slaveName} catches your attention. In ${his} arms`); + if (_curBabies === 1) { + r.push(`is <span class="lime">your baby`); + if (_gender === "XX") { + r.push(`girl,</span>`); + } else { + r.push(`boy,</span>`); + } + if (S.HeadGirl.lactation > 0) { + r.push(`happily nursing from ${his} breast,`); + } + } else { + r.push(`are <span class="lime">your newborn ${pregNumberName(_curBabies, 2)},</span>`); + if (S.HeadGirl.lactation > 0) { + r.push(`happily nursing from ${his} breasts,`); + } + } + r.push(`alive and well.`); + _wounded = 1; + } else if (_concubinePresent === 1) { + r.push(`You keep pushing and pushing, but your child is not coming out.`); + if (canWalk(S.Concubine)) { + r.push(`In a panic, ${S.Concubine.slaveName} carries you to the remote surgery.`); + } else { + r.push(`The last thing you remember as you fade is ${S.Concubine.slaveName}'s look of panic.`); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`You awake some time later in a recovery room, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. A content sigh comes from beside you; ${S.Concubine.slaveName} is snuggled next to you, snoozing with`); + if (_curBabies === 1) { + r.push(`<span class="lime">your baby`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`</span> in ${his2} arms.`); + if (S.Concubine.lactation > 0) { + r.push(`Your child has managed to free one of ${S.Concubine.slaveName}'s breasts and is eagerly suckling from its milky nipple.`); + } + } else { + r.push(`<span class="lime">your newborn ${pregNumberName(_curBabies, 2)}</span> in ${his2} arms.`); + if (S.Concubine.lactation > 0) { + r.push(`Your children have managed to free ${S.Concubine.slaveName}'s breasts and are eagerly suckling from their milky nipples.`); + } + } + if (!canWalk(S.Concubine)) { + if (tooBigBreasts(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${his2} breasts prevent ${him2} from walking${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give the pair a gentle caress as thanks.`); + } else if (tooBigBelly(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${he2}'s so gravid ${he2} can't walk${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give the taut dome a gentle caress as thanks.`); + } else if (tooBigDick(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${his2} dick prevents ${him2} from walking${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give the serpent a gentle caress as thanks.`); + } else if (tooBigButt(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${his2} ass prevent ${him2} from walking${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give the jiggling giant a gentle caress as thanks.`); + } else if (tooBigBalls(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${his2} balls prevent ${him2} from walking${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give the pair a gentle caress as thanks. ${He2} returns the kindness with a shudder and a large wet spot forming over ${his2} crotch.`); + } else if (tooFatSlave(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${he2}'s so fat ${he2} can't walk${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give ${his2} soft body a gentle caress as thanks.`); + } else if (!hasAnyLegs(S.Concubine)) { + r.push(`You don't know how ${he2} managed to get you here when ${he2} has no legs to walk on${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you give ${his2} stumps a gentle caress as thanks.`); + } else { + r.push(`You don't know how ${he2} managed to get you here, since ${he2} can't walk${(V.PC.pregType >= 8) ? ", especially with how heavy your pregnancy was" : ""}, but you're thankful either way.`); + } + } + _wounded = 1; + } else { + r.push(`You keep pushing and pushing, but your child is not coming out. <span class="red">Something is wrong,</span> but you keep persisting.`); + playerDead = true; + V.gameover = "birth complications"; + V.nextButton = "Have to keep trying!"; + V.nextLink = "Gameover"; + App.Utils.scheduleSidebarRefresh(); + } + } else { + if (S.Nurse) { + r.push(`Under ${S.Nurse.slaveName}'s guidance, childbirth is a breeze for you.`); + if (V.PC.pregType === 1) { + if (_concubinePresent === 1) { + r.push(`Or it would have been, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName}, ${S.Nurse.slaveName}, and your newborn getting sprayed with cum.`); + } + } + r.push(`${S.Nurse.slaveName} cuts the cord, swaddles your child, and hands you <span class="lime">your new baby`); + if (_gender === "XX") { + r.push(`girl.</span>`); + } else { + r.push(`boy.</span>`); + } + } else { + if (_concubinePresent === 1) { + r.push(`Or it would have been, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your first child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName},${S.Nurse.slaveName}, and your newborn getting sprayed with cum.`); + } + r.push(`But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth`); + if (V.PC.pregType >= 3) { + r.push(`canal, followed closely by the`); + if (V.PC.pregType === 3) { + r.push(`last,`); + } else { + r.push(`next,`); + } + } else { + r.push(`canal`); + } + r.push(`and immediately pushes you back over the edge. In minutes, after ${num(_curBabies)} children and ${num(_curBabies)} intense orgasms, you're barely conscious. ${S.Concubine.slaveName} slides in behind you to snuggle with you as you return to your senses.`); + } else { + r.push(`With one out, you realize`); + if (V.PC.pregType >= 6) { + r.push(`you still have ${num(V.PC.pregType - 1)} more to go.`); + } else if (V.PC.pregType === 5) { + r.push(`your taut dome of a belly still houses four more.`); + } else if (V.PC.pregType === 4) { + r.push(`your swollen belly still houses three more.`); + } else if (V.PC.pregType === 3) { + r.push(`your swollen belly still houses another pair.`); + } else if (V.PC.pregType === 2) { + r.push(`your rounded belly still houses another.`); + } + r.push(`You moan as`); + if (V.PC.pregType >= 3) { + r.push(`the next child begins its`); + } else { + r.push(`they begin their`); + } + r.push(`descent; you'll be at this for awhile. With ${S.Nurse.slaveName} around, you aren't worried at all.`); + } + r.push(`${S.Nurse.slaveName} cuts the cords, swaddles your children, and hands you <span class="lime">your new ${pregNumberName(_curBabies, 2)}.</span>`); + } + } else if (V.BodyguardID !== 0) { + const {his} = getPronouns(S.Bodyguard); + r.push(`With ${S.Bodyguard.slaveName} watching over you, you feel safe enough to let your guard down and focus on giving birth. Once you are relaxed, you feel your child begin to inch down your birth canal. Before long you've completed the job without any trouble.`); + if (V.PC.pregType === 1) { + if (_concubinePresent === 1) { + r.push(`Or it would have, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName},${S.Bodyguard.slaveName}, and your newborn getting sprayed with cum.`); + } + } + r.push(`${S.Bodyguard.slaveName} cuts the cord with ${his} blade, and hands you <span class="lime">your new baby`); + if (_gender === "XX") { + r.push(`girl.</span>`); + } else { + r.push(`boy.</span>`); + } + } else { + if (_concubinePresent === 1) { + r.push(`Or you would have, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName}, ${S.Bodyguard.slaveName}, and your newborn getting sprayed with cum.`); + } + r.push(`But it isn't over; before you've even had a chance to come down from your climax, the next infant slips into your birth `); + if (V.PC.pregType >= 3) { + r.push(`canal, followed closely by the`); + if (V.PC.pregType === 3) { + r.push(`last,`); + } else { + r.push(`next,`); + } + } else { + r.push(`canal`); + } + r.push(`and immediately pushes you back over the edge. In minutes, after ${num(_curBabies)} children and ${num(_curBabies)} intense orgasms, you're barely conscious, nearly panicking ${S.Bodyguard.slaveName}. ${S.Concubine.slaveName} slides in behind you to snuggle with you as you return to your senses.`); + } else { + r.push(`With one out, you realize`); + if (V.PC.pregType >= 6) { + r.push(`you still have ${num(V.PC.pregType - 1)} more to go.`); + } else if (V.PC.pregType === 5) { + r.push(`your taut dome of a belly still houses four more.`); + } else if (V.PC.pregType === 4) { + r.push(`your swollen belly still houses three more.`); + } else if (V.PC.pregType === 3) { + r.push(`your swollen belly still houses another pair.`); + } else if (V.PC.pregType === 2) { + r.push(`your rounded belly still houses another.`); + } + r.push(`You moan as`); + if (V.PC.pregType >= 3) { + r.push(`the next child begins its`); + } else { + r.push(`they begin their`); + } + r.push(`descent; you'll be at this for awhile. With ${S.Bodyguard.slaveName} around, you feel completely safe.`); + } + r.push(`${S.Bodyguard.slaveName} cuts the cords with ${his} blade, and hands you <span class="lime">your new ${pregNumberName(_curBabies, 2)}.</span>`); + } + } else if (V.HeadGirlID !== 0) { + r.push(`With ${S.HeadGirl.slaveName} waiting with everything you need, childbirth goes by without a hitch.`); + if (V.PC.pregType === 1) { + if (_concubinePresent === 1) { + r.push(`Or it would have been, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName},${S.HeadGirl.slaveName}, and your newborn getting sprayed with cum.`); + } + } + r.push(`${S.HeadGirl.slaveName} cuts the cord, swaddles your child, and hands you <span class="lime">your new baby`); + if (_gender === "XX") { + r.push(`girl.</span>`); + } else { + r.push(`boy.</span>`); + } + } else { + if (_concubinePresent === 1) { + r.push(`Or it would have been, had ${S.Concubine.slaveName} not driven you to an intense orgasm right as your first child entered the world.`); + if (V.PC.balls >= 9) { + r.push(`An orgasm that resulted in ${S.Concubine.slaveName},${S.HeadGirl.slaveName}, and your newborn getting sprayed with cum.`); + } + r.push(`But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth`); + if (V.PC.pregType >= 3) { + r.push(`canal, followed closely by the`); + if (V.PC.pregType === 3) { + r.push(`last,`); + } else { + r.push(`next,`); + } + } else { + r.push(`canal`); + } + r.push(`and immediately pushes you back over the edge. In minutes, after ${num(_curBabies)} children and ${num(_curBabies)} intense orgasms, you're barely conscious. ${S.Concubine.slaveName} slides in behind you to snuggle with you as you return to your senses.`); + } else { + r.push(`With one out, you realize`); + if (V.PC.pregType >= 6) { + r.push(`you still have ${num(V.PC.pregType - 1)} more to go.`); + } else if (V.PC.pregType === 5) { + r.push(`your taut dome of a belly still houses four more.`); + } else if (V.PC.pregType === 4) { + r.push(`your swollen belly still houses three more.`); + } else if (V.PC.pregType === 3) { + r.push(`your swollen belly still houses another pair.`); + } else if (V.PC.pregType === 2) { + r.push(`your rounded belly still houses another.`); + } + r.push(`You moan as`); + if (V.PC.pregType >= 3) { + r.push(`the next child begins its`); + } else { + r.push(`they begin their`); + } + r.push(`descent; you'll be at this for awhile. With ${S.HeadGirl.slaveName} around, you know everything is under control.`); + } + r.push(`${S.HeadGirl.slaveName} cuts the cords, swaddles your children, and hands you <span class="lime">your new ${pregNumberName(_curBabies, 2)}.</span>`); + } + } else if (_concubinePresent === 1) { + r.push(`${S.Concubine.slaveName} alternates between calming your nerves and driving your to orgasm. It works fairly well, as your child rapidly enters the world alongside a particularly powerful climax. You reach down and draw <span class="lime">your new baby`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`</span> into your arms, while ${S.Concubine.slaveName} shifts to eagerly "clean" your crotch with ${his2} tongue.`); + if (V.PC.pregType > 1) { + r.push(`${His2} over-stimulation of you quickly has ${him2} licking the crowning head of your second child. ${He2} diligently works you over until all of your children are born, making sure you are thoroughly exhausted; both from the birth and from ${his2} ministrations.`); + if (canPenetrate(S.Concubine) && canImpreg(V.PC, S.Concubine)) { + r.push(`${S.Concubine.slaveName}`); + if (canSee(S.Concubine)) { + r.push(`eyes`); + } else { + r.push(`faces`); + } + r.push(`your spread pussy hungrily as ${his2} erection bobs with anticipation. But you're too tired right now and ${he2} realizes it.`); + } + r.push(`${He2} helps gather your child`); + if (V.PC.pregType > 1) { + r.push(`ren`); + } + r.push(`to`); + if (S.Concubine.lactation > 0) { + r.push(`${his2} and`); + } + r.push(`your breasts with the hope that you'll reward ${him2} when you recover.`); + } + } else { + r.push(`You keep pushing and pushing, your child slowly working its way from your body. With the last of your strength, you bear down, freeing your child from your body at last. Panting, you gather <span class="lime">your new baby`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + r.push(`</span>`); + if (V.PC.pregType > 1) { + r.push(`as another contraction ushers your next child into your birth canal.`); + } else { + r.push(`and drift off into a much deserved rest.`); + } + if (V.PC.pregType >= 2) { + r.push(`You struggle to pass the second `); + if (V.PC.pregType >= 3) { + r.push(`baby, knowing full well a third will quickly follow suit`); + if (V.PC.pregType >= 4) { + r.push(`and a fourth after that`); + } + } else { + r.push(`baby.`); + } + if (V.PC.pregType >= 5) { + r.push(`You dread the challenge that will be the fifth `); + if (V.PC.pregType >= 6) { + r.push(`one and worry for your health over the sixth`); + } else { + r.push(`one.`); + } + } + if (V.PC.pregType >= 7) { + r.push(`You are nearly delirious by the time`); + if (V.PC.pregType >= 8) { + r.push(`it comes to the final ${num(V.PC.pregType - 6)}; your efforts to push them out are falling flat. You're just too tired. With one final push, you feel the first crown then exit your ruined pussy; the second`); + if (V.PC.pregType >= 9) { + r.push(`and the rest follow`); + } else { + r.push(`follows`); + } + r.push(`closely, finally allowing you relief.`); + } else { + r.push(`they are all born; you still look pregnant. It dawns on you as your cervix stretches wide; you forgot one.`); + } + } + r.push(`You are`); + if (V.PC.pregType >= 6) { + r.push(`thoroughly`); + } + r.push(`exhausted by the time you've pushed out your ${pregNumberName(_curBabies, 2)},`); + if (V.PC.pregType >= 8) { + r.push(`unable to even`); + } else { + r.push(`barely able to`); + } + r.push(`gather them to your chest. Fortunately, ${V.assistant.name} calls several devoted slaves to your aid; you're helped to your bed and left to connect with your children.`); + } + } + } + + App.Events.addParagraph(node, r); + r = []; + if (!playerDead) { + V.PC.counter.birthOther += _others; + V.PC.counter.birthSelf += _self; + V.PC.counter.birthCitizen += _citizens; + V.PC.counter.birthMaster += _oldMaster; + V.PC.counter.birthArcOwner += _arcOwner; + V.PC.counter.birthClient += _clients; + V.PC.counter.birthElite += _elite; + V.PC.counter.birthLab += _lab; + V.PC.counter.birthDegenerate += _slavesLength; + + if (_curBabies === 1) { + let _p = 0; + if (birthed[_p].genetics.race === V.PC.origRace) { + _PCDegree++; + } + if (birthed[_p].genetics.hColor === V.PC.hColor) { + _PCDegree++; + } + if (birthed[_p].genetics.skin === V.PC.skin) { + _PCDegree++; + } + if (birthed[_p].genetics.eyeColor === V.PC.eye.origColor) { + _PCDegree++; + } + + r.push(`Your little`); + if (_gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + if (V.PC.pregSource === -1) { + r.push(`looks exactly like you, in fact, the resemblance seems uncanny. Since`); + if (_gender === "XX") { + r.push(`she`); + } else { + r.push(`he`); + } + r.push(`has the exact same genetics as you,`); + if (_gender === "XX") { + r.push(`she'll`); + } else { + r.push(`he'll`); + } + r.push(`likely look almost identical to you when`); + if (_gender === "XX") { + r.push(`she's`); + } else { + r.push(`he's`); + } + r.push(`your age.`); + } else if (_PCDegree === 4) { + r.push(`looks just like you;`); + if (_gender === "XX") { + r.push(`she`); + } else { + r.push(`he`); + } + r.push(`will likely grow up to closely resemble yourself.`); + } else if (birthed[_p].genetics.eyeColor === V.PC.eye.origColor) { + r.push(`has your lovely ${V.PC.eye.origColor} eyes.`); + } else if (_PCDegree > 0) { + r.push(`looks a little like you, enough that`); + if (_gender === "XX") { + r.push(`she'll`); + } else { + r.push(`he'll`); + } + r.push(`be recognizable as yours.`); + } else { + r.push(`looks nothing like you; it's hard to believe`); + if (_gender === "XX") { + r.push(`she's your daughter`); + } else { + r.push(`he's you son`); + } + } + + if (birthed[0].reserve === "incubator") { + r.push(`<span class="pink">You set`); + if (_gender === "XX") { + r.push(`her`); + } else { + r.push(`him`); + } + r.push(`aside for incubation.</span>`); + if (V.incubator.tanks.length < V.incubator.capacity) { + App.Facilities.Incubator.newChild(generateChild(V.PC, birthed[0], true)); + } + } else if (birthed[0].reserve === "nursery") { + r.push(`<span class="pink">You set`); + if (_gender === "XX") { + r.push(`her`); + } else { + r.push(`him`); + } + r.push(`aside for incubation.</span>`); + if (V.cribs.length < V.nursery) { + App.Facilities.Nursery.newChild(generateChild(V.PC, birthed[0])); + } + } + birthed.shift(); + } else if (_curBabies > 1) { + let _firstChild = 1; + for (let _p = 0; _p < _curBabies; _p++) { + _PCDegree = 0; + if (birthed[0].genetics.race === V.PC.origRace) { // TODO: Fixme "0" is from TW; error? + _PCDegree++; + } + if (birthed[_p].genetics.hColor === V.PC.hColor) { + _PCDegree++; + } + if (birthed[_p].genetics.skin === V.PC.skin) { + _PCDegree++; + } + if (birthed[_p].genetics.eyeColor === V.PC.eye.origColor) { + _PCDegree++; + } + + if (_firstChild === 1) { + r.push(`Your first`); + _firstChild = 0; + } else { + r.push(`The next`); + } + r.push(`little`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`girl`); + } else { + r.push(`boy`); + } + if (_identicalChildGen === 1) { // TODO: fixme: completely unique variable. -_- + r.push(`looks exactly like the previous; they're identical twins.`); + } else if (V.PC.pregSource === -1) { + r.push(`looks exactly like`); + if (_p === 0) { + r.push(`you, in fact, the resemblance seems uncanny. Since`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she`); + } else { + r.push(`he`); + } + r.push(`has the exact same genetics as you,`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she'll`); + } else { + r.push(`he'll`); + } + r.push(`likely look almost identical to you when`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she's`); + } else { + r.push(`he's`); + } + r.push(`your age.`); + } else { + r.push(`you.`); + } + r.push(`Every one of your children look this way; it's kind of hard to tell them apart.`); + } else if (_PCDegree === 4) { + r.push(`looks just like you;`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she`); + } else { + r.push(`he`); + } + r.push(`will likely grow up to closely resemble yourself.`); + } else if (birthed[_p].genetics.eyeColor === V.PC.eye.origColor) { + r.push(`has your lovely ${V.PC.eye.origColor} eyes.`); + } else if (_PCDegree > 0) { + r.push(`looks a little like you, enough that`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she'll`); + } else { + r.push(`he'll`); + } + r.push(`be recognizable as yours.`); + } else { + r.push(`looks nothing like you; it's hard to believe`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`she's your daughter`); + } else { + r.push(`he's your son`); + } + } + if (birthed[_p].reserve === "incubator") { + r.push(`<span class="pink">You set`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`her`); + } else { + r.push(`him`); + } + r.push(`aside for incubation.</span>`); + if (V.incubator.tanks.length < V.incubator.capacity) { + App.Facilities.Incubator.newChild(generateChild(V.PC, birthed[_p], true)); + } + birthed.splice(birthed[_p], 1); + _p--; + _curBabies--; + } else if (birthed[_p].reserve === "nursery") { + r.push(`<span class="pink">You set`); + if (birthed[_p].genetics.gender === "XX") { + r.push(`her`); + } else { + r.push(`him`); + } + r.push(`aside to be raised in the penthouse.</span>`); + if (V.cribs.length < V.nursery) { + App.Facilities.Nursery.newChild(generateChild(V.PC, birthed[_p])); + } + birthed.splice(birthed[_p], 1); + _p--; + _curBabies--; + } + } + + r.push(`All in all, you've bought a healthy group of`); + if (_babiesReduced.length > 2) { + for (let _spb = 0; _spb < _babiesReduced.length; _spb++) { + if (_spb < _babiesReduced.length - 1) { + r.push(`${_babiesReduced[_spb]},`); + } else { + r.push(`and${_babiesReduced[_spb]}'s`); + } + } + } else if (_babiesReduced.length > 1) { + r.push(`${_babiesReduced[0]} and ${_babiesReduced[1]}'s`); + } else { + if (_babiesReduced[0] !== "your own" && _babiesReduced[0] !== "designer") { + r.push(`${_babiesReduced[0]}'s`); + } else { + r.push(_babiesReduced[0]); + } + } + r.push(`babies into the world.`); + } + + + if (V.PC.pregSource > 0 && _curBabies > 0) { + let _pb = findFather(V.PC.pregSource); + if (_pb) { + if (V.arcologies[0].FSRestartDecoration === 100 && V.eugenicsFullControl !== 1) { + r.push(`Word spreads fast through your peers that you gave birth to`); + if (_curBabies > 1) { + r.push(`low class infants`); + } else { + r.push(`a low class child`); + } + r.push(`<span class="red">utterly devastating your standing among the Elite.</span>`); + V.failedElite += 200; + } else if (V.arcologies[0].FSChattelReligionistLaw === 1) { + r.push(`Rumors spread that The Prophet gave birth to a slave's ${(_curBabies > 1) ? "children" : "child"}.`); + if (V.arcologies[0].FSSupremacist !== "unset") { + if (_pb.race !== V.arcologies[0].FSSupremacistRace) { + r.push(`Word is that your child`); + if (_curBabies > 1) { + r.push(`ren were`); + } else { + r.push(`was`); + } + r.push(`not ${V.arcologies[0].FSSupremacistRace}. As The Prophet saw fit to bear such a child, society views it as a sign to <span class="red">reject ${V.arcologies[0].FSSupremacistRace} supremacy.</span>`); + V.arcologies[0].FSSupremacist -= 120; + } + } + if (V.arcologies[0].FSSubjugationist !== "unset") { + if (_pb.race === V.arcologies[0].FSSubjugationistRace) { + r.push(`In addition, The Prophet's womb bore ${V.arcologies[0].FSSubjugationistRace} ${(_curBabies > 1) ? "children" : "a child"}, surely a sign to <span class="red">reject ${V.arcologies[0].FSSubjugationistRace} subjugation.</span>`); + V.arcologies[0].FSSubjugationist -= 120; + } + } + } else { + r.push(`Rumors spread that your child`); + if (_curBabies > 1) { + r.push(`ren were`); + } else { + r.push(`was`); + } + r.push(`fathered by a slave, <span class="red">harming your lasting reputation.</span>`); + V.PC.degeneracy += 20; + if (V.arcologies[0].FSSupremacist !== "unset") { + if (_pb.race !== V.arcologies[0].FSSupremacistRace) { + r.push(`Furthermore, word is that your child`); + if (_curBabies > 1) { + r.push(`ren were`); + } else { + r.push(`was`); + } + r.push(`not ${V.arcologies[0].FSSupremacistRace}, <span class="red">further hurting your lasting reputation.</span>`); + V.PC.degeneracy += 10; + } + } + if (V.arcologies[0].FSSubjugationist !== "unset") { + if (_pb.race === V.arcologies[0].FSSubjugationistRace) { + r.push(`In addition, there is a nasty rumor that you gave birth to ${V.arcologies[0].FSSubjugationistRace} ${(_curBabies > 1) ? "children" : "a child"}, <span class="red">devastating your lasting reputation.</span>`); + V.PC.degeneracy += 50; + } + } + } + } + } + + /* -------------------- Now curBabies counts live, birthed babies who haven't been placed in the incubator. */ + _curBabies = birthed.length; + + if (_curBabies > 0) { + App.Events.addParagraph(node, r); + r = []; + r.push(`Now you are faced with a decision of what to do with your`); + if (_pregTypeDecrecement > 0) { + r.push(`remaining`); + } else { + r.push(`new`); + } + r.push(`${(_curBabies > 1) ? "children" : "child"}. You're far too busy to keep`); + if (_curBabies > 1) { + r.push(`them`); + } else { + r.push(`it`); + } + r.push(`yourself, but you could <span class="orange">send them to a boarding school to be raised until they are of age to serve as your heir.</span> Other options include sending them to <span class="orange">become a slave at a slave orphanage,</span> sending them to <span class="orange">a citizen school,</span> to be brought up coequal with the arcology's other young people, or sending them to be <span class="orange">raised privately,</span> with expert care and tutoring.`); + if (V.arcologies[0].FSRepopulationFocus > 40) { + r.push(`Of course, there are also the <span class="orange">breeding schools,</span> where your`); + if (_curBabies === 1) { + if (_gender === "XX") { + r.push(`daughter will be taught the joys of motherhood up until she is around`); + if (V.minimumSlaveAge > V.fertilityAge) { + r.push(`${V.minimumSlaveAge}`); + } else { + r.push(`${V.fertilityAge}`); + } + r.push(`years old, when she will be impregnated with her first child.`); + } else { + r.push(`son will be taught it is his duty to fuck every slavegirl he sees without a baby bump pregnant.`); + } + } else { + if (_gender === "XX") { + r.push(`daughters will be taught the joys of motherhood up until they are around`); + if (V.minimumSlaveAge > V.fertilityAge) { + r.push(`${V.minimumSlaveAge}`); + } else { + r.push(`${V.fertilityAge}`); + } + r.push(`years old, when they will be impregnated for the first time.`); + if (_curBabies > 1) { + r.push(`They say multiples run in families, so your daughters should blossom into quite the fertile breeders.`); + } + } else { + r.push(`sons will be taught it is their duty to fuck every slavegirl they see without a baby bump pregnant.`); + } + } + } + if (V.policies.cash4Babies === 1) { + _seed = random(1, 10); + r.push(`Alternatively, since it is <span class="orange">legal to sell slave babies,</span> your child should be worth quite a pretty ¤ at auction.`); + } + if (((V.eliteFail > 0 || V.eugenicsFullControl > 0) && V.PC.pregSource === -1) || V.PC.pregSource === -6) { + r.push(`The Societal Elite should look forward <span class="orange">to raising them.</span>`); + } + if (V.PC.pregSource === -9) { + r.push(`The Futanari Sisters would happily <span class="orange">take them in.</span>`); + } + + App.Events.addParagraph(node, r); + + App.UI.DOM.appendNewElement("p", node, `What will it be?`); + + const choices = [ + new App.Events.Result(`Boarding School`, boarding), + new App.Events.Result(`Slave Orphanage`, orphanage), + new App.Events.Result(`Citizen School`, citizenSchool), + new App.Events.Result(`Privately Raised`, privateSchool), + ]; + if (V.arcologies[0].FSRepopulationFocus > 40) { + choices.push(new App.Events.Result(`Breeding School`, breeding)); + } + if (V.policies.cash4Babies === 1) { + choices.push(new App.Events.Result(`Auction Them`, auction)); + } + if (((V.eliteFail > 0 || V.eugenicsFullControl > 0) && V.PC.pregSource === -1) || V.PC.pregSource === -6) { + choices.push(new App.Events.Result(`Societal Elite`, elite)); + } + if (V.PC.pregSource === -9) { + choices.push(new App.Events.Result(`Futanari Sisters`, futa)); + } + + App.Events.addResponses(node, choices); + } + + if (V.PC.ovaryAge >= 47 && V.playerAging === 2) { + // <br> + r.push(`You are getting too old to have children; you feel like this may be your last.`); + V.PC.preg = -2; + } + + if (_wounded === 1) { + r.push(`Things didn't quite go as planned, leaving you <span class="health.dec">weak and wounded.</span> You'll need a couple weeks to recover from the ordeal before you're back on your feet.`); + healthDamage(V.PC, 40); + } + }/* closes gaveBirth*/ + }/* closes SE*/ + + /* belly sag is a thing now, USE IT! */ + _badBirth = 0; + WombFlush(V.PC); + if (V.PC.geneticQuirks.fertility + V.PC.geneticQuirks.hyperFertility >= 4) { + V.PC.pregWeek = -2; + } else if (V.PC.geneticQuirks.hyperFertility === 2) { + V.PC.pregWeek = -3; + } else { + V.PC.pregWeek = -4; + } + V.PC.belly = getPregBellySize(V.PC); + + function boarding() { + return "You have decided to send them away to be raised in your stead."; + } + + function orphanage() { + V.slaveOrphanageTotal += _curBabies; + return `You have decided to send them to a slave orphanage to be raised to ${V.minimumSlaveAge} and sold. Perhaps you'll even see them again, though you are unlikely to recognize them if you do.`; + } + + function citizenSchool() { + V.citizenOrphanageTotal += _curBabies; + return "You have decided to send them to a citizen school to become a future citizen. Perhaps you'll even see them again, though you are unlikely to recognize them if you do."; + } + + function privateSchool() { + V.privateOrphanageTotal += _curBabies; + return `You have decided to send them to be privately raised. Perhaps you'll even see them again, though it's unlikely that there will be any connection between you. At least you'll know they've been properly reared.`; + } + + function breeding() { + V.breederOrphanageTotal += _curBabies; + return `You have decided to send them to be raised into a proper breeder. Perhaps you'll even see them again, though it's unlikely you'll recognize them with their reproduction focused body.`; + } + + function auction() { + cashX((1000 * _seed * _curBabies), "babyTransfer"); + return `You send the ${(_curBabies > 1) ? "children" : "child"} to be sold at auction amongst other prestigious slaves. The winning bid for your offspring came in at <span class="yellowgreen">${cashFormat(1000 * _seed * _curBabies)}.</span>"`; + } + + function elite() { + r = []; + r.push(`You have decided to gift them to the Societal Elite to be raised as`); + if (_curBabies > 1) { + r.push(`proper members`); + } else { + r.push(`a proper member`); + } + r.push(`of the future world.`); + return r.join(" "); + } + + function futa() { + return `You have decided to gift them to the Futanari Sisters to be raised to join them. They are more than happy to cover all the expenses for the gift you gave them — especially after they gave you a gift in return.`; + } + } +}; diff --git a/src/events/scheduled/seRaiding.js b/src/events/scheduled/seRaiding.js index a886c959483bf52abd94e9ee23dea0841adf4460..d4f96c85d406243b2317fd6c7562903b5713cd76 100644 --- a/src/events/scheduled/seRaiding.js +++ b/src/events/scheduled/seRaiding.js @@ -437,7 +437,8 @@ App.Events.SERaiding = class SERaiding extends App.Events.BaseEvent { slave.skill.combat = 1; slave.intelligence = random(20, 60); slave.intelligenceImplant = 15; - slave.hStyle = either("short", "very short"); + slave.hStyle = either("buzzcut", "bun", "shaved", "neat"); + slave.hLength = jsRandom(1, 9); slave.boobs = 150; slave.vagina = -1; slave.clit = 0; @@ -958,7 +959,7 @@ App.Events.SERaiding = class SERaiding extends App.Events.BaseEvent { r.push(`teen`); } else if (slave.visualAge <= 24) { r.push(`young`); - } else if (slave.visualAge <= 32) { + } else if (slave.visualAge <= 32) { // do nothing } else { r.push(`old`); } diff --git a/src/events/scheduled/seWedding.js b/src/events/scheduled/seWedding.js index 9fc216ecd33b8cbf35f0744fe9937b9c93c86c1b..7992d3ec2f9c12f8fb25845fc729717a52cb31d8 100644 --- a/src/events/scheduled/seWedding.js +++ b/src/events/scheduled/seWedding.js @@ -22,8 +22,11 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { const { HeC, - heC, hisC, himC, wivesC + heC, hisC, himC } = getPronouns(solo ? slave1 : {pronoun: App.Data.Pronouns.Kind.plural}).appendSuffix("C"); // "C" is for collective. Used for flexibility in scenes that may have just one slave, or more than one. "she/they bow before you." + const wivesC = solo ? + getPronouns(slave1).wife : + getPronouns({pronoun: App.Data.Pronouns.Kind.plural}).wives; const belly = bellyAdjective(slave1); const ML = V.marrying.length; @@ -770,7 +773,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { r.push(`You'll fuck them repeatedly over the next few days, ensuring`); if (brides.every(b => b.devotion < -20)) { r.push(`impregnation, despite their protests.`); - } else if (brides.some(b => b)) { + } else if (brides.some(b => b.devotion < -20)) { const lowDevNames = brides .filter(slave => slave.devotion < -20) .map(slave => slave.slaveName); @@ -785,7 +788,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } } for (const slave of brides) { - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); } if (brides.every((b) => b.vagina === 0 || (b.mpreg === 1 && b.anus === 0))) { r.push(`Naturally, the ceremony <span class="lime">took their virginities;</span>`); @@ -1628,7 +1631,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { const r = []; let _c = 0; let _h = 0; - r.push(`You also proclaim your new slave ${wives} ${namesString} ${V.PC.slaveSurname}.`); + r.push(`You also proclaim your new slave ${wivesC} ${namesString} ${V.PC.slaveSurname}.`); for (const slave of brides) { _c += 1; if (canHear(slave)) { @@ -1637,9 +1640,9 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } r.push(`The new Mrs. ${V.PC.slaveSurname}${(_c > 1) ? `s` : ``}`); if (_h > 0) { - r.push((_c === 1) ? `hear` : `hears`); + r.push((_c === 1) ? `hears` : `hear`); } else { - r.push((_c === 1) ? `understand` : `understands`); + r.push((_c === 1) ? `understands` : `understand`); } r.push(`this, of course, and`); const nameCheck = !solo && brides.every(b => b.slaveSurname !== V.PC.slaveSurname); @@ -1657,7 +1660,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { let meanwhile; for (const slave of brides) { const {he, his, him} = getPronouns(slave); - if (_c > 1 && slave.slaveSurname !== V.PC.slaveSurname) { + if (slave.slaveSurname !== V.PC.slaveSurname) { if (!meanwhile) { r.push(slave.slaveName); } else { @@ -1665,41 +1668,26 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } meanwhile = true; if (slave.fetish === "mindbroken") { - if (_c < 1) { - r.push(slave.slaveName); - } - r.push(`shows no reaction. Like many things, names mean nothing to ${him} now. Your guests, on the other hand, appreciate the gift.`); + r.push(`${slave.slaveName} shows no reaction. Like many things, names mean nothing to ${him} now. Your guests, on the other hand, appreciate the gift.`); } else if (slave.devotion + slave.trust >= 175) { - if (_c < 1) { - r.push(slave.slaveName); - } if (V.weddingPlanned === 3) { r.push(`breaks down again. Not only is ${he} to be blessed with your child, but ${he}'s to take your surname as well.`); } else { r.push(`breaks down again; it's like a dream come true.`); } } else if (slave.devotion < -20 && slave.trust > 20) { - if (_c < 1) { - r.push(slave.slaveName); - } if (V.weddingPlanned === 3) { r.push(`scoffs audibly. Just another burden for ${him} to carry; like the child soon to be growing in ${his} womb.`); } else { r.push(`scoffs audibly; just another burden for ${him} to carry.`); } } else if (slave.devotion < -20) { - if (_c < 1) { - r.push(slave.slaveName); - } if (V.weddingPlanned === 3) { r.push(`breaks down again. Not only are you binding ${him} to you with your child, but with your name as well.`); } else { r.push(`breaks down again; this is nothing more than another unwanted link to you.`); } } else { - if (_c < 1) { - r.push(slave.slaveName); - } r.push(`nods acceptingly. Your will is ${his} will, after all.`); } } @@ -1755,7 +1743,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { function ringCeremony() { const r = []; - if (brides.every(b => hasAnyArms(b))) { + if (!solo && brides.every(b => hasAnyArms(b))) { r.push(`on each slave's`); if (brides.every((b) => b.devotion < -20 && b.trust <= 20)) { r.push(`trembling`); @@ -1766,9 +1754,9 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { for (const slave of brides) { const {he} = getPronouns(slave); if (!hasAnyArms(slave)) { - r.push(`on a cord around ${slave.slaveName}'s neck, since ${he} lacks fingers to wear it on`); + ring.push(`on a cord around ${slave.slaveName}'s neck, since ${he} lacks fingers to wear it on`); } else { - r.push(`on ${slave.slaveName}'s ${(slave.devotion < -20 && slave.trust <= 20) ? `trembling ` : ``}finger`); + ring.push(`on ${slave.slaveName}'s ${(slave.devotion < -20 && slave.trust <= 20) ? `trembling ` : ``}middle finger`); } } r.push(`${toSentence(ring, " and another ring ")}.`); @@ -1825,7 +1813,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { marryingSlave.anus = 4; if (canGetPregnant(marryingSlave) && (random(1, 100) > 70) && marryingSlave.eggType === "human") { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 2, 0, true); + knockMeUp(marryingSlave, 100, 2, 0); } } else if (canDoVaginal(marryingSlave)) { seX(marryingSlave, "vaginal", "public", "penetrative", random(30, 60)); @@ -1839,7 +1827,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canGetPregnant(marryingSlave) && (random(1, 100) > 70) && marryingSlave.eggType === "human") { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 0, 0, true); + knockMeUp(marryingSlave, 100, 0, 0); } } else if (canDoAnal(marryingSlave)) { seX(marryingSlave, "anal", "public", "penetrative", random(30, 60)); @@ -1851,7 +1839,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { marryingSlave.anus = 4; if (canGetPregnant(marryingSlave) && (random(1, 100) > 70) && marryingSlave.eggType === "human") { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 1, 0, true); + knockMeUp(marryingSlave, 100, 1, 0); } } else { seX(marryingSlave, "oral", "public", "penetrative", random(30, 60)); @@ -1874,7 +1862,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 2, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 2, relationshipSlave.ID); } } else if (canDoVaginal(marryingSlave)) { seX(marryingSlave, "vaginal", relationshipSlave, "penetrative", random(3, 7)); @@ -1885,7 +1873,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID); } } else if (canDoAnal(marryingSlave)) { seX(marryingSlave, "anal", relationshipSlave, "penetrative", random(1, 4)); @@ -1896,7 +1884,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID); } } else { seX(marryingSlave, "oral", relationshipSlave, "penetrative", random(15, 20)); @@ -1919,7 +1907,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 2, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 2, relationshipSlave.ID); } } else if (canDoVaginal(marryingSlave)) { seX(marryingSlave, "vaginal", relationshipSlave, "penetrative", random(3, 7)); @@ -1930,7 +1918,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID); } } else if (canDoAnal(marryingSlave)) { seX(marryingSlave, "anal", relationshipSlave, "penetrative", random(1, 4)); @@ -1941,7 +1929,7 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { } if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 70)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it.`); - knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID); } } else { seX(marryingSlave, "oral", relationshipSlave, "penetrative", random(15, 20)); @@ -1974,14 +1962,14 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { r.push(`${He} later lets you know ${he} let ${relationshipSlave.slaveName} enjoy ${his} pussy one last time.`); if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 90)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals ${marryingSlave.slaveName} managed to get knocked up. There is no time before the ceremony to deal with it and the distraught ${girl} is in a panic for making you go through this.`); - knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID); } } else if (canDoAnal(marryingSlave)) { seX(marryingSlave, "anal", relationshipSlave, "penetrative"); r.push(`${He} later lets you know ${he} let ${relationshipSlave.slaveName} enjoy ${his} butt one last time.`); if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 90)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals ${marryingSlave.slaveName} managed to get knocked up. There is no time before the ceremony to deal with it and the distraught ${girl} is in a panic for making you go through this.`); - knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID); } } else { seX(marryingSlave, "oral", relationshipSlave, "penetrative"); @@ -2001,14 +1989,14 @@ App.Events.SEWedding = class SEWedding extends App.Events.BaseEvent { r.push(`${He} later lets you know ${he} let ${relationshipSlave.slaveName} enjoy ${his} pussy one last time.`); if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 90)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals ${marryingSlave.slaveName} managed to get knocked up. There is no time before the ceremony to deal with it and the distraught ${girl} is in a panic for making you go through this.`); - knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 0, relationshipSlave.ID); } } else if (canDoAnal(marryingSlave)) { seX(marryingSlave, "anal", relationshipSlave, "penetrative"); r.push(`${He} later lets you know ${he} let ${relationshipSlave.slaveName} enjoy ${his} butt one last time.`); if (canImpreg(marryingSlave, relationshipSlave) && (random(1, 100) > 90)) { r.push(`A pre-wedding checkup following an unusual bout of morning nausea reveals ${marryingSlave.slaveName} managed to get knocked up. There is no time before the ceremony to deal with it and the distraught ${girl} is in a panic for making you go through this.`); - knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID, true); + knockMeUp(marryingSlave, 100, 1, relationshipSlave.ID); } } else { seX(marryingSlave, "oral", relationshipSlave, "penetrative"); diff --git a/src/facilities/AgentSelect.js b/src/facilities/AgentSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..1d67d8d8eb6bbc73eefac04b76f477fc2b781d48 --- /dev/null +++ b/src/facilities/AgentSelect.js @@ -0,0 +1,12 @@ +App.Facilities.AgentSelect = function() { + const f = document.createDocumentFragment(); + + App.UI.DOM.appendNewElement("h2", f, "Appoint an Agent from your devoted slaves"); + f.append(App.UI.SlaveList.slaveSelectionList( + s => App.Entity.facilities.arcologyAgent.manager.checkRequirements(s), + (slave) => App.UI.DOM.passageLink(SlaveFullName(slave), "Agent Workaround", + () => { V.i = V.slaves.findIndex((s) => s.ID === slave.ID); }), + s => App.Entity.facilities.arcologyAgent.manager.slaveHasExperience(s) + )); + return f; +}; diff --git a/src/facilities/arcade/arcadeFramework.js b/src/facilities/arcade/arcadeFramework.js index 1aefdf6abbc4cb49c2f70ef11627d932c80300c5..4093d972395e50c7181ea436ee24ac4f157c2aff 100644 --- a/src/facilities/arcade/arcadeFramework.js +++ b/src/facilities/arcade/arcadeFramework.js @@ -10,7 +10,8 @@ App.Data.Facilities.arcade = { }, }, defaultJob: "assignee", - manager: null + manager: null, + decorated: true }; App.Entity.Facilities.ArcadeJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/armory/BGSelect.js b/src/facilities/armory/BGSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..6cf9ca64096a92726a6286549959b7c5211eb78d --- /dev/null +++ b/src/facilities/armory/BGSelect.js @@ -0,0 +1,23 @@ +App.Facilities.BGSelect = function() { + let div = document.createElement("div"); + const f = document.createDocumentFragment(); + + App.UI.DOM.appendNewElement("h1", f, "Bodyguard Management"); + + if (S.Bodyguard) { + f.append(`${SlaveFullName(S.Bodyguard)} is working as your Bodyguard, remaining close to you at all times and guards your person. `); + f.append(App.UI.DOM.link("Remove Bodyguard", () => { + removeJob(S.Bodyguard, Job.BODYGUARD); + }, + [], "Main" + )); + + div.append(App.UI.DOM.makeCheckbox("bodyguardTrains"), " Can train potential successors."); + f.append(div); + } else { + f.append(`No Bodyguard assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.armory, "BG Select")); + return f; +}; diff --git a/src/facilities/armory/armoryFramework.js b/src/facilities/armory/armoryFramework.js index c2a595acecf80bdf0230b4a64636faa1bc82ca73..9e8adb220d52853e8477d91232ba6396217dc7d1 100644 --- a/src/facilities/armory/armoryFramework.js +++ b/src/facilities/armory/armoryFramework.js @@ -19,7 +19,8 @@ App.Data.Facilities.armory = { shouldTalk: false, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: false }; App.Entity.facilities.armory = new App.Entity.Facilities.Facility(App.Data.Facilities.armory); diff --git a/src/facilities/bodyModification/bodyModification.js b/src/facilities/bodyModification/bodyModification.js index 774e16037c9ce70b623fbaf0f5e94e6b73121f2e..a06dd16588aa407dc25bbab05cf489fccf194070 100644 --- a/src/facilities/bodyModification/bodyModification.js +++ b/src/facilities/bodyModification/bodyModification.js @@ -518,7 +518,7 @@ App.UI.bodyModification = function(slave, cheat = false) { } ) ); - if (cheat) { + if (V.cheatMode && cheat) { // check both cheat gates so it does not show in SG. const options = new App.UI.OptionsGroup(); options.addOption("Breeding mark", "breedingMark", slave) .addValue("On", 1).on() @@ -856,6 +856,7 @@ App.UI.bodyModification = function(slave, cheat = false) { const el = new DocumentFragment(); App.UI.DOM.appendNewElement("h2", el, "Scars"); let r = []; + const bodyPartData = App.Data.Slave.body.get(V.scarTarget.local); for (const _scarName in slave.scar) { const scarDiv = document.createElement("div"); @@ -884,10 +885,7 @@ App.UI.bodyModification = function(slave, cheat = false) { r = []; if (["exotic", "menacing"].includes(V.scarDesign.local) && !V.scarTarget.local.endsWith("cheek")) { r.push(`"${capFirstChar(V.scarDesign.local)}" scars can only be applied to cheeks.`); - } else if ( - App.Data.Slave.body.has(V.scarTarget.local) && - App.Data.Slave.body.get(V.scarTarget.local).isPair - ) { + } else if (bodyPartData && bodyPartData.isPair) { r.push(`Choose a side to scar.`); } else { if (slave.scar.hasOwnProperty(V.scarTarget.local)) { @@ -951,6 +949,7 @@ App.UI.bodyModification = function(slave, cheat = false) { const el = new DocumentFragment(); let p = document.createElement('p'); let div = document.createElement('div'); + const bodyPartData = App.Data.Slave.body.get(V.brandTarget.local); App.UI.DOM.appendNewElement("h2", el, "Branding"); @@ -999,10 +998,7 @@ App.UI.bodyModification = function(slave, cheat = false) { if (slave.brand[V.brandTarget.local] === V.brandDesign.local) { p.append(`${He} already has ${V.brandDesign.local} on ${his} ${V.brandTarget.local}.`); - } else if ( - App.Data.Slave.body.has(V.brandTarget.local) && - App.Data.Slave.body.get(V.brandTarget.local).isPair - ) { + } else if (bodyPartData && bodyPartData.isPair) { p.append(`Choose a side to brand.`); } else { p.append( @@ -1107,7 +1103,8 @@ App.UI.brandSelect = function(category, slave, cheat = false) { App.UI.bodyPartSelector(V.brandTarget, "primary", true) ); const bodyPartRoot = App.UI.bodyPartRoot(V.brandTarget.primary); - if (!App.Data.Slave.body.get(bodyPartRoot).isPair && (App.Data.Slave.body.get(bodyPartRoot)).hasOwnProperty("requirements")) { + const bodyPartData = App.Data.Slave.body.get(bodyPartRoot); + if (bodyPartData && (bodyPartData).hasOwnProperty("requirements")) { r.push(`It's possible that <strong>${V.brandTarget.primary}</strong> may be missing from a slave. Choose a fallback in case it is not available: Current backup is <strong>${V.brandTarget.secondary}</strong>:`); App.Events.addNode(el, r, "div"); r = []; @@ -1217,7 +1214,8 @@ App.UI.scarSelect = function(category, slave, cheat = false) { App.UI.bodyPartSelector(V.scarTarget, "primary", true) ); const bodyPartRoot = App.UI.bodyPartRoot(V.scarTarget.primary); - if (!App.Data.Slave.body.get(bodyPartRoot).isPair && (App.Data.Slave.body.get(bodyPartRoot)).hasOwnProperty("requirements")) { + const bodyPartData = App.Data.Slave.body.get(bodyPartRoot); + if (bodyPartData && bodyPartData.hasOwnProperty("requirements")) { r.push(`It's possible that <strong>${V.scarTarget.primary}</strong> may be missing from a slave. Choose a fallback in case it is not available: Current backup is <strong>${V.scarTarget.secondary}</strong>:`); App.Events.addNode(el, r, "div"); r = []; @@ -1271,10 +1269,8 @@ App.UI.bodyPartSelector = function(variable, property, selector) { } // Choose a side - if ( - App.Data.Slave.body.has(variable[property]) && - App.Data.Slave.body.get(variable[property]).isPair - ) { + const bodyPartData = App.Data.Slave.body.get(variable[property]); + if (bodyPartData && bodyPartData.isPair) { const linkArray = []; for (const side of ["left", "right"]) { linkArray.push(App.UI.DOM.link(capFirstChar(side), () => { diff --git a/src/facilities/brothel/MadamSelect.js b/src/facilities/brothel/MadamSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..1d883bcb9495f1943971b38445b0af1c370e8d01 --- /dev/null +++ b/src/facilities/brothel/MadamSelect.js @@ -0,0 +1,17 @@ +App.Facilities.MadamSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Madam) { + f.append(`Madam: ${SlaveFullName(S.Madam)}, manages the brothel. `); + f.append(App.UI.DOM.link("Remove Madam", () => { + removeJob(S.Madam, Job.MADAM); + }, + [], "Brothel" + )); + } else { + f.append(`No Madam assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.brothel, "Brothel")); + return f; +}; diff --git a/src/facilities/brothel/brothelFramework.js b/src/facilities/brothel/brothelFramework.js index 1230827d0d541a6de0c078b0056317913dcb87b1..394381ad87e8e52292525ef29efdf12c8f9d8d26 100644 --- a/src/facilities/brothel/brothelFramework.js +++ b/src/facilities/brothel/brothelFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.brothel = { shouldTalk: true, shouldThink: true, requiredDevotion: 50 - } + }, + decorated: true }; App.Entity.Facilities.BrothelJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/cellblock/WardenessSelect.js b/src/facilities/cellblock/WardenessSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..b9dfea914f6dada4b993c7ab2a302fed9c2d865a --- /dev/null +++ b/src/facilities/cellblock/WardenessSelect.js @@ -0,0 +1,17 @@ +App.Facilities.WardenessSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Wardeness) { + f.append(`Wardeness: ${SlaveFullName(S.Wardeness)}, helps breaking your prisoners. `); + f.append(App.UI.DOM.link("Remove Wardeness", () => { + removeJob(S.Wardeness, Job.WARDEN); + }, + [], "Cellblock" + )); + } else { + f.append(`No Wardeness assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.cellblock, "Cellblock")); + return f; +}; diff --git a/src/facilities/cellblock/cellblockFramework.js b/src/facilities/cellblock/cellblockFramework.js index 627cf6d90468e0587ff5d3d963e1f954b8109952..4c3edfa4186f730e4eadb2aad9138fd7092d669f 100644 --- a/src/facilities/cellblock/cellblockFramework.js +++ b/src/facilities/cellblock/cellblockFramework.js @@ -25,8 +25,8 @@ App.Data.Facilities.cellblock = { shouldTalk: false, shouldThink: false, requiredDevotion: 51 - - } + }, + decorated: false }; App.Entity.Facilities.CellblockJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/clinic/NurseSelect.js b/src/facilities/clinic/NurseSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..b63ebff3cbeab4653a8ef2e22cb9e88bef1b0901 --- /dev/null +++ b/src/facilities/clinic/NurseSelect.js @@ -0,0 +1,17 @@ +App.Facilities.NurseSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Nurse) { + f.append(`${SlaveFullName(S.Nurse)} is working as your Nurse, helping to heal your slaves. `); + f.append(App.UI.DOM.link("Remove Nurse", () => { + removeJob(S.Nurse, Job.NURSE); + }, + [], "Clinic" + )); + } else { + f.append(`No Nurse assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.clinic, "Clinic")); + return f; +}; diff --git a/src/facilities/clinic/clinicFramework.js b/src/facilities/clinic/clinicFramework.js index 23dd472c60def174c852bae283bbe3f97835d0db..dbdde301ccfaae7ce7f3ad2f810862a83a48e022 100644 --- a/src/facilities/clinic/clinicFramework.js +++ b/src/facilities/clinic/clinicFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.clinic = { shouldTalk: false, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.ClinicPatientJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/club/DJSelect.js b/src/facilities/club/DJSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..0c9709074305f1a13092b2543b5366d85db82500 --- /dev/null +++ b/src/facilities/club/DJSelect.js @@ -0,0 +1,20 @@ +App.Facilities.DJSelect = function() { + const f = document.createDocumentFragment(); + V.nextButton = "Back"; + V.nextLink = "Club"; + V.encyclopedia = "DJ"; + + if (S.DJ) { + f.append(`${SlaveFullName(S.DJ)} is working as your DJ, managing entertainment in ${V.clubName}. `); + f.append(App.UI.DOM.link("Remove DJ", () => { + removeJob(S.Concubine, Job.DJ); + }, + [], "Club" + )); + } else { + f.append(`No DJ assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.club, "Club")); + return f; +}; diff --git a/src/facilities/club/clubFramework.js b/src/facilities/club/clubFramework.js index e34db004dfcebbd2ca273ba0be575a48ed1fb8f8..19bb8d05833876586882ba767e0f60968580b8a6 100644 --- a/src/facilities/club/clubFramework.js +++ b/src/facilities/club/clubFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.club = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.ClubSlutJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/dairy/MilkmaidSelect.js b/src/facilities/dairy/MilkmaidSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..71d0137889fecd798c6cbb54bc5c51b4c76a1903 --- /dev/null +++ b/src/facilities/dairy/MilkmaidSelect.js @@ -0,0 +1,17 @@ +App.Facilities.MilkmaidSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Milkmaid) { + f.append(`${SlaveFullName(S.Milkmaid)} is working as your Milkmaid, looking after your livestock, helping them give milk${V.seeDicks > 0 ? ' and semen' : ''}. `); + f.append(App.UI.DOM.link("Remove Milkmaid", () => { + removeJob(S.Milkmaid, Job.MILKMAID); + }, + [], "Dairy" + )); + } else { + f.append(`No Milkmaid assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.dairy, "Dairy")); + return f; +}; diff --git a/src/facilities/dairy/dairyFramework.js b/src/facilities/dairy/dairyFramework.js index 36515b4243a65a91a71839a295f421b29e24bb6c..3c3b1db0d8054ae929590e721fe46151f87aa6c8 100644 --- a/src/facilities/dairy/dairyFramework.js +++ b/src/facilities/dairy/dairyFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.dairy = { shouldTalk: false, shouldThink: true, requiredDevotion: 21 - } + }, + decorated: true }; App.Entity.Facilities.DairyCowJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/farmyard/FarmerSelect.js b/src/facilities/farmyard/FarmerSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..12e8db3a450746bf8da2218017394d32e94c86c9 --- /dev/null +++ b/src/facilities/farmyard/FarmerSelect.js @@ -0,0 +1,17 @@ +App.Facilities.FarmerSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Farmer) { + f.append(`Farmer: ${SlaveFullName(S.Farmer)}, tends to your crops and animals. `); + f.append(App.UI.DOM.link("Remove Farmer", () => { + removeJob(S.Farmer, Job.FARMER); + }, + [], "Farmyard" + )); + } else { + f.append(`No Farmer assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.farmyard, "Farmyard")); + return f; +}; diff --git a/src/facilities/farmyard/animals/animals.js b/src/facilities/farmyard/animals/animals.js index ad525d0a2b0ace954f0c65352fc9e8c842a10204..fa0b4e0185c6be724ae334e5f7bf7f3e7cf1ad4d 100644 --- a/src/facilities/farmyard/animals/animals.js +++ b/src/facilities/farmyard/animals/animals.js @@ -103,8 +103,8 @@ App.Facilities.Farmyard.animals = function() { const frag = new DocumentFragment(); - const domesticDiv = App.UI.DOM.appendNewElement("div", frag, '', "farmyard-domestic"); - const exoticDiv = App.UI.DOM.appendNewElement("div", frag, '', "farmyard-exotic"); + const domesticDiv = App.UI.DOM.appendNewElement("div", frag, '', 'farmyard-domestic'); + const exoticDiv = App.UI.DOM.appendNewElement("div", frag, '', 'farmyard-exotic'); const hrMargin = '0'; @@ -119,10 +119,10 @@ App.Facilities.Farmyard.animals = function() { V.returnTo = "Farmyard Animals"; V.encyclopedia = "Farmyard"; - App.UI.DOM.appendNewElement("span", domesticDiv, 'Domestic Animals', "farmyard-heading"); + App.UI.DOM.appendNewElement("span", domesticDiv, 'Domestic Animals', 'farmyard-heading'); if (V.farmyardKennels > 1 || V.farmyardStables > 1 || V.farmyardCages > 1) { - App.UI.DOM.appendNewElement("span", exoticDiv, 'Exotic Animals', "farmyard-heading"); + App.UI.DOM.appendNewElement("span", exoticDiv, 'Exotic Animals', 'farmyard-heading'); } if (V.farmyardKennels) { @@ -157,15 +157,15 @@ App.Facilities.Farmyard.animals = function() { - // MARK: Domestic Animals + // Domestic Animals function domesticCanines() { - const canineDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const canineDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", canineDiv, 'Dogs', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", canineDiv, 'Dogs', 'farmyard-animal-type'); canineDiv.append(hr, animalList(canine, domestic, 5000, canine)); @@ -173,12 +173,12 @@ App.Facilities.Farmyard.animals = function() { } function domesticHooved() { - const hoovedDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const hoovedDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", hoovedDiv, 'Hooved Animals', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", hoovedDiv, 'Hooved Animals', 'farmyard-animal-type'); hoovedDiv.append(hr, animalList(hooved, domestic, 20000, hooved)); @@ -186,12 +186,12 @@ App.Facilities.Farmyard.animals = function() { } function domesticFelines() { - const felineDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const felineDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", felineDiv, 'Cats', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", felineDiv, 'Cats', 'farmyard-animal-type'); felineDiv.append(hr, animalList(feline, domestic, 1000, feline)); @@ -200,15 +200,15 @@ App.Facilities.Farmyard.animals = function() { - // MARK: Exotic Animals + // Exotic Animals function exoticCanines() { - const canineDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const canineDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", canineDiv, 'Canines', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", canineDiv, 'Canines', 'farmyard-animal-type'); canineDiv.append(hr, animalList(canine, exotic, 50000, canine)); @@ -216,12 +216,12 @@ App.Facilities.Farmyard.animals = function() { } function exoticHooved() { - const hoovedDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const hoovedDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", hoovedDiv, 'Hooved Animals', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", hoovedDiv, 'Hooved Animals', 'farmyard-animal-type'); hoovedDiv.append(hr, animalList(hooved, exotic, 75000, hooved)); @@ -229,12 +229,12 @@ App.Facilities.Farmyard.animals = function() { } function exoticFelines() { - const felineDiv = App.UI.DOM.makeElement("div", '', "farmyard-animals"); + const felineDiv = App.UI.DOM.makeElement("div", '', 'farmyard-animals'); const hr = document.createElement("hr"); hr.style.margin = hrMargin; - App.UI.DOM.appendNewElement("span", felineDiv, 'Felines', "farmyard-animal-type"); + App.UI.DOM.appendNewElement("span", felineDiv, 'Felines', 'farmyard-animal-type'); felineDiv.append(hr, animalList(feline, exotic, 100000, feline)); @@ -243,7 +243,7 @@ App.Facilities.Farmyard.animals = function() { - // MARK: Helper Functions + // Helper Functions /** * Creates either a link or note text depending on parameters given @@ -316,11 +316,11 @@ App.Facilities.Farmyard.animals = function() { const addAnimalDiv = document.createElement("div"); const dickDiv = document.createElement("div"); const deadlinessDiv = document.createElement("div"); - const addDiv = App.UI.DOM.makeElement("div", null, ["animal-add"]); + const addDiv = App.UI.DOM.makeElement("div", null, ['animal-add']); const animal = new App.Entity.Animal(null, null, "canine", "domestic"); - App.UI.DOM.appendNewElement("div", addAnimalDiv, `Add a New Animal`, ["farmyard-heading"]); + App.UI.DOM.appendNewElement("div", addAnimalDiv, `Add a New Animal`, ['farmyard-heading']); addAnimalDiv.append( name(), @@ -496,13 +496,13 @@ App.Facilities.Farmyard.animals = function() { const dickSizeDiv = document.createElement("div"); dickSizeDiv.append( - `How large is ${animal.name ? `${animal.articleAn} ${animal.name}` : `the animal`}'s dick? `, + `How large is ${animal.name ? `${animal.articleAn} male ${animal.name}` : `a male`}'s penis? `, App.UI.DOM.makeTextBox(animal.dick.size || 2, value => { animal.setDick(value, animal.dick.desc || null); App.UI.DOM.replace(dickSizeDiv, dickSize); }, true), - App.UI.DOM.makeElement("span", `1 is smallest, and default is 2. `, ["note"]), + App.UI.DOM.makeElement("span", `1 is smallest, and default is 2. `, ['note']), ); return dickSizeDiv; @@ -518,7 +518,7 @@ App.Facilities.Farmyard.animals = function() { App.UI.DOM.replace(dickDescDiv, dickDesc); }), - App.UI.DOM.makeElement("span", `Default is 'large'. `, ["note"]), + App.UI.DOM.makeElement("span", `Default is 'large'. `, ['note']), ); return dickDescDiv; @@ -531,7 +531,7 @@ App.Facilities.Farmyard.animals = function() { App.UI.DOM.makeTextBox(5, value => { animal.setDick(value); }, true), - App.UI.DOM.makeElement("span", `Default is 5. `, ["note"]), + App.UI.DOM.makeElement("span", `Default is 5. `, ['note']), ); return deadlinessDiv; @@ -613,7 +613,7 @@ App.Facilities.Farmyard.animals.init = function() { .setDick(5, 'huge'), new Animal("elephant", "elephant", hooved, exotic) .setArticle(an) - .setDick(6, 'enormous'), // not exactly true to life, but more fun + .setDick(6, 'enormous'), // not exactly true to life, but more interesting new Animal("Abbysinian", cat, feline, domestic) .setArticle(an), diff --git a/src/facilities/farmyard/farmerSelect.tw b/src/facilities/farmyard/farmerSelect.tw deleted file mode 100644 index dfaadbb1a96df02ad478825766207ce21efd0ea8..0000000000000000000000000000000000000000 --- a/src/facilities/farmyard/farmerSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Farmer Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Farmyard", $encyclopedia = "Farmer">> -<<if ($FarmerID != 0)>> - <<setLocalPronouns _S.Farmer>> - <span class='slave-name'><<= SlaveFullName(_S.Farmer)>></span> is serving as your Farmer.<br><br>$He will tend to your crops and animals. -<<else>> - You have not selected a Farmer. -<</if>> - -<br><br>''Appoint a Farmer from your obedient slaves:'' -<br><br>[[None|Farmyard][removeJob(_S.Farmer, Job.FARMER)]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.farmyard, "Farmyard")>> diff --git a/src/facilities/farmyard/farmyard.js b/src/facilities/farmyard/farmyard.js index 137e46ac40784b9846bc30fc00c83d41d45c2084..63c2fe6c8abdf7acf72ef666ace27cb27ed7bb9b 100644 --- a/src/facilities/farmyard/farmyard.js +++ b/src/facilities/farmyard/farmyard.js @@ -1,18 +1,21 @@ App.Facilities.Farmyard.farmyard = function() { const frag = new DocumentFragment(); - const introDiv = document.createElement("div"); - const expandDiv = document.createElement("div"); - const menialsDiv = document.createElement("div"); - const rulesDiv = document.createElement("div"); - const upgradesDiv = document.createElement("div"); - const animalsDiv = document.createElement("div"); - const kennelsDiv = document.createElement("div"); - const stablesDiv = document.createElement("div"); - const cagesDiv = document.createElement("div"); - const removeHousingDiv = document.createElement("div"); - - const farmyardNameCaps = capFirstChar(V.farmyardName); + const introDiv = App.UI.DOM.makeElement("div", null, ['farmyard-intro']); + const expandDiv = App.UI.DOM.makeElement("div", null, ['farmyard-expand']); + const menialsDiv = App.UI.DOM.makeElement("div", null, ['farmyard-menials']); + const rulesDiv = App.UI.DOM.makeElement("div", null, ['farmyard-rules']); + const upgradesDiv = App.UI.DOM.makeElement("div", null, ['farmyard-upgrades']); + const kennelsDiv = App.UI.DOM.makeElement("div", null, ['farmyard-kennels']); + const stablesDiv = App.UI.DOM.makeElement("div", null, ['farmyard-stables']); + const cagesDiv = App.UI.DOM.makeElement("div", null, ['farmyard-cages']); + const removeHousingDiv = App.UI.DOM.makeElement("div", null, ['farmyard-remove']); + const renameDiv = App.UI.DOM.makeElement("div", null, ['farmyard-rename']); + const slavesDiv = App.UI.DOM.makeElement("div", null, ['farmyard-slaves']); + + let farmyardNameCaps = capFirstChar(V.farmyardName); + + const count = App.Entity.facilities.farmyard.totalEmployeesCount; V.nextButton = "Back to Main"; V.nextLink = "Main"; @@ -25,200 +28,186 @@ App.Facilities.Farmyard.farmyard = function() { menials(), rules(), upgrades(), - animals(), + kennels(), + stables(), + cages(), + removeHousing(), + rename(), + slaves(), ); - App.UI.DOM.appendNewElement("div", frag, App.UI.SlaveList.stdFacilityPage(App.Entity.facilities.farmyard), "farmyard-slaves"); - - App.UI.SlaveList.ScrollPosition.restore(); - - frag.appendChild(App.Facilities.rename(App.Entity.facilities.farmyard, () => { - App.UI.DOM.replace(introDiv, intro); - App.UI.DOM.replace(expandDiv, expand); - App.UI.DOM.replace(menialsDiv, menials); - App.UI.DOM.replace(rulesDiv, rules); - App.UI.DOM.replace(upgradesDiv, upgrades); - App.UI.DOM.replace(animalsDiv, animals); - })); - return frag; function intro() { - introDiv.classList.add("farmyard-intro", "scene-intro"); + const text = []; - const desc = App.UI.DOM.appendNewElement("div", introDiv, `${farmyardNameCaps} is an oasis of growth in the midst of the jungle of steel and concrete that is ${V.arcologies[0].name}. Animals are kept in pens, tended to by your slaves, while ${V.farmyardUpgrades.hydroponics + text.push(`${farmyardNameCaps} is an oasis of growth in the midst of the jungle of steel and concrete that is ${V.arcologies[0].name}. Animals are kept in pens, tended to by your slaves, while ${V.farmyardUpgrades.hydroponics ? `rows of hydroponics equipment` : `makeshift fields`} grow crops. `); - const count = App.Entity.facilities.farmyard.totalEmployeesCount; - switch (V.farmyardDecoration) { case "Roman Revivalist": - desc.append(`Its red tiles and white stone walls are the very picture of a Roman farm villa's construction, as are the marble statues and reliefs. Saturn and Ceres look over the prosperity of the fields${V.seeBestiality ? `. Mercury watches over the health of the animals, and Feronia ensures strong litters in your slaves.` : `, and Mercury watches over the health of the animals.`} The slaves here are all looked after well, as they have one of the most important jobs in ${V.arcologies[0].name}.`); + text.push(`Its red tiles and white stone walls are the very picture of a Roman farm villa's construction, as are the marble statues and reliefs. Saturn and Ceres look over the prosperity of the fields${V.seeBestiality ? `. Mercury watches over the health of the animals, and Feronia ensures strong litters in your slaves.` : `, and Mercury watches over the health of the animals.`} The slaves here are all looked after well, as they have one of the most important jobs in ${V.arcologies[0].name}.`); break; case "Neo-Imperialist": - desc.append(`Its high-tech, sleek black design invocates an embracement of the future, tempered by the hanging banners displaying your family crest as the rightful lord and master of these farms. Serf-like peasants work tirelessly in the fields, both to grow crops and oversee the slaves beneath them. Despite the harsh nature of the fieldwork, the slaves here are all looked after well, as they have one of the most important jobs in ${V.arcologies[0].name}.`); + text.push(`Its high-tech, sleek black design invocates an embracement of the future, tempered by the hanging banners displaying your family crest as the rightful lord and master of these farms. Serf-like peasants work tirelessly in the fields, both to grow crops and oversee the slaves beneath them. Despite the harsh nature of the fieldwork, the slaves here are all looked after well, as they have one of the most important jobs in ${V.arcologies[0].name}.`); break; case "Aztec Revivalist": - desc.append(`It can't completely recreate the floating farms in the ancient Aztec fashion, but it comes as close as it can, shallow pseudo-canals dividing each field into multiple sections. Smooth stone and colorful murals cover the walls, depicting bloody stories of gods and mortals alike.`); + text.push(`It can't completely recreate the floating farms in the ancient Aztec fashion, but it comes as close as it can, shallow pseudo-canals dividing each field into multiple sections. Smooth stone and colorful murals cover the walls, depicting bloody stories of gods and mortals alike.`); break; case "Egyptian Revivalist": - desc.append(`It does its best to capture the wide open nature of ancient Egyptian farms, including mimicking the irrigation systems fed by the Nile. The stone walls are decorated with murals detailing its construction and your prowess in general, ${V.seeBestiality ? `with animal-bloated slaves featured prominently.` : `hieroglyphs spelling out a volumes of praise.`}`); + text.push(`It does its best to capture the wide open nature of ancient Egyptian farms, including mimicking the irrigation systems fed by the Nile. The stone walls are decorated with murals detailing its construction and your prowess in general, ${V.seeBestiality ? `with animal-bloated slaves featured prominently.` : `hieroglyphs spelling out volumes of praise.`}`); break; case "Edo Revivalist": - desc.append(`It does its best to mimic the rice patties and thatch roofed buildings of the Edo period despite the wide variety of crops tended by various slaves. Not every crop can thrive in flooded fields, but the ones that can take advantage of your attention to detail.`); + text.push(`It does its best to mimic the rice patties and thatch roofed buildings of the Edo period despite the wide variety of crops tended by various slaves. Not every crop can thrive in flooded fields, but the ones that can take advantage of your attention to detail.`); break; case "Arabian Revivalist": - desc.append(`Large plots of olive trees and date palms line the outer edges of the main crop area, while a combination of wheat, flax, and barley occupies the interior space. Irrigation canals snake through the area, ensuring every inch of cropland is well-watered.`); + text.push(`Large plots of olive trees and date palms line the outer edges of the main crop area, while a combination of wheat, flax, and barley occupies the interior space. Irrigation canals snake through the area, ensuring every inch of cropland is well-watered.`); break; case "Chinese Revivalist": - desc.append(`It does its best to capture the terraces that covered the ancient Chinese hills and mountains, turning every floor into ribbons of fields following a slight incline. Slaves wade through crops that can handle flooding and splash through the irrigation of the others when they aren't tending to${V.seeBestiality ? ` or breeding with` : ``} your animals.`); + text.push(`It does its best to capture the terraces that covered the ancient Chinese hills and mountains, turning every floor into ribbons of fields following a slight incline. Slaves wade through crops that can handle flooding and splash through the irrigation of the others when they aren't tending to${V.seeBestiality ? ` or breeding with` : ``} your animals.`); break; case "Chattel Religionist": - desc.append(`It runs like a well oiled machine, slaves bent in humble service as they tend crops grown on the Prophet's command, or see to the animals' needs. Their clothing is tucked up and out of the way as they see to their tasks, keeping them clean as they work ${V.seeBestiality ? `around animal-bloated bellies ` : ``}as divine will dictates.`); + text.push(`It runs like a well oiled machine, slaves bent in humble service as they tend crops grown on the Prophet's command, or see to the animals' needs. Their clothing is tucked up and out of the way as they see to their tasks, keeping them clean as they work ${V.seeBestiality ? `around animal-bloated bellies ` : ``}as divine will dictates.`); break; case "Degradationist": - desc.append(`It is constructed less as a converted warehouse and more as something to visit, allowing guests to enjoy the spectacle of slaves ${V.seeBestiality ? `being pounded by eager animals` : `elbow deep in scrubbing animal waste`} to their satisfaction.`); + text.push(`It is constructed less as a converted warehouse and more as something to visit, allowing guests to enjoy the spectacle of slaves ${V.seeBestiality ? `being pounded by eager animals` : `elbow deep in scrubbing animal waste`} to their satisfaction.`); break; case "Repopulationist": - desc.append(`It teems with life, both in the belly of every animal and the belly of every slave, though the latter makes tending the fields difficult. They're ordered to take care, as they carry the future ${V.seeBestiality ? `of this farm` : `of the arcology`} in their bellies.`); + text.push(`It teems with life, both in the belly of every animal and the belly of every slave, though the latter makes tending the fields difficult. They're ordered to take care, as they carry the future ${V.seeBestiality ? `of this farm` : `of the arcology`} in their bellies.`); break; case "Eugenics": - desc.append(`It holds a wide variety of crops and animals, but the best of the best is easy to find. They're set apart from the others, given only the best care and supplies${V.seeBestiality ? ` and bred with only the highest quality slaves` : ``}, while the sub-par stock is neglected off to the side.`); + text.push(`It holds a wide variety of crops and animals, but the best of the best is easy to find. They're set apart from the others, given only the best care and supplies${V.seeBestiality ? ` and bred with only the highest quality slaves` : ``}, while the sub-par stock is neglected off to the side.`); break; case "Asset Expansionist": - desc.append(`It is not easy to look after animals and till fields with such enormous body parts, but your slaves are diligent regardless, working hard to provide food and livestock for the arcology.`); + text.push(`It is not easy to look after animals and till fields with such enormous body parts, but your slaves are diligent regardless, working hard to provide food and livestock for the arcology.`); break; case "Transformation Fetishist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Gender Radicalist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Gender Fundamentalist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Physical Idealist": - desc.append(`Its animals are in exceptional shape, their coats unable to hide how muscular they are, requiring your slaves to be equally toned to control them. There's plenty of space for their exercise as well${V.seeBestiality ? ` and an abundance of curatives for the slaves full of their fierce, kicking offspring` : ``}.`); + text.push(`Its animals are in exceptional shape, their coats unable to hide how muscular they are, requiring your slaves to be equally toned to control them. There's plenty of space for their exercise as well${V.seeBestiality ? ` and an abundance of curatives for the slaves full of their fierce, kicking offspring` : ``}.`); break; case "Supremacist": - desc.append(`It is a clean and orderly operation, stables and cages mucked by a multitude of inferior slaves, along with grooming your animals and harvesting your crops.`); + text.push(`It is a clean and orderly operation, stables and cages mucked by a multitude of inferior slaves, along with grooming your animals and harvesting your crops.`); break; case "Subjugationist": - desc.append(`It is a clean and orderly operation, stables and cages mucked by a multitude of ${V.arcologies[0].FSSubjugationistRace} slaves, while the others are tasked with grooming your animals and harvesting your crops.`); + text.push(`It is a clean and orderly operation, stables and cages mucked by a multitude of ${V.arcologies[0].FSSubjugationistRace} slaves, while the others are tasked with grooming your animals and harvesting your crops.`); break; case "Paternalist": - desc.append(`It's full of healthy animals, crops, and slaves, the former's every need diligently looked after by the latter. The fields flourish to capacity under such care, and the animals give the distinct impression of happiness${V.seeBestiality ? ` — some more than others if the growing bellies of your slaves are anything to go by, the only indication that such rutting takes place` : ``}.`); + text.push(`It's full of healthy animals, crops, and slaves, the former's every need diligently looked after by the latter. The fields flourish to capacity under such care, and the animals give the distinct impression of happiness${V.seeBestiality ? ` — some more than others if the growing bellies of your slaves are anything to go by, the only indication that such rutting takes place` : ``}.`); break; case "Pastoralist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Maturity Preferentialist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Youth Preferentialist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Body Purist": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Slimness Enthusiast": - desc.append(`It features trim animals and slaves alike, not a pound of excess among them. The feed for both livestock and crops are carefully maintained to ensure optimal growth without waste, letting them flourish without being weighed down.`); + text.push(`It features trim animals and slaves alike, not a pound of excess among them. The feed for both livestock and crops are carefully maintained to ensure optimal growth without waste, letting them flourish without being weighed down.`); break; case "Hedonistic": - desc.append(`It features wider gates and stalls, for both the humans visiting or tending the occupants, and the animals starting to mimic their handlers${V.seeBestiality ? ` and company` : ``}, with plenty of seats along the way.`); + text.push(`It features wider gates and stalls, for both the humans visiting or tending the occupants, and the animals starting to mimic their handlers${V.seeBestiality ? ` and company` : ``}, with plenty of seats along the way.`); break; case "Slave Professionalism": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; case "Intellectual Dependency": - // desc.append(`TODO:`); + // text.push(`TODO:`); break; default: - desc.append(`It is very much a converted warehouse still, sectioned off in various 'departments'${V.farmyardUpgrades.machinery ? ` with machinery placed where it can be` : V.farmyardUpgrades.hydroponics ? ` and plumbing for the hydroponics system running every which way` : ``}.`); + text.push(`It is very much a converted warehouse still, sectioned off in various 'departments'${V.farmyardUpgrades.machinery ? ` with machinery placed where it can be` : V.farmyardUpgrades.hydroponics ? ` and plumbing for the hydroponics system running every which way` : ``}.`); break; } if (count > 2) { - desc.append(` ${farmyardNameCaps} is bustling with activity. Farmhands are hurrying about, on their way to feed animals and maintain farming equipment.`); + text.push(`${farmyardNameCaps} is bustling with activity. Farmhands are hurrying about, on their way to feed animals and maintain farming equipment.`); } else if (count) { - desc.append(` ${farmyardNameCaps} is working steadily. Farmhands are moving about, looking after the animals and crops.`); + text.push(`${farmyardNameCaps} is working steadily. Farmhands are moving about, looking after the animals and crops.`); } else if (S.Farmer) { - desc.append(` ${S.Farmer.slaveName} is alone in ${V.farmyardName}, and has nothing to do but look after the animals and crops.`); + text.push(`${S.Farmer.slaveName} is alone in ${V.farmyardName}, and has nothing to do but look after the animals and crops.`); } else { - desc.append(` ${farmyardNameCaps} is empty and quiet.`); + text.push(`${farmyardNameCaps} is empty and quiet.`); } - App.UI.DOM.appendNewElement("div", desc, App.UI.DOM.passageLink(`Decommission ${V.farmyardName}`, "Main", () => { - if (V.farmMenials) { - V.menials += V.farmMenials; - V.farmMenials = 0; - } + App.UI.DOM.appendNewElement("div", introDiv, text.join(' '), ['scene-intro']); - V.farmyardName = "the Farmyard"; - V.farmyard = 0; - V.farmyardDecoration = "standard"; + if (count === 0) { + App.UI.DOM.appendNewElement("div", introDiv, App.UI.DOM.passageLink(`Decommission ${V.farmyardName}`, "Main", () => { + if (V.farmMenials) { + V.menials += V.farmMenials; + V.farmMenials = 0; + } - V.farmMenials = 0; - V.farmMenialsSpace = 0; + V.farmyardName = "the Farmyard"; + V.farmyard = 0; + V.farmyardDecoration = "standard"; - V.farmyardShows = 0; - V.farmyardBreeding = 0; - V.farmyardCrops = 0; + V.farmMenials = 0; + V.farmMenialsSpace = 0; - V.farmyardKennels = 0; - V.farmyardStables = 0; - V.farmyardCages = 0; + V.farmyardShows = 0; + V.farmyardBreeding = 0; + V.farmyardCrops = 0; - if (V.pit) { - V.pit.animal = null; - } + V.farmyardKennels = 0; + V.farmyardStables = 0; + V.farmyardCages = 0; - V.farmyardUpgrades = { - pump: 0, - fertilizer: 0, - hydroponics: 0, - machinery: 0, - seeds: 0 - }; + if (V.pit) { + V.pit.animal = null; + } - clearAnimalsPurchased(); - App.Arcology.cellUpgrade(V.building, App.Arcology.Cell.Manufacturing, "Farmyard", "Manufacturing"); - })); + V.farmyardUpgrades = { + pump: 0, + fertilizer: 0, + hydroponics: 0, + machinery: 0, + seeds: 0 + }; + + clearAnimalsPurchased(); + App.Arcology.cellUpgrade(V.building, App.Arcology.Cell.Manufacturing, "Farmyard", "Manufacturing"); + }), ['indent']); + } return introDiv; } function expand() { - expandDiv.classList.add("farmyard-expand"); + const cost = Math.trunc(V.farmyard * 1000 * V.upgradeMultiplierArcology); - const upgradeCost = Math.trunc(V.farmyard * 1000 * V.upgradeMultiplierArcology); - const farmhands = App.Entity.facilities.farmyard.totalEmployeesCount; + expandDiv.append(`It can support ${num(V.farmyard)} farmhands. There ${count === 1 ? `is currently ${count} farmhand` : `are currently ${count} farmhands`} in ${V.farmyardName}.`); - App.UI.DOM.appendNewElement('div', expandDiv, `It can support ${V.farmyard} farmhands. Currently there ${farmhands === 1 ? `is` : `are`} ${farmhands} ${farmhands === 1 ? `farmhand` : `farmhands`} in ${V.farmyardName}. `); - - App.UI.DOM.appendNewElement('div', expandDiv, App.UI.DOM.link(`Expand ${V.farmyardName}`, () => { - cashX(forceNeg(upgradeCost), "capEx"); + App.UI.DOM.appendNewElement("div", expandDiv, App.UI.DOM.link(`Expand ${V.farmyardName}`, () => { + cashX(forceNeg(cost), "capEx"); V.farmyard += 5; V.PC.skill.engineering += .1; App.UI.DOM.replace(expandDiv, expand); }, - null, - '', - `Costs ${cashFormat(upgradeCost)} and will increase upkeep costs`), - ['indent']); + [], '', `Costs ${cashFormat(cost)} and increases the capacity of ${V.farmyardName} by 5.`), ['indent']); - if (App.Entity.facilities.farmyard.totalEmployeesCount) { - App.UI.DOM.appendNewElement("div", expandDiv, removeFacilityWorkers("farmyard"), "indent"); + if (count > 0) { + App.UI.DOM.appendNewElement("div", expandDiv, removeFacilityWorkers("farmyard"), 'indent'); } return expandDiv; } function menials() { - menialsDiv.classList.add("farmyard-menials"); - menialsDiv.append(transferMenials(), buyMenials(), houseMenials()); return menialsDiv; @@ -364,120 +353,35 @@ App.Facilities.Farmyard.farmyard = function() { cashX(forceNeg(unitCost), "farmyard"); V.farmMenialsSpace += 100; }, - null, - '', - `Costs ${cashFormat(unitCost)} and will increase upkeep costs`), - ['indent']); + [], '', `Costs ${cashFormat(unitCost)} and increases housing by 100.`), ['indent']); } return frag; } function rules() { - rulesDiv.classList.add("farmyard-rules"); + if (App.Entity.facilities.farmyard.employeesIDs().size > 0 && (V.farmyardKennels || V.farmyardStables || V.farmyardCages)) { // TODO: redo this with V.farmyardShowgirls + const options = new App.UI.OptionsGroup(); - if (App.Entity.facilities.farmyard.employeesIDs().size > 0) { // TODO: redo this with V.farmyardShowgirls - if (V.farmyardShows && (V.canine || V.hooved || V.feline)) { - const rule = makeRule( - ['Slaves', 'are putting on shows with animals'], - 'are', - "End shows", - [], - ["farmyardShows", "farmyardBreeding", "farmyardRestraints"] - ); - - rulesDiv.append(rule); + options.addOption(`Slaves ${V.farmyardShows ? `are` : `are not`} putting on shows.`, "farmyardShows") + .addValue(`Begin shows`, 1) + .addValue(`End shows`, 0); + if (V.farmyardShows && (V.canine || V.hooved || V.feline)) { if (V.seeBestiality) { + options.addOption(`Slaves ${V.farmyardBreeding ? `are` : `are not`} being bred with animals.`, "farmyardBreeding") + .addValue(`Begin breeding`, 1) + .addValue(`End breeding`, 0); + if (V.farmyardBreeding) { - const rule = makeRule( - ['Slaves', 'are being bred with animals'], - 'are', - "End breeding", - ["farmyardShows"], - ["farmyardBreeding", "farmyardRestraints"] - ); - - rulesDiv.append(rule); - - if (V.farmyardRestraints) { - const rule = makeRule( - 'are being restrained', - 'All of the slaves', - "Restrain only disobedient slaves", - ["farmyardShows", "farmyardBreeding"], - ["farmyardRestraints"] - ); - - rulesDiv.append(rule); - } else { - const rule = makeRule( - 'are being restrained', - 'Only disobedient slaves', - "Restrain all slaves", - ["farmyardShows", "farmyardBreeding", "farmyardRestraints"], - [] - ); - - rulesDiv.append(rule); - } - } else { - const rule = makeRule( - ['Slaves', 'being bred with animals'], - 'are not', - "Begin breeding", - ["farmyardShows", "farmyardBreeding"], - ["farmyardRestraints"] - ); - - rulesDiv.append(rule); + options.addOption(`${V.farmyardRestraints ? `All of the slaves` : `Only disobedient slaves`} are being restrained.`, "farmyardRestraints") + .addValue(`Restrain all slaves`, 1) + .addValue(`Restrain only disobedient slaves`, 0); } } - } else { - const rule = makeRule( - ['Slaves', 'putting on shows with animals'], - 'are not', - "Begin shows", - ["farmyardShows"], - ["farmyardBreeding", "farmyardRestraints"] - ); - - rulesDiv.append(rule); - } - } - - /** - * Creates a new rule button - * @param {string|string[]} descText The base description for the rule - * @param {string} boldText The part in bold - * @param {string} linkText The link text - * @param {string[]} enabled Variables to be set to 1 - * @param {string[]} disabled Variables to be set to 0 - */ - function makeRule(descText, boldText, linkText, enabled, disabled) { - const frag = new DocumentFragment(); - - const desc = document.createElement("div"); - const bold = App.UI.DOM.makeElement("span", boldText, "bold"); - const link = document.createElement("span"); - - if (Array.isArray(descText)) { - desc.append(`${descText[0]} `, bold, ` ${descText[1]}. `); - } else { - desc.append(bold, ` ${descText}. `); } - link.append(App.UI.DOM.link(linkText, () => { - enabled.forEach(i => V[i] = 1); - disabled.forEach(i => V[i] = 0); - - App.UI.DOM.replace(rulesDiv, rules); - })); - - desc.append(link); - frag.append(desc); - - return frag; + rulesDiv.append(options.render()); } return rulesDiv; @@ -496,9 +400,9 @@ App.Facilities.Farmyard.farmyard = function() { App.UI.DOM.appendNewElement("div", upgradesDiv, `${farmyardNameCaps} is currently using the basic water pump that it came with.`); upgradesDiv.append(createUpgrade( - "Upgrade the water pump", + `Upgrade the water pump`, pumpCost, - 'slightly decreases upkeep costs', + `slightly decreases upkeep costs`, "pump" )); } else { @@ -506,9 +410,9 @@ App.Facilities.Farmyard.farmyard = function() { if (!farmyardUpgrades.fertilizer) { upgradesDiv.append(createUpgrade( - "Use a higher-quality fertilizer", + `Use a higher-quality fertilizer`, fertilizerCost, - 'moderately increases crop yield and slightly increases upkeep costs', + `moderately increases crop yield and slightly increases upkeep costs`, "fertilizer" )); } else { @@ -516,9 +420,9 @@ App.Facilities.Farmyard.farmyard = function() { if (!farmyardUpgrades.hydroponics) { upgradesDiv.append(createUpgrade( - "Purchase an advanced hydroponics system", + `Purchase an advanced hydroponics system`, hydroponicsCost, - 'moderately decreases upkeep costs', + `moderately decreases upkeep costs`, "hydroponics" )); } else { @@ -526,9 +430,9 @@ App.Facilities.Farmyard.farmyard = function() { if (!farmyardUpgrades.seeds) { upgradesDiv.append(createUpgrade( - "Purchase genetically modified seeds", + `Purchase genetically modified seeds`, seedsCost, - 'moderately increases crop yield and slightly increases upkeep costs', + `moderately increases crop yield and slightly increases upkeep costs`, "seeds" )); } else { @@ -536,9 +440,9 @@ App.Facilities.Farmyard.farmyard = function() { if (!farmyardUpgrades.machinery) { upgradesDiv.append(createUpgrade( - "Upgrade the machinery", + `Upgrade the machinery`, machineryCost, - 'moderately increases crop yield and slightly increases upkeep costs', + `moderately increases crop yield and slightly increases upkeep costs`, "machinery" )); } else { @@ -564,10 +468,7 @@ App.Facilities.Farmyard.farmyard = function() { App.UI.DOM.replace(upgradesDiv, upgrades); }, - null, - '', - `Costs ${cashFormat(price)} and ${effect}.`), - ['indent']); + [], '', `Costs ${cashFormat(price)} and ${effect}.`), ['indent']); return frag; } @@ -575,21 +476,8 @@ App.Facilities.Farmyard.farmyard = function() { return upgradesDiv; } - function animals() { - animalsDiv.classList.add("farmyard-animals"); - - animalsDiv.append(kennels(), stables(), cages()); - - if (V.farmyardKennels || V.farmyardStables || V.farmyardCages) { - animalsDiv.append(removeHousing()); - } - - return animalsDiv; - } - function kennels() { - const baseCost = Math.trunc(5000 * V.upgradeMultiplierArcology); - const upgradedCost = Math.trunc(10000 * V.upgradeMultiplierArcology); + const cost = Math.trunc(5000 * V.upgradeMultiplierArcology); const CL = V.canine.length; @@ -609,29 +497,24 @@ App.Facilities.Farmyard.farmyard = function() { : `all kinds of canines`; if (V.farmyardKennels === 0) { - kennelsDiv.append(App.UI.DOM.link(`Add kennels`, () => { - cashX(forceNeg(baseCost), "farmyard"); + App.UI.DOM.appendNewElement("div", kennelsDiv, App.UI.DOM.link(`Add kennels`, () => { + cashX(forceNeg(cost), "farmyard"); V.farmyardKennels = 1; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(kennelsDiv, kennels); - }, - null, - '', - `Costs ${cashFormat(baseCost)}, will incur upkeep costs, and unlocks domestic canines`)); + refresh(); + }, [], '', `Costs ${cashFormat(cost)}, will incur upkeep costs, and unlocks domestic canines.`), ['indent']); } else if (V.farmyardKennels === 1) { kennelsDiv.append(App.UI.DOM.passageLink("Kennels", "Farmyard Animals"), ` have been built in one corner of ${V.farmyardName}, and are currently ${CL < 1 ? `empty` : `occupied by ${dogs}`}.`); if (V.rep > 10000) { App.UI.DOM.appendNewElement("div", kennelsDiv, App.UI.DOM.link("Upgrade kennels", () => { - cashX(forceNeg(upgradedCost), "farmyard"); + cashX(forceNeg(cost * 2), "farmyard"); V.farmyardKennels = 2; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(kennelsDiv, kennels); - }, - null, - '', - `Costs ${cashFormat(upgradedCost)} will incur additional upkeep costs, and unlocks exotic canines`), - ['indent']); + refresh(); + }, [], '', `Costs ${cashFormat(cost * 2)} will incur additional upkeep costs, and unlocks exotic canines.`), ['indent']); } else { App.UI.DOM.appendNewElement("div", stablesDiv, App.UI.DOM.disabledLink("Upgrade kennels", [`You must be more reputable to be able to house exotic canines.`]), @@ -645,8 +528,7 @@ App.Facilities.Farmyard.farmyard = function() { } function stables() { - const baseCost = Math.trunc(5000 * V.upgradeMultiplierArcology); - const upgradedCost = Math.trunc(10000 * V.upgradeMultiplierArcology); + const cost = Math.trunc(5000 * V.upgradeMultiplierArcology); const HL = V.hooved.length; @@ -657,28 +539,23 @@ App.Facilities.Farmyard.farmyard = function() { if (V.farmyardStables === 0) { App.UI.DOM.appendNewElement("div", stablesDiv, App.UI.DOM.link("Add stables", () => { - cashX(forceNeg(baseCost), "farmyard"); + cashX(forceNeg(cost), "farmyard"); V.farmyardStables = 1; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(stablesDiv, stables); - }, - null, - '', - `Costs ${cashFormat(baseCost)}, will incur upkeep costs, and unlocks domestic hooved animals`)); + refresh(); + }, [], '', `Costs ${cashFormat(cost)}, will incur upkeep costs, and unlocks domestic hooved animals.`), ['indent']); } else if (V.farmyardStables === 1) { stablesDiv.append(App.UI.DOM.passageLink("Stables", "Farmyard Animals"), ` have been built in one corner of ${V.farmyardName}, and are currently ${HL < 1 ? `empty` : `occupied by ${hooved}`}.`); if (V.rep > 10000) { App.UI.DOM.appendNewElement("div", stablesDiv, App.UI.DOM.link("Upgrade stables", () => { - cashX(forceNeg(upgradedCost), "farmyard"); + cashX(forceNeg(cost * 2), "farmyard"); V.farmyardStables = 2; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(stablesDiv, stables); - }, - null, - '', - `Costs ${cashFormat(upgradedCost)}, will incur additional upkeep costs, and unlocks exotic hooved animals`), - ['indent']); + refresh(); + }, [], '', `Costs ${cashFormat(cost * 2)}, will incur additional upkeep costs, and unlocks exotic hooved animals.`), ['indent']); } else { App.UI.DOM.appendNewElement("div", stablesDiv, App.UI.DOM.disabledLink("Upgrade stables", [`You must be more reputable to be able to house exotic hooved animals.`]), @@ -692,8 +569,7 @@ App.Facilities.Farmyard.farmyard = function() { } function cages() { - const baseCost = Math.trunc(5000 * V.upgradeMultiplierArcology); - const upgradedCost = Math.trunc(10000 * V.upgradeMultiplierArcology); + const cost = Math.trunc(5000 * V.upgradeMultiplierArcology); const FL = V.feline.length; @@ -713,29 +589,24 @@ App.Facilities.Farmyard.farmyard = function() { : `all kinds of felines`; if (V.farmyardCages === 0) { - cagesDiv.append(App.UI.DOM.link("Add cages", () => { - cashX(forceNeg(baseCost), "farmyard"); + App.UI.DOM.appendNewElement("div", cagesDiv, App.UI.DOM.link("Add cages", () => { + cashX(forceNeg(cost), "farmyard"); V.farmyardCages = 1; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(cagesDiv, cages); - }, - null, - '', - `Costs ${cashFormat(baseCost)}, will incur upkeep costs, and unlocks domestic felines`)); + refresh(); + }, [], '', `Costs ${cashFormat(cost)}, will incur upkeep costs, and unlocks domestic felines.`), ['indent']); } else if (V.farmyardCages === 1) { cagesDiv.append(App.UI.DOM.passageLink("Cages", "Farmyard Animals"), ` have been built in one corner of ${V.farmyardName}, and are currently ${FL < 1 ? `empty` : `occupied by ${cats}`}.`); if (V.rep > 10000) { App.UI.DOM.appendNewElement("div", cagesDiv, App.UI.DOM.link("Upgrade cages", () => { - cashX(forceNeg(upgradedCost), "farmyard"); + cashX(forceNeg(cost * 2), "farmyard"); V.farmyardCages = 2; + V.PC.skill.engineering += .1; - App.UI.DOM.replace(cagesDiv, cages); - }, - null, - '', - `Costs ${cashFormat(upgradedCost)}, will increase upkeep costs, and unlocks exotic felines`), - ['indent']); + refresh(); + }, [], '', `Costs ${cashFormat(cost * 2)}, will increase upkeep costs, and unlocks exotic felines.`), ['indent']); } else { App.UI.DOM.appendNewElement("div", cagesDiv, App.UI.DOM.disabledLink("Upgrade cages", [`You must be more reputable to be able to house exotic felines.`]), @@ -749,27 +620,25 @@ App.Facilities.Farmyard.farmyard = function() { } function removeHousing() { - removeHousingDiv.classList.add("farmyard-remove"); - - const removeHousingPrice = ((V.farmyardKennels + V.farmyardStables + V.farmyardCages) * 5000) * V.upgradeMultiplierArcology; + const cost = ((V.farmyardKennels + V.farmyardStables + V.farmyardCages) * 5000) * V.upgradeMultiplierArcology; - App.UI.DOM.appendNewElement("div", removeHousingDiv, App.UI.DOM.link("Remove the animal housing", () => { - V.farmyardKennels = 0; - V.farmyardStables = 0; - V.farmyardCages = 0; + if (V.farmyardKennels || V.farmyardStables || V.farmyardCages) { + App.UI.DOM.appendNewElement("div", removeHousingDiv, App.UI.DOM.link("Remove the animal housing", () => { + V.farmyardKennels = 0; + V.farmyardStables = 0; + V.farmyardCages = 0; - V.farmyardShows = 0; - V.farmyardBreeding = 0; - V.farmyardRestraints = 0; + V.farmyardShows = 0; + V.farmyardBreeding = 0; + V.farmyardRestraints = 0; - clearAnimalsPurchased(); - cashX(forceNeg(removeHousingPrice), "farmyard"); + clearAnimalsPurchased(); + cashX(forceNeg(cost), "farmyard"); - App.UI.DOM.replace(removeHousingDiv, removeHousing); - }, - null, - '', - `Will cost ${cashFormat(removeHousingPrice)}`)); + refresh(); + }, + [], '', `Will cost ${cashFormat(cost)}.`), ['indent']); + } return removeHousingDiv; } @@ -783,4 +652,34 @@ App.Facilities.Farmyard.farmyard = function() { V.active.hooved = null; V.active.feline = null; } + + function rename() { + renameDiv.append(frag.appendChild(App.Facilities.rename(App.Entity.facilities.farmyard, () => { + farmyardNameCaps = capFirstChar(V.farmyardName); + + refresh(); + }))); + + return renameDiv; + } + + function slaves() { + slavesDiv.append(App.UI.DOM.appendNewElement("div", frag, App.UI.SlaveList.stdFacilityPage(App.Entity.facilities.farmyard), 'farmyard-slaves')); + + return slavesDiv; + } + + function refresh() { + App.UI.DOM.replace(introDiv, intro); + App.UI.DOM.replace(expandDiv, expand); + App.UI.DOM.replace(menialsDiv, menials); + App.UI.DOM.replace(rulesDiv, rules); + App.UI.DOM.replace(upgradesDiv, upgrades); + App.UI.DOM.replace(kennelsDiv, kennels); + App.UI.DOM.replace(stablesDiv, stables); + App.UI.DOM.replace(cagesDiv, cages); + App.UI.DOM.replace(removeHousingDiv, removeHousing); + App.UI.DOM.replace(renameDiv, rename); + App.UI.DOM.replace(slavesDiv, slaves); + } }; diff --git a/src/facilities/farmyard/farmyard.tw b/src/facilities/farmyard/farmyard.tw deleted file mode 100644 index c7f495ae5e62b3e2b6eb07feb32ee61e6f293d70..0000000000000000000000000000000000000000 --- a/src/facilities/farmyard/farmyard.tw +++ /dev/null @@ -1,7 +0,0 @@ -:: Farmyard [nobr jump-to-safe jump-from-safe] - -/* TODO: add "plots" of "crops" */ -/* TODO: allow slaves that can't walk to put on shows */ -/* TODO: write placeholders */ - -<<includeDOM App.Facilities.Farmyard.farmyard()>> diff --git a/src/facilities/farmyard/farmyardFramework.js b/src/facilities/farmyard/farmyardFramework.js index b79c787e6c8c1c5e224dbe567e50bc4b5ec5d4c1..399caad3194f222d414b4d7d0866f8bc75f9375a 100644 --- a/src/facilities/farmyard/farmyardFramework.js +++ b/src/facilities/farmyard/farmyardFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.farmyard = { shouldTalk: false, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.FarmHandJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/headGirlSuite/headGirlSuiteFramework.js b/src/facilities/headGirlSuite/headGirlSuiteFramework.js index cfc1d1c3e3c05660d37be15d75ccac12c44abe74..ae9d465fd8b0f4adcd058cbb7f45e03c076500d2 100644 --- a/src/facilities/headGirlSuite/headGirlSuiteFramework.js +++ b/src/facilities/headGirlSuite/headGirlSuiteFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.headGirlSuite = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: false }; App.Entity.Facilities.HeadGirlSuite = class extends App.Entity.Facilities.SingleJobFacility { diff --git a/src/facilities/incubator/incubatorFramework.js b/src/facilities/incubator/incubatorFramework.js index 22d9d4bae2006f146dd16321fd9f202ea6aa6669..dce45c6cd6c235338f01d2d59d97953f0ded7dcb 100644 --- a/src/facilities/incubator/incubatorFramework.js +++ b/src/facilities/incubator/incubatorFramework.js @@ -10,7 +10,8 @@ App.Data.Facilities.incubator = { } }, defaultJob: "tank", - manager: null + manager: null, + decorated: false }; App.Entity.Facilities.IncubatorTankJob = class extends App.Entity.Facilities.Job { diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js index 9b57a3fe331332addaf70a257e3c0ce089afaf21..d5b12f2cf04d824b4dd2d60642932a62a84182ef 100644 --- a/src/facilities/incubator/incubatorInteract.js +++ b/src/facilities/incubator/incubatorInteract.js @@ -1566,6 +1566,7 @@ App.UI.incubator = function() { function refresh() { jQuery(settingsContent).empty().append(tankSettings()); jQuery(introSpan).empty().append(intro()); + jQuery(tanksContent).empty().append(tankBabies()); } } diff --git a/src/facilities/masterSuite/ConcubineSelect.js b/src/facilities/masterSuite/ConcubineSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..289eeb32199ebf51d64f3d3ab8f11681c1a0c424 --- /dev/null +++ b/src/facilities/masterSuite/ConcubineSelect.js @@ -0,0 +1,17 @@ +App.Facilities.ConcubineSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Concubine) { + f.append(`${SlaveFullName(S.Concubine)} is your Concubine, taking the lead in seeing to your pleasure. `); + f.append(App.UI.DOM.link("Remove Concubine", () => { + removeJob(S.Concubine, Job.CONCUBINE); + }, + [], "Master Suite" + )); + } else { + f.append(`No Concubine assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.masterSuite, "Master Suite")); + return f; +}; diff --git a/src/facilities/masterSuite/masterSuiteFramework.js b/src/facilities/masterSuite/masterSuiteFramework.js index cdcc7d5f28a3333deb02e45c2f636ded2d546429..83e67a773242e968831fc29ed8c173bd852b533e 100644 --- a/src/facilities/masterSuite/masterSuiteFramework.js +++ b/src/facilities/masterSuite/masterSuiteFramework.js @@ -26,7 +26,8 @@ App.Data.Facilities.masterSuite = { shouldTalk: false, shouldThink: false, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.MasterSuiteFuckToyJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/nursery/MatronSelect.js b/src/facilities/nursery/MatronSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..b67973ca9eaed2e25adadda46e11dfdb0aff50f6 --- /dev/null +++ b/src/facilities/nursery/MatronSelect.js @@ -0,0 +1,17 @@ +App.Facilities.MatronSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Matron) { + f.append(`${SlaveFullName(S.Matron)} is working as your Matron, managing the nursery. `); + f.append(App.UI.DOM.link("Remove Matron", () => { + removeJob(S.Matron, Job.MATRON); + }, + [], "Nursery" + )); + } else { + f.append(`No Matron assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.nursery, "Nursery")); + return f; +}; diff --git a/src/facilities/nursery/matronSelect.tw b/src/facilities/nursery/matronSelect.tw deleted file mode 100644 index 1f00599be61f945e66b825c517dc574407accc5f..0000000000000000000000000000000000000000 --- a/src/facilities/nursery/matronSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Matron Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Nursery", $encyclopedia = "Matron">> -<<if ($MatronID != 0)>> - <<setLocalPronouns _S.Matron>> - <span class='slave-name'><<= SlaveFullName(_S.Matron)>></span> is serving as your Matron.<br><br>$He will manage the nursery. -<<else>> - You have not selected a Matron. -<</if>> - -<br><br>''Appoint a Matron from your devoted slaves:'' -<br><br>[[None|Nursery][removeJob(_S.Matron, Job.MATRON)]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.nursery, "Nursery")>> diff --git a/src/facilities/nursery/nurseryFramework.js b/src/facilities/nursery/nurseryFramework.js index daa83f65ceeb4065faef20f304a1e19b84844514..94597390d5e89097835c89ea7548d6fcbb570ac2 100644 --- a/src/facilities/nursery/nurseryFramework.js +++ b/src/facilities/nursery/nurseryFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.nursery = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.NurseryNannyJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/penthouse/HGSelect.js b/src/facilities/penthouse/HGSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..02eb06ef2e6cad59643d8406b7fb23e9f5c52e55 --- /dev/null +++ b/src/facilities/penthouse/HGSelect.js @@ -0,0 +1,226 @@ +App.Facilities.HGSelect = function() { + let div = document.createElement("div"); + const f = document.createDocumentFragment(); + let r = []; + let links = []; + + App.UI.DOM.appendNewElement("h1", f, "Head Girl Management"); + + if (S.HeadGirl) { + const HGName = SlaveFullName(S.HeadGirl); + const { + His, He, he, + his, him, himself + } = getPronouns(S.HeadGirl); + + f.append(`${SlaveFullName(S.HeadGirl)} is working as your HeadGirl`); + if (V.arcologies[0].FSEgyptianRevivalistLaw === 1) { + f.append(`/Consort; serving and providing comfort, in addition to performing normal Head Girl duties`); + } + f.append(`. `); + if (V.HGSuite) { + f.append(`Currently living in ${capFirstChar(V.HGSuiteName)} `); + } + f.append(App.UI.DOM.link("Remove HeadGirl", () => { + removeJob(S.HeadGirl, Job.HEADGIRL); + }, + [], "Main" + )); + + App.UI.DOM.appendNewElement("div", f, `Slave training ${HGName} will prioritize enabled items in the following order`, "bold"); + + div.append(App.UI.DOM.makeCheckbox("headGirlTrainsHealth"), " Health"); + App.UI.DOM.appendNewElement("div", f, div, "indent"); + + div = document.createElement("div"); + div.append(App.UI.DOM.makeCheckbox("headGirlTrainsParaphilias"), " Paraphilias"); + App.UI.DOM.appendNewElement("div", f, div, "indent"); + + if (V.headGirlTrainsFlaws) { + r.push(`${HGName} will train flaws.`,); + } else if (V.headGirlSoftensFlaws) { + r.push(`${HGName} will softern flaws into quirks.`); + } else if (V.headGirlOverridesQuirks) { + r.push(`${HGName} will override quirks.`); + } else { + r.push(`${HGName} will ignore flaws.`); + } + + links.push(App.UI.DOM.link(" Override quirks", () => { + V.headGirlTrainsFlaws = 0; + V.headGirlSoftensFlaws = 0; + V.headGirlOverridesQuirks = 1; + }, + [], passage() + )); + links.push(App.UI.DOM.link(" Soften flaws", () => { + V.headGirlTrainsFlaws = 0; + V.headGirlSoftensFlaws = 1; + V.headGirlOverridesQuirks = 0; + }, + [], passage() + )); + links.push(App.UI.DOM.link(" Train flaws", () => { + V.headGirlTrainsFlaws = 1; + V.headGirlSoftensFlaws = 0; + V.headGirlOverridesQuirks = 0; + }, + [], passage() + )); + + links.push(App.UI.DOM.link(" Ignore flaws", () => { + V.headGirlTrainsFlaws = 0; + V.headGirlSoftensFlaws = 0; + V.headGirlOverridesQuirks = 0; + }, + [], passage() + )); + + r.push(App.UI.DOM.generateLinksStrip(links)); + App.Events.addNode(f, r, "div", "indent"); + + div = document.createElement("div"); + div.append(App.UI.DOM.makeCheckbox("headGirlTrainsObedience"), " Obedience"); + App.UI.DOM.appendNewElement("div", f, div, "indent"); + + div = document.createElement("div"); + div.append(App.UI.DOM.makeCheckbox("headGirlTrainsSkills"), " Skills"); + App.UI.DOM.appendNewElement("div", f, div, "indent"); + + App.UI.DOM.appendNewElement("div", f, "Training methods: ", "underline"); + + r = []; + if (V.HGSeverity === 1) { + r.push(`${HGName} will be <span class="bold">aggressive</span> when punishing, with rape strongly encouraged.`); + r.push(App.UI.DOM.link(" Moderate", () => { + V.HGSeverity = 0; + }, + [], passage() + )); + } else if (V.HGSeverity === 0) { + links = []; + r.push(`${HGName} will be <span class="bold">moderate</span> when punishing, carefully selecting appropriate consequences.`); + links.push(App.UI.DOM.link(" Be aggressive", () => { + V.HGSeverity = 1; + }, + [], passage() + )); + links.push(App.UI.DOM.link(` Apply restrictions`, () => { + V.HGSeverity = -1; + }, + [], passage() + )); + r.push(App.UI.DOM.generateLinksStrip(links)); + } else if (V.HGSeverity === -1) { + r.push(`${HGName} will be <span class="bold">respectful</span> when punishing, treating slaves decently.`); + r.push(App.UI.DOM.link(" Be stricter", () => { + V.HGSeverity = 0; + }, + [], passage() + )); + } + App.Events.addNode(f, r, "div", "indent"); + + r = []; + if (V.HGPiercings === 1) { + r.push(`${HGName} is <span class="bold">allowed</span> to use piercings as a tool to improve slaves' attitudes.`); + r.push(App.UI.DOM.link(" Disallow", () => { + V.HGPiercings = 0; + }, + [], passage() + )); + } else { + r.push(`${HGName} is <span class="bold">not allowed</span> to use piercings as a tool to improve slaves' attitudes.`); + r.push(App.UI.DOM.link(" Allow", () => { + V.HGPiercings = 1; + }, + [], passage() + )); + } + App.Events.addNode(f, r, "div", "indent"); + + r = []; + App.UI.DOM.appendNewElement("div", f, "Behavior towards you: ", "underline"); + if (V.HGFormality === 1) { + r.push(`${HGName} will be <span class="bold">formal:</span> you will always be called ${getWrittenTitle(S.HeadGirl)}, just like any other slave.`); + r.push(App.UI.DOM.link(" Allow private informality", () => { + V.HGFormality = 0; + }, + [], passage() + )); + } else { + r.push(`${HGName} is allowed to be <span class="bold">informal:</span> in private, you can be called ${properTitle()}.`); + r.push(App.UI.DOM.link(" Maintain complete formality", () => { + V.HGFormality = 1; + }, + [], passage() + )); + } + App.Events.addNode(f, r, "div", "indent"); + + if (V.seePreg !== 0) { + if (V.universalRulesImpregnation === "HG") { + f.append(`${HGName} is responsible for impregnating fertile slaves.`); + V.HGCum = resetHGCum(S.HeadGirl); + if (canPenetrate(S.HeadGirl) && S.HeadGirl.pubertyXY === 1) { + f.append(`To maximize the chances of impregnation, ${he} will fuck fertile pussies frequently during the week. ${S.HeadGirl.slaveName} can service ${V.HGCum} slaves this way.`); + if (S.HeadGirl.devotion > 95) { + f.append(`${He} loves you so much ${he}'ll fuck them until ${he}'s sore.`); + } else { + f.append(`If ${he} were more devoted to you, ${he} might be able to drive ${himself} to get hard and service one more.`); + } + if (S.HeadGirl.balls >= 120) { + r.push(`${His} unreal balls produce nearly an endless supply of semen; ${his} ability to impregnate is almost limitless.`); + } else if (S.HeadGirl.balls >= 80) { + r.push(`${His} inhuman balls produce so much semen ${he} can easily impregnate twenty girls in one sitting.`); + } else if (S.HeadGirl.balls >= 50) { + r.push(`${His} giant balls produce so much semen ${he} can easily impregnate twelve girls in one sitting.`); + } else if (S.HeadGirl.balls >= 25) { + r.push(`${His} oversized balls produce so much semen ${he} can cum repeatedly in a single session.`); + } else if (S.HeadGirl.balls >= 5) { + r.push(`${His} big balls produce so much semen ${he} can cum more before ${he}'s drained.`); + } else { + r.push(`Bigger balls would let ${him} cum more before ${he}'s drained.`); + } + if (S.HeadGirl.health.condition > 95) { + f.append(`${His} wonderful health lets ${him} get hard and stay hard all the time.`); + } else { + f.append(`If ${his} health were perfect, ${he} might be able to get hard more often.`); + } + if (S.HeadGirl.energy > 95) { + f.append(`${His} nymphomania drives ${him} to go above and beyond in this.`); + } else { + f.append(`A more powerful sex drive could reduce ${his} refractory period.`); + } + } else { + f.append(`However, ${S.HeadGirl.slaveName} cannot perform this duty.`); + } + r.push(App.UI.DOM.link(` Rescind ${his} impregnation responsibility`, () => { + V.universalRulesImpregnation = "none"; + }, + [], passage() + )); + r.push(App.UI.DOM.link(` See to it yourself`, () => { + V.universalRulesImpregnation = "PC"; + }, + [], passage() + )); + f.append(App.UI.DOM.generateLinksStrip(r)); + } else { + if (canPenetrate(S.HeadGirl) && S.HeadGirl.pubertyXY === 1) { + App.UI.DOM.appendNewElement("div", f, `${HGName} is capable of impregnating slaves, but it's not part of ${his} responsibilities.`).append( + App.UI.DOM.link(` Assign ${him} to impregnate`, () => { + V.universalRulesImpregnation = "HG"; + }, + [], passage() + )); + } + } + } + } else { + f.append(`No HeadGirl assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.headGirlSuite, "HG Select")); + return f; +}; diff --git a/src/facilities/penthouse/RecruiterSelect.js b/src/facilities/penthouse/RecruiterSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..9ba675579b8ae80e7e84b379c2c7d1548e7907e2 --- /dev/null +++ b/src/facilities/penthouse/RecruiterSelect.js @@ -0,0 +1,162 @@ +App.Facilities.RecruiterSelect = function() { + const f = document.createDocumentFragment(); + const recruiterCap = document.createDocumentFragment(); + let newLine = document.createElement("div"); + let r = []; + + App.UI.DOM.appendNewElement("h1", f, "Recruiter Management"); + + if (S.Recruiter) { + f.append(`${SlaveFullName(S.Recruiter)} is working as your Recruiter, currently ${V.recruiterTarget !== "other arcologies" ? 'recruiting girls. ' : 'acting as a sexual Ambassador'}`); + if (V.recruiterTarget === "other arcologies") { + if (V.arcologies[0].influenceTarget === -1) { + f.append(`.<span class='red'>Since you have not selected another arcology to influence, your recruiter's talents are going to waste. Select an influence target to apply them. `); + } else { + f.append(` to `); + for (const arc of V.arcologies) { + if (arc.direction === V.arcologies[0].influenceTarget) { + f.append(`${arc.name}` ); + break; + } + } + } + } + f.append(App.UI.DOM.link("Remove Recruiter", () => { + removeJob(S.Recruiter, Job.RECRUITER); + }, + [], "Main" + )); + + App.UI.DOM.appendNewElement("div", f); + f.append(`Your recruiter will target ${V.recruiterTarget}, `); + if (V.recruiterTarget === "desperate whores") { + f.append("they will be skilled but unhealthy. "); + } else if (V.recruiterTarget === "young migrants") { + f.append("they will be young and inexperienced but unhealthy. "); + } else if (V.recruiterTarget === "Will be mature") { + f.append("they will be mature. "); + } else if (V.recruiterTarget === "expectant mothers") { + f.append("they will be pregnant and likely unhealthy. "); + } else if (V.recruiterTarget === "dissolute sissies") { + f.append("they will be born male and have some experience. "); + } else if (V.recruiterTarget === "reassignment candidates") { + f.append("they will be born male. "); + } else if (V.recruiterTarget === "other arcologies") { + f.append("they will appoint the Recruiter to be a sexual Ambassador. "); + } + + r.push(App.UI.DOM.link(`Desperate whores`, () => { + V.recruiterTarget = "desperate whores"; + }, + [], passage() + )); + + r.push(App.UI.DOM.link("Young migrants", () => { + V.recruiterTarget = "young migrants"; + }, + [], passage() + )); + + r.push(App.UI.DOM.link("Recent divorcees", () => { + V.recruiterTarget = "recent divorcees"; + }, + [], passage() + )); + + if (V.seeDicks !== 100 && V.seePreg !== 0) { + r.push(App.UI.DOM.link("Expectant mothers", () => { + V.recruiterTarget = "expectant mothers"; + }, + [], passage() + )); + } + + if (V.seeDicks !== 0) { + r.push(App.UI.DOM.link("Dissolute sissies", () => { + V.recruiterTarget = "dissolute sissies"; + }, + [], passage() + )); + + r.push(App.UI.DOM.link("Reassignment candidates", () => { + V.recruiterTarget = "reassignment candidates"; + }, + [], passage() + )); + } + + if (V.arcologies.length > 1) { + r.push(App.UI.DOM.link("Other arcologies' cultures", () => { + V.oldRecruiterTarget = V.recruiterTarget; + V.recruiterTarget = "other arcologies"; + }, + [], passage() + )); + } + + f.append(App.UI.DOM.generateLinksStrip(r)); + + newLine.append(App.UI.DOM.makeCheckbox("recruiterEugenics"), App.UI.DOM.makeElement("note", " Target only individuals that can pass eugenics SMRs. This option will increase time it takes to recruit depending on how many eugenics SMR are active.")); + f.append(newLine); + + let idleTarget = 2 + + (V.brothel + V.club + V.arcade + V.dairy + V.servantsQuarters) + + V.masterSuite + V.HGSuite + V.dojo + V.brothel + V.club; + if (V.dairy && V.dairyRestraintsSetting < 2) { + idleTarget++; + } + idleTarget += V.farmyard + V.servantsQuarters + V.masterSuite + V.schoolroom + V.spa; + idleTarget += V.nursery + V.clinic + V.cellblock; + + newLine = document.createElement("div"); + newLine.append("Suspend active recruiting and focus on publicity when: "); + if (V.recruiterIdleRule === "number") { + newLine.append(`${V.recruiterIdleNumber} sex slaves owned`); + } else if (V.recruiterIdleRule === "facility") { + newLine.append(`match facility expansion, `); + if (idleTarget >= 20) { + newLine.append(`${idleTarget} positions.`); + } else { + newLine.append("20 positions (rule minimum)."); + } + } else { + newLine.append("always recruit"); + } + f.append(newLine); + + r = []; + r.push(App.UI.DOM.link("Always recruit", () => { + V.recruiterIdleRule = "always"; + }, + [], passage() + )); + r.push(App.UI.DOM.link("Facilities & leadership", () => { + V.recruiterIdleRule = "facility"; + }, + [], passage() + )); + + recruiterCap.append(App.UI.DOM.link("Set to this many slaves ", () => { + V.recruiterIdleRule = "number"; + }, + [], passage() + )); + if (V.recruiterIdleRule === "number") { + recruiterCap.append(App.UI.DOM.makeTextBox(V.recruiterIdleNumber, (v) => { + V.recruiterIdleNumber = v; + Engine.play(passage()); + }, true)); + } + r.push(recruiterCap); + + f.append(App.UI.DOM.generateLinksStrip(r)); + App.UI.DOM.appendNewElement("div", f, "'Facilities' doesn't include training slots in cellblock, schoolroom, spa, clinic (but does include those leaders)"); + + V.recruiterIdleNumber = Math.max(Math.trunc(Number(V.recruiterIdleNumber) || 20), 20); + } else { + f.append(`No Recruiter assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.penthouse, "Recruiter Select")); + return f; +}; diff --git a/src/facilities/penthouse/penthouseFramework.js b/src/facilities/penthouse/penthouseFramework.js index b7fa25023b6df5cad44b3e2a6d57d542319290f7..de971b63f50cb9e1eaa743077cec05aaf0c481ae 100644 --- a/src/facilities/penthouse/penthouseFramework.js +++ b/src/facilities/penthouse/penthouseFramework.js @@ -85,7 +85,8 @@ App.Data.Facilities.penthouse = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: false }; App.Entity.Facilities.PenthouseJobs = { diff --git a/src/facilities/pit/pitFramework.js b/src/facilities/pit/pitFramework.js index 88c32bb2f2f30e36a1988674701b6e0ca07fd647..9401caf98b6190bcd06014cbbe54350956456467 100644 --- a/src/facilities/pit/pitFramework.js +++ b/src/facilities/pit/pitFramework.js @@ -11,7 +11,8 @@ App.Data.Facilities.pit = { } }, defaultJob: "fighter", - manager: null + manager: null, + decorated: false }; App.Entity.Facilities.PitFighterJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/salon/salonPassage.js b/src/facilities/salon/salonPassage.js index 50d64781d12252d8674937bd4f9ac27b2f0b348a..c6d257eb7c3561b331f86f9bd422a48b5ea856dc 100644 --- a/src/facilities/salon/salonPassage.js +++ b/src/facilities/salon/salonPassage.js @@ -99,7 +99,7 @@ App.UI.salon = function(slave, cheat = false) { } el.append(options.render()); - el.append(App.Medicine.Salon.ears(slave)); + el.append(App.Medicine.Salon.ears(slave, cheat)); return el; } @@ -515,6 +515,8 @@ App.UI.salon = function(slave, cheat = false) { } el.append(options.render()); + + el.append(App.Medicine.Salon.tail(slave, cheat)); return el; } diff --git a/src/facilities/schoolroom/SchoolTeacherSelect.js b/src/facilities/schoolroom/SchoolTeacherSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..8501f5f29a9768cbdcc22ecc94e6ea93032cf53a --- /dev/null +++ b/src/facilities/schoolroom/SchoolTeacherSelect.js @@ -0,0 +1,17 @@ +App.Facilities.SchoolTeacherSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Schoolteacher) { + f.append(`${SlaveFullName(S.Schoolteacher)} is working as your Schoolteacher, helping to teach your slaves. `); + f.append(App.UI.DOM.link("Remove Schoolteacher", () => { + removeJob(S.Schoolteacher, Job.TEACHER); + }, + [], "Schoolroom" + )); + } else { + f.append(`No Schoolteacher assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.schoolroom, "Schoolroom")); + return f; +}; diff --git a/src/facilities/schoolroom/schoolroomFramework.js b/src/facilities/schoolroom/schoolroomFramework.js index 2770017ce38892cba7f962c7c118b51b94a345cd..0c22037161a18f55bd44bea535b338322133af54 100644 --- a/src/facilities/schoolroom/schoolroomFramework.js +++ b/src/facilities/schoolroom/schoolroomFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.schoolroom = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.SchoolroomStudentJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/servantsQuarters/StewardessSelect.js b/src/facilities/servantsQuarters/StewardessSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..cee631852fc790241f045afac9b051ef59907b21 --- /dev/null +++ b/src/facilities/servantsQuarters/StewardessSelect.js @@ -0,0 +1,17 @@ +App.Facilities.StewardessSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Stewardess) { + f.append(`${SlaveFullName(S.Stewardess)} is working as your Stewardess, managing the Servants' Quarters. `); + f.append(App.UI.DOM.link("Remove Stewardess", () => { + removeJob(S.Stewardess, Job.STEWARD); + }, + [], "Servants' Quarters" + )); + } else { + f.append(`No Stewardess assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.servantsQuarters, "Servants' Quarters")); + return f; +}; diff --git a/src/facilities/servantsQuarters/servantsQuartersFramework.js b/src/facilities/servantsQuarters/servantsQuartersFramework.js index e908720753a47c470b97dd722a3e1bee70473b33..48a10fbb637c1ea7cb5dd3ff5306cc5618fabbc0 100644 --- a/src/facilities/servantsQuarters/servantsQuartersFramework.js +++ b/src/facilities/servantsQuarters/servantsQuartersFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.servantsQuarters = { shouldTalk: true, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.ServantsQuartersServantJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/spa/AttendantSelect.js b/src/facilities/spa/AttendantSelect.js new file mode 100644 index 0000000000000000000000000000000000000000..c5cdd28a9d28036cd504ded8a0fb13773b700983 --- /dev/null +++ b/src/facilities/spa/AttendantSelect.js @@ -0,0 +1,17 @@ +App.Facilities.AttendantSelect = function() { + const f = document.createDocumentFragment(); + + if (S.Attendant) { + f.append(`${SlaveFullName(S.Attendant)} is working as your Attendant, pampering and counseling your slaves. `); + f.append(App.UI.DOM.link("Remove Attendant", () => { + removeJob(S.Attendant, Job.ATTENDANT); + }, + [], "Spa" + )); + } else { + f.append(`No Attendant assigned, appoint one from your devoted slaves.`); + } + + f.append(App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.spa, "Spa")); + return f; +}; diff --git a/src/facilities/spa/spa.js b/src/facilities/spa/spa.js new file mode 100644 index 0000000000000000000000000000000000000000..5b26c11e11ac21035c817657351298257bb84647 --- /dev/null +++ b/src/facilities/spa/spa.js @@ -0,0 +1,246 @@ +App.Facilities.Spa.spa = function() { + const frag = new DocumentFragment(); + + const introDiv = App.UI.DOM.makeElement("div", null, ['spa-intro']); + const expandDiv = App.UI.DOM.makeElement("div", null, ['spa-expand']); + const upgradesDiv = App.UI.DOM.makeElement("div", null, ['spa-upgrades']); + const attendantDiv = App.UI.DOM.makeElement("div", null, ['spa-attendant']); + const slavesDiv = App.UI.DOM.makeElement("div", null, ['spa-slaves']); + const renameDiv = App.UI.DOM.makeElement("div", null, ['spa-rename']); + + let spaNameCaps = capFirstChar(V.spaName); + + const count = App.Entity.facilities.spa.employeesIDs().size; + + V.nextButton = "Back to Main"; + V.nextLink = "Main"; + V.returnTo = "Spa"; + V.encyclopedia = "Spa"; + + frag.append( + intro(), + expand(), + upgrades(), + attendant(), + slaves(), + rename(), + ); + + return frag; + + function intro() { + const text = []; + + const spaUtilization = 1 - (V.spaSpots / (V.spa * 20)); + + text.push(spaNameCaps); + + switch (V.spaDecoration) { + case "Roman Revivalist": + text.push(`is built as a Roman bath. The flooring is pleasantly warm due to a modernized version of hypocaust heating, and is covered in mosaic depicting slaves enjoying sex.`); + break; + case "Neo-Imperialist": + text.push(`is built as a modern Imperial garden. Bright green plants mix with the pulsating lights of high technology, and clear, sleek windows fog up with the steam of a central bath heated by the latest hydraulic technology.`); + break; + case "Aztec Revivalist": + text.push(`is built as an Aztec bathhouse. Water steams from the middle of the room and the air is heavy with the scent of herbs and essences. The idols by the door glisten with moisture.`); + break; + case "Egyptian Revivalist": + text.push(`is decorated like an Egyptian water garden. All but the hottest pools include aquatic plants around their edges, and the atmosphere is heavy with perfume.`); + break; + case "Edo Revivalist": + text.push(`is decorated like a traditional onsen. The stone-lined pools are surrounded by meticulously kept gardens, and there are proper provisions for bathing in the old Japanese style.`); + break; + case "Arabian Revivalist": + text.push(`looks like a dream of an Arabian palace garden. Every surface is richly tiled in vibrant colors, and the beguiling scents of perfumes from the Levant hang in the air.`); + break; + case "Chinese Revivalist": + text.push(`is gloomy and hot, filled with an oppressive steam that immediately dulls the senses. Though relaxation is possible and indeed easy here, it is a stultifying relaxation whose humid warmth seems to suppress independence.`); + break; + case "Chattel Religionist": + text.push(`is dedicated to the purification of the body and the spirit. The pools are arranged for the completion of self-purification procedures which include ritual masturbation.`); + break; + case "Degradationist": + text.push(`is utilitarian. There are waterproof cameras positioned throughout the spa so that anyone who wants to can watch the nude slaves. One wall has a screen showing the current viewer count to keep the slaves aware of this.`); + break; + case "Asset Expansionist": + text.push(`is utilitarian. It is equipped with all sorts of devices to help slaves care for huge assets, including lifts to help them in and out of the water, and all around showers to help clean and moisturize difficult to reach spots.`); + break; + case "Transformation Fetishist": + text.push(`is utilitarian. It is equipped with special devices to help speed surgical recovery, including a series of baths designed to prevent scarring.`); + break; + case "Repopulationist": + text.push(`is comfortable, with waterproof cushions lining the pools. It is equipped with all sorts of devices to aid pregnant slaves, including lifts to help them in and out of the water, baths just for their feet, and all around showers to help clean and moisturize difficult to reach spots.`); + break; + case "Eugenics": + text.push(`is comfortable, albeit split in half. One side for the lower classes' slaves, and the other for the Elite and their pets.`); + break; + case "Gender Radicalist": + text.push(`is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing slave girls with all different varieties of genitalia orgasming from penetration, to keep the idea at the forefront of the slaves' minds.`); + break; + case "Gender Fundamentalist": + text.push(`is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring a lot of beautiful women and handsome men for the slaves' edification.`); + break; + case "Physical Idealist": + text.push(`is not the gym, but it does have some workout equipment, mostly low-impact machines designed to speed recovery. There are special hot baths to ease sore muscles.`); + break; + case "Supremacist": + text.push(`is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring $arcologies[0].FSSupremacistRace main characters.`); + break; + case "Subjugationist": + text.push(`is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring $arcologies[0].FSSubjugationistRace characters in comic relief roles.`); + break; + case "Paternalist": + text.push(`is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment written by and intended for smart, loyal slaves.`); + break; + case "Pastoralist": + text.push(`is utilitarian. It is equipped with all sorts of devices to help slaves care for huge assets, including lifts to help them in and out of the water, and all around showers to help clean and moisturize difficult to reach spots.`); + break; + case "Maturity Preferentialist": + text.push(`is comfortable, but surprisingly businesslike. It's all about beautification here; there's a bewildering array of mud baths, resting pools, and massage setups, all designed to keep mature slaves looking their very best.`); + break; + case "Youth Preferentialist": + text.push(`is comfortable and fun. There are hot tubs and massage tables for slaves who feel like relaxing, but there's also a colder pool with pool toys for slaves who want to play. It even has a small waterslide.`); + break; + case "Body Purist": + text.push(`is comfortable, with waterproof cushions lining the pools. Everything is designed for the slaves' comfort; there are even special mud baths to perfect skin clarity.`); + break; + case "Slimness Enthusiast": + text.push(`is comfortable, with waterproof cushions lining the pools. Everything is designed for the slaves' comfort; there are even special mud baths to perfect skin clarity.`); + break; + case "Hedonistic": + text.push(`is comfortable, with waterproof cushions lining the pools. It is equipped with all sorts of devices to aid hefty slaves, including lifts to help them in and out of the water, specialized moisturizers to keep their skin healthy and smooth, and all around showers to help clean difficult to reach spots and between folds. ${V.arcologies[0].FSHedonisticDecadenceResearch === 1 ? `Platters of food and treats are readily available around the tubs so that relaxing slaves never have to strain to grab a bite to eat` : `Feeders connected to the slave food reserves line the pools so that so that relaxing slaves never have to strain to suck down their fill of food`}.`); + break; + case "Intellectual Dependency": + text.push(`is comfortable, fun and, most importantly, safe; even the dumbest slave can enjoy the pools without worrying their ${properTitle()}. There are screens on the walls showing simple entertainment designed to arouse more than titillate.`); + break; + case "Slave Professionalism": + text.push(`is comfortable, with waterproof cushions lining the pools. It is a place where a weary slave can rest their mind after a hards day's work. There are screens on the walls showing documentaries intended for smart, skilled slaves.`); + break; + case "Petite Admiration": + text.push(`is comfortable, but designed with short slaves in mind. The pools are shallow and easy to slip in and out of; taller slaves are likely to find them more frustrating than enjoyable.`); + break; + case "Statuesque Glorification": + text.push(`is comfortable, but designed with tall slaves in mind. The pools are deep; too deep for a short slave to find relaxing.`); + break; + default: + text.push(`is well-appointed, with massage tables, hot tubs, and a cold pool.`); + break; + } + + if (spaUtilization >= 1) { + text.push(`It's crowded in here. Slaves are relaxing in the warm water, splashing around or just floating. Here and there some of the more sex-starved are in the early stages of intercourse, but most prefer to take time off from it all. Unfortunately there is not enough space for all of your slaves to enjoy the spa.`); + } else if (spaUtilization >= 0.5 || (count / V.spa > 0.5)) { + text.push(`It's busy in here. Slaves are relaxing in the warm water, splashing around or just floating. Here and there some of the more sex-starved are in the early stages of intercourse, but most prefer to take time off from it all.`); + } else if (spaUtilization > 0 || count > 0) { + text.push(`It's sparsely populated; though the few slaves here have little company they like having the water to themselves.`); + } else if (S.Attendant) { + const {his} = getPronouns(S.Attendant); + text.push(`${S.Attendant.slaveName} is alone here, and has nothing to do but keep the place (and ${his} own soft, wet body) spotlessly clean.`); + } else { + text.push(`It's empty and quiet.`); + } + + App.UI.DOM.appendNewElement("div", introDiv, text.join(' '), ['scene-intro']); + + if (count === 0 && !S.Attendant) { + introDiv.append(App.UI.DOM.makeElement("div", App.UI.DOM.passageLink(`Decommission ${V.spaName}`, "Main", () => { + V.spa = 0; + V.spaDecoration = "standard"; + V.spaUpgrade = 0; + V.spaFix = 0; + }), ["indent"])); + } + + return introDiv; + } + + function expand() { + const cost = Math.trunc(V.spa * 1000 * V.upgradeMultiplierArcology); + + expandDiv.append(`${spaNameCaps} can house ${V.spa} slaves while they recuperate here. There ${count === 1 ? `is currently ${count} slave` : `are currently ${count} slaves`} recuperating in ${V.spaName}.`); + + App.UI.DOM.appendNewElement("div", expandDiv, App.UI.DOM.link(`Expand ${V.spaName}`, () => { + cashX(forceNeg(cost), "capEx"); + V.spa += 5; + V.PC.skill.engineering += .1; + + refresh(); + }, [], '', `Costs ${cashFormat(cost)} and increases the capacity of ${V.spaName} by 5.`), ["indent"]); + + if (count > 0) { + expandDiv.append(removeFacilityWorkers("spa", "rest", "rest")); + } + + return expandDiv; + } + + function upgrades() { + if (V.spaUpgrade === 1) { + upgradesDiv.append(`${spaNameCaps} has been upgraded with state of the art temperature treatment options, from hot and cold mineral water pools to baking saunas and dense steam rooms.`); + } else { + const cost = Math.trunc(V.spa * 1000 * V.upgradeMultiplierArcology); + + upgradesDiv.append(`${spaNameCaps} is a standard spa.`); + + App.UI.DOM.appendNewElement("div", upgradesDiv, App.UI.DOM.link(`Upgrade ${V.spaName} with saunas, steam rooms, and mineral water baths`, () => { + cashX(forceNeg(cost), "capEx"); + V.spaUpgrade = 1; + + refresh(); + }, [], '', `Costs ${cashFormat(cost)} and increases the effectiveness of ${V.spaName}.`), ["indent"]); + } + + return upgradesDiv; + } + + function attendant() { + if (S.Attendant) { + const {him, he, his} = getPronouns(S.Attendant); + + const options = new App.UI.OptionsGroup(); + + if (V.spaFix === 2) { + attendantDiv.append(`${S.Attendant.slaveName} is focusing only on the health and wellness of the slaves under ${his} care, obeying your orders to avoid attempting to right mental flaws.`); + } else if (V.spaFix === 1) { + attendantDiv.append(`${S.Attendant.slaveName} is focusing on the health and wellness of the slaves under ${his} care, as well as trying to bring mindbroken slaves back, while ignoring any mental hang-ups a slave may have.`); + } else { + attendantDiv.append(`${S.Attendant.slaveName} is not following any special orders and is tending to your slaves as ${he} sees fit.`); + } + + options.addOption(``, "spaFix") + .addValue(`Order ${him} to not fix any flaws`, 2) + .addValue(`Order ${him} to only fix mindbroken slaves`, 1) + .addValue(`Let ${him} tend as ${he} sees fit`, 0); + + App.UI.DOM.appendNewElement("div", attendantDiv, options.render(), ['indent']); + } + + return attendantDiv; + } + + function slaves() { + slavesDiv.append(App.UI.SlaveList.stdFacilityPage(App.Entity.facilities.spa, true)); + + return slavesDiv; + } + + function rename() { + renameDiv.append(App.Facilities.rename(App.Entity.facilities.spa, () => { + spaNameCaps = capFirstChar(V.spaName); + + refresh(); + })); + + return renameDiv; + } + + function refresh() { + App.UI.DOM.replace(introDiv, intro); + App.UI.DOM.replace(expandDiv, expand); + App.UI.DOM.replace(upgradesDiv, upgrades); + App.UI.DOM.replace(attendantDiv, attendant); + App.UI.DOM.replace(slavesDiv, slaves); + App.UI.DOM.replace(renameDiv, rename); + } +}; diff --git a/src/facilities/spa/spaFramework.js b/src/facilities/spa/spaFramework.js index 02d9f7f0e8f410739a3cc5c44c033bd16a1d9ee0..95012872750b1a9f1bd59dcdcf13595504f43099 100644 --- a/src/facilities/spa/spaFramework.js +++ b/src/facilities/spa/spaFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.spa = { shouldTalk: false, shouldThink: true, requiredDevotion: 51 - } + }, + decorated: true }; App.Entity.Facilities.SpaAssigneeJob = class extends App.Entity.Facilities.FacilitySingleJob { diff --git a/src/facilities/surgery/surgeryPassageLower.js b/src/facilities/surgery/surgeryPassageLower.js index e8a86cf5a433f769a1ece3a60bcfd5b4e08455af..7ece56136cb582772c7e3ec664526a6737277d3a 100644 --- a/src/facilities/surgery/surgeryPassageLower.js +++ b/src/facilities/surgery/surgeryPassageLower.js @@ -487,7 +487,7 @@ App.UI.surgeryPassageLower = function(slave, cheat = false) { surgeryDamage(slave, 1); // Yes, in the TW, it was 1. }, 1, - `This will trick the generator ova release logic, forcing it to release more than one ova each week.This is an untested override and can cause severe health problems` + `This will trick the generator ova release logic, forcing it to release more than one ova each week. This is an untested override and can cause severe health problems.` )); } else if (slave.broodmother === 1 && slave.broodmotherFetuses > 1) { r.push(`The implant firmware has already been adjusted.`); diff --git a/src/facilities/surgery/surgeryPassageStructural.js b/src/facilities/surgery/surgeryPassageStructural.js index ec79ab27381b82cdd64d1187148169a716b17ed9..d8e9f58d21d1d9820837339598d577821240908e 100644 --- a/src/facilities/surgery/surgeryPassageStructural.js +++ b/src/facilities/surgery/surgeryPassageStructural.js @@ -236,7 +236,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) { } else if (slave.heightImplant >= 1) { if (slave.height < (Height.mean(slave) + 15) && V.surgeryUpgrade === 1) { linkArray.push(makeLink( - "Advanced height gain surger", + "Advanced height gain surgery", "height", increaseHeight )); diff --git a/src/futureSocieties/aztec/slaveSacrificePenance.js b/src/futureSocieties/aztec/slaveSacrificePenance.js index ebb90ca7f131e18ecb34c2621dae4074480f1153..0cd5b87b23a060c692708f522335a472bc78f33e 100644 --- a/src/futureSocieties/aztec/slaveSacrificePenance.js +++ b/src/futureSocieties/aztec/slaveSacrificePenance.js @@ -571,7 +571,7 @@ App.UI.SlaveInteract.aztecSlaveSacrificePenance = function(sacrifice) { sacrifice.fetishStrength += 7; } else if (sacrifice.sexualFlaw === "repressed") { sacrifice.fetishStrength -= 2; - // r.push(`The constant shame ${he} was subjected in such a public way made ${him} <span class="devotion dec">trust you less</span> and <span class="devotion inc">hate you more.</span>`); TODO: wrong wrong wrong + // r.push(`The constant shame ${he} was subjected in such a public way made ${him} <span class="devotion dec">trust you less</span> and <span class="devotion inc">hate you more.</span>`); TODO: FIXME } else { sacrifice.devotion -= 5; sacrifice.trust -= 5; diff --git a/src/futureSocieties/fsDecoration.js b/src/futureSocieties/fsDecoration.js index 7861241d48ae57bb351a16903a3729b531e4cb72..9547267c3e33721f2da7da5748a372369fb4455f 100644 --- a/src/futureSocieties/fsDecoration.js +++ b/src/futureSocieties/fsDecoration.js @@ -3,10 +3,6 @@ */ App.UI.facilityRedecoration = function() { const el = new DocumentFragment(); - /** - * @type {Map<string, string>} - */ - const activeFacilities = new Map([]); const options = new App.UI.OptionsGroup(); const arc = V.arcologies[0]; @@ -15,53 +11,7 @@ App.UI.facilityRedecoration = function() { const applicableFS = FutureSocieties.activeFSes(arc).filter(name => (arc[name] > 20)); const decorationNames = Array.from(applicableFS, FS => FutureSocieties.decorationName(FS)).filter(Boolean); - if (V.brothel > 0) { - activeFacilities.set(V.brothelName, "brothelDecoration"); - } - - if (V.club > 0) { - activeFacilities.set(V.clubName, "clubDecoration"); - } - - if (V.dairy > 0) { - activeFacilities.set(V.dairyName, "dairyDecoration"); - } - - if (V.farmyard > 0) { - activeFacilities.set(V.farmyardName, "farmyardDecoration"); - } - - if (V.spa > 0) { - activeFacilities.set(V.spaName, "spaDecoration"); - } - - if (V.nursery > 0) { - activeFacilities.set(V.nurseryName, "nurseryDecoration"); - } - - if (V.clinic > 0) { - activeFacilities.set(V.clinicName, "clinicDecoration"); - } - - if (V.schoolroom > 0) { - activeFacilities.set(V.schoolroomName, "schoolroomDecoration"); - } - - if (V.cellblock > 0) { - activeFacilities.set(V.cellblockName, "cellblockDecoration"); - } - - if (V.servantsQuarters > 0) { - activeFacilities.set(V.servantsQuartersName, "servantsQuartersDecoration"); - } - - if (V.arcade > 0) { - activeFacilities.set(V.arcadeName, "arcadeDecoration"); - } - - if (V.masterSuite > 0) { - activeFacilities.set(V.masterSuiteName, "masterSuiteDecoration"); - } + const activeFacilities = Object.values(App.Entity.facilities).filter(f => f.isDecorated && f.established); // dummy variable to make sure the first option is selected by default const currentSelected = {value: "none"}; @@ -77,10 +27,10 @@ App.UI.facilityRedecoration = function() { let totalCost = 0; if (value === "even") { // Cycles through the list of available FS decorations, and distributes them to facilities round robin style. let i = 0; - for (const decoration of activeFacilities.values()) { - if (V[decoration] !== decorationNames[i]) { + for (const facility of activeFacilities) { + if (facility.decoration !== decorationNames[i]) { totalCost += 5000; - V[decoration] = decorationNames[i]; + facility.decoration = decorationNames[i]; } i++; if (i >= decorationNames.length) { @@ -88,11 +38,11 @@ App.UI.facilityRedecoration = function() { } } } else if (value !== "none") { - for (const decoration of activeFacilities.values()) { + for (const facility of activeFacilities) { if (value !== "standard") { totalCost += 5000; } - V[decoration] = value; + facility.decoration = value; } } if (totalCost > 0) { @@ -100,8 +50,8 @@ App.UI.facilityRedecoration = function() { } }).pulldown(); - for (const [name, decoration] of activeFacilities) { - options.addOption(`The decoration style of ${name} is`, decoration) + for (const facility of activeFacilities) { + options.addOption(`The decoration style of ${facility.name} is`, "decoration", facility) .addValue("Standard", "standard") .addValueList(decorationNames) .addCallbackToEach(value => { diff --git a/src/futureSocieties/futureSociety.js b/src/futureSocieties/futureSociety.js index 91021b60b48376800d0a5bc197d91007d1df6018..be020a5b19869e7ea5ce2a0a4e1f55e4e762ad51 100644 --- a/src/futureSocieties/futureSociety.js +++ b/src/futureSocieties/futureSociety.js @@ -406,47 +406,41 @@ globalThis.FutureSocieties = (function() { /* call as FutureSocieties.DecorationCleanup() */ function DecorationCleanup() { - ValidateFacilityDecoration("brothelDecoration"); - ValidateFacilityDecoration("dairyDecoration"); - ValidateFacilityDecoration("clubDecoration"); - ValidateFacilityDecoration("servantsQuartersDecoration"); - ValidateFacilityDecoration("schoolroomDecoration"); - ValidateFacilityDecoration("spaDecoration"); - ValidateFacilityDecoration("clinicDecoration"); - ValidateFacilityDecoration("arcadeDecoration"); - ValidateFacilityDecoration("cellblockDecoration"); - ValidateFacilityDecoration("masterSuiteDecoration"); - ValidateFacilityDecoration("nurseryDecoration"); - ValidateFacilityDecoration("farmyardDecoration"); + for (const facility of Object.values(App.Entity.facilities).filter(f => f.isDecorated)) { + ValidateFacilityDecoration(facility); + } } /** helper function, not callable externally - * @param {string} decoration should be passed as "facilityDecoration" in quotes. For example, ValidateFacilityDecoration("brothelDecoration"). The quotes are important, do not pass it as a story variable. + * @param {App.Entity.Facilities.Facility} facility */ - function ValidateFacilityDecoration(decoration) { + function ValidateFacilityDecoration(facility) { // Backwards compatibility, do not remove - if (V[decoration] === "Hedonism" || V[decoration] === "Hedonistic Decadence") { - V[decoration] = "Hedonistic"; - } else if (V[decoration] === "Repopulation Focus") { - V[decoration] = "Repopulationist"; - } else if (V[decoration] === "Neo Imperialist") { - V[decoration] = "Neo-Imperialist"; + // @ts-ignore BC + if (facility.decoration === "Hedonism" || facility.decoration === "Hedonistic Decadence") { + facility.decoration = "Hedonistic"; + // @ts-ignore BC + } else if (facility.decoration === "Repopulation Focus") { + facility.decoration = "Repopulationist"; + // @ts-ignore BC + } else if (facility.decoration === "Neo Imperialist") { + facility.decoration = "Neo-Imperialist"; } - const activeFS = DecoToFSMap.get(V[decoration]); // gets the property name + const activeFS = DecoToFSMap.get(facility.decoration); // gets the property name - if (V[decoration] === "standard") { + if (facility.decoration === "standard") { // nothing to do } else if (activeFS === undefined) { // eslint-disable-next-line no-console - console.log(`Error: $${decoration} is ${V[decoration]}`); - V[decoration] = "standard"; + console.log(`Error: ${facility.nameCaps} decoration is ${facility.decoration}`); + facility.decoration = "standard"; } else if (!Number.isFinite(V.arcologies[0][activeFS])) { if (V.arcologies[0][activeFS] !== "unset") { // eslint-disable-next-line no-console console.log(`Error: $arcologies[0].${activeFS} is ${V.arcologies[0][activeFS]}`); } - V[decoration] = "standard"; + facility.decoration = "standard"; } } diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 8bec530a64d37e17818470fdcf6d9474fbbfb5be..edffac124be14157666322313a29a1dee2fa2dcb 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -51,168 +51,9 @@ $encyclopedia <br><<= App.Encyclopedia.Dialog.linkSC("Credits", "Credits")>> </div> -/********** -Design Your Master TODO unify with "Design Your Master" article -**********/ -<<case "Design Your Master in SecExp">> - This happens at the start of a game of FC: it is not possible to change the PC during the main game. The player must select a career background, a rumored method of acquiring the arcology, and their age group; then choose between some broad body and gender options. - - <br><br>''Wealth'' is a choice for both the ''career background'' and ''rumored method of acquiring the arcology'' options. Both provide you with @@.yellowgreen;<<print cashFormat(10000)>>@@ each for a total of @@.yellowgreen;<<print cashFormat(30000)>>@@ if both are chosen. As a ''background option'' it means that your starting slaves will have two free levels of sex skills available and maintaining @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("authority", "Security Expansion")>>@@ will be harder, but upgrades in the propaganda hub will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@. - - <br><br>__Career background options__ - <br>Being an ex- - <br>''business owner'' (also referred to as capitalist) enhances the business-focused personal attention, increasing the @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("money", "Money")>>@@ it produces and improving arcology prosperity when business-focused personal attention is selected. Also, upgrades in the propaganda hub will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@ and your starting slaves will have a free level of prostitution skill available. - Starts having already mastered <<= App.Encyclopedia.Dialog.linkSC("Trading", "PC Skills")>>. - - <br><br>''private security contractor'' (also referred to as a //mercenary background//) greatly reduces the cost of keeping mercenaries in your employ. Upgrades in the security HQ will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>.@@ - Your starting slaves will have free @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ available. - Starts having already mastered <<= App.Encyclopedia.Dialog.linkSC("Warfare", "PC Skills")>>. - - <br><br>''slave driver'' enhances slave-focused personal attention, adding bonus @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>@@ or @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ to many training applications or preventing their loss. @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("Authority", "Security Expansion")>>@@ will be easier to maintain. Plus upgrades in the security HQ will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>.@@ - Starting slaves will be cheaper, in addition having already mastered <<= App.Encyclopedia.Dialog.linkSC("Slaving", "PC Skills")>>. - - <br><br>''arcology engineer'' provides a significant discount on many @@.yellowgreen;arcology upgrades and expansions.@@ In addition to the arcology starting off with @@.green;basic economic upgrades@@ already installed. Starts having already mastered <<= App.Encyclopedia.Dialog.linkSC("Engineering", "PC Skills")>>. - - <br><br>''doctor'' allows the player character to perform surgery personally, providing a @@.yellowgreen;discount on surgery costs@@ and a @@.green;reduction to resulting health damage.@@ Additionally, slaves may react differently to surgery if the player character performs it and starting slaves will have free implants available. Starts having already mastered <<= App.Encyclopedia.Dialog.linkSC("Medicine", "PC Skills")>>. - - <br><br>''escort'' provides a one-time bonus to a slave's entertainment, whoring, and two sexual skills when a new slave is acquired. Furthermore, society will not take lightly to being run by an ex-whore, and you will receive heavy @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ and @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("authority", "Security Expansion")>>@@ losses each week. You can spend your free time selling your body for @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("money", "Money")>>,@@ at the cost of a large amount of @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>.@@ - - <br><br>''celebrity'' provides extra @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ at game start and upgrades in the propaganda hub will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@. - Starting slaves will have a free level of entertainment skill available. - - <br><br>''servant'' provides a one-time bonus to a slave's @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ and @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>.@@ Furthermore, society will not approve of being run by an ex-servant, and you will face @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ and @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("authority", "Security Expansion")>>@@ losses each week. You can spend your free time, putting your previous experience to use, by greatly reducing the costs of your penthouse. You also passively reduce costs when not focusing on doing so. - - <br><br>''gang leader'' provides a one-time bonus to a slave's health and a free level of combat skill. Furthermore, society will not approve of being run by a gang-banger, and you will face @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ losses each week. New slaves will likely have heard of your previous exploits and fear you. - You know how to haggle slaves and assert your @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("authority", "Security Expansion")>>.@@ Plus upgrades in the security HQ will be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@. - You can spend your free time, putting your previous experience to use, proving another source of income however this isn't guaranteed. - - <br><br>''incursion specialist'' provides starting slaves with a free level of @@.cyan;intelligence.@@ Also certain upgrades may be @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@ and you may find alternative approaches to problems, but you will find @@.darkviolet;<<= App.Encyclopedia.Dialog.linkSC("authority", "Security Expansion")>>@@ quite hard to maintain. - Starts having already mastered <<= App.Encyclopedia.Dialog.linkSC("Hacking", "PC Skills")>>. - - <br><br> - <<= App.Encyclopedia.Dialog.linkSC("Hide SecExp details", "Design Your Master")>>. - - <br><br>__Rumored acquisition options__ - <br>''Hard Work'' provides a one-time bonus to both @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>@@ and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ when a new slave is acquired. - - <br><br>''Force'' means that if a slave does not have enough @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>@@ to obey when acquired, this option will terrify her and reduce her @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ to the point where she should comply. - - <br><br>''Social Engineering'' means that you will start with the first societal option unlocked, since you manipulated the arcology's citizens. - - <br><br>''Luck'' provides extra @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ at game start, but no ongoing advantages once the main game begins. - - <br><br>__Age groups__ - <br>Older PCs enjoy easier @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ maintenance, but possess lower <<= App.Encyclopedia.Dialog.linkSC("sexual energy", "Sexual Energy")>> while younger PC's are the opposite. - - <br><br>__Body and gender options__ - <br>All PC body changes will alter scenes, but their main mechanical effect is on @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ maintenance. Feminine options will make it harder to maintain @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ without providing any gameplay advantage, making playing as a feminine PC a form of increased difficulty. There are other minor gameplay differences including differing slave reactions to the PC based on attraction, but these are fairly minor. - /********** BEING IN CHARGE **********/ -<<case "Being in Charge">> - //Future room for lore text// - - <br><br> - Choose a more particular entry below: - <br> - -<<case "Arcologies and Reputation">> - Arcologies are the urban buildings of the future: almost completely self-contained, almost completely self sufficient. In the anarcho-liberal 'paradise' of the Free Cities, as owner of your own arcology you are like a modern-day feudal suzerain, lord and master. - - <br><br>Your arcology is a flared structure, needle thin at the top where you live in your penthouse, and broad at the base. The base below ground contains storage and machinery. The lowest aboveground levels are commercial; above them are the residential areas. The entire structure is jacketed in dense gardens and solar arrays, cleverly structured to create naturally lit corridors and beautiful park-like balconies. - - <br><br>— Owner's Report - - <br><br>//You may wish to improve your arcology, but should be able to ignore its development, if you wish.// - - <br><br>//Your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ is, of course, already quite impressive. The @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ tracked in the sidebar is specifically your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ as a slaveowner. It can be raised through decadent actions that display your munificence and opulence. Some random events can increase it, but the most reliable way to improve your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ is to send sexually skilled slaves out into the arcology to offer free sexual services. This assignment is very similar to prostitution, but produces @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ rather than @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("money", "Money")>>@@.// - - <br><br>//As your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ develops, you may have the opportunity to guide the future of your arcology's society. Successfully doing so will increase your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ in turn, which will duly enable you to further shape society. Managing societal development well will have a recursive effect on your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>,@@ and can drive it to great heights.// - - <br><br>//The benefits of high @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ are numerous. Many business and enslavement opportunities will open to you once you are reputable. Some of the most advanced technology is only available to those with impeccable @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputations", "Arcologies and Reputation")>>@@ as slaveowners, and many of the finer slave markets will only consider reputable buyers. You may eventually become so renowned that merely branding a slave with your mark will increase her value on the open market.// - - <br><br>//However, your @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ will not look after itself. At a certain point, you will become so reputable that continual effort will be necessary to maintain your renown. The old world question "What have you done for me lately?" is asked with twice the force in the Free Cities! You will quickly find that this natural decay of @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ can overwhelm your efforts to improve it by the end of the week. A concerted strategy will be necessary to overcome this.// - - -<<case "Random Events">> - At the end of every turn, a random event may occur. Almost all random events are tied to necessary preconditions. For example, events concerning @@.mediumorchid;<<= App.Encyclopedia.Dialog.linkSC("rebellious", "From Rebellious to Devoted")>>@@ slaves will stop happening if all the player's slaves become obedient. - - <br><br>Usually, a situation will be presented and the player may choose one of two or three resolutions. Please note that the player may also to choose none of these by using the "continue" button in the sidebar; in effect, this usually means the player's character has simply declined to involve himself. - - <br><br>Almost all choices will result in small effects. The most common are changes to a slave's attitude towards the player's character, but there are others. - - <br><br>Finally, there are events that can result in the player being offered the chance to acquire new slaves, some of which can be unique or valuable. Generally, these events offer this livestock at an extremely discounted price. These events will appear more often the higher the player's @@.green;<<= App.Encyclopedia.Dialog.linkSC("reputation", "Arcologies and Reputation")>>@@ becomes. - - -<<case "Costs Summary">> - Aphrodisiacs are @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheap", "Money")>>@@ and cost @@.yellowgreen;<<print cashFormat($drugsCost)>>@@ weekly; curatives are expensive and cost @@.yellowgreen;<<print cashFormat(($drugsCost*3))>>@@ weekly; while all other drug regimes cost @@.yellowgreen;<<print cashFormat(($drugsCost*2))>>.@@ Standard hormone regimens cost @@.yellowgreen;<<print Math.trunc($drugsCost*1*0.5)>>@@ while intensive hormone treatment costs @@.yellowgreen;<<print Math.trunc($drugsCost*2*0.5)>>.@@ Contraceptives cost @@.yellowgreen;<<print Math.trunc($drugsCost*0.5)>>.@@ - - <br><br> - Slaves on spare living standards are fed a bland diet and obliged to sleep on bedrolls. Keeping a slave under restrictive rules costs @@.yellowgreen;<<print cashFormat($rulesCost)>>@@ weekly. - - <br><br> - Slaves enjoying luxurious living standards on the other hand are fed a tasty diet and permitted to sleep in comfortable beds, and are generally pampered. The increased luxury of permissive rules costs @@.yellowgreen;<<print cashFormat(($rulesCost*3))>>@@ weekly. - - <br><br> - Some arcology upgrades may have associated upkeep costs as well. - - -<<case "Rules Assistant">> - ''The Rules Assistant'' is a system to apply multiple rule sets to multiple slaves at once. You can apply rules to slaves based on slave ''@@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>@@'', ''@@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@'', ''sex drive'', ''health'', ''<<= App.Encyclopedia.Dialog.linkSC("weight", "Weight")>>'', ''<<= App.Encyclopedia.Dialog.linkSC("muscles", "Musculature")>>'', ''lactation'', ''pregnancy'', ''number of fetuses'', ''abdominal implants'' and ''age''. - - <br><br>__Rule settings:__ - Rules can be used to control certain aspects of slaves everyday lives, for example to automatically give slaves a certain clothing option, collar, footwear or allow slaves to choose their own outfit. They can be used to give unhealthy slaves curatives to improve their health or to put slaves on a diet so that their <<= App.Encyclopedia.Dialog.linkSC("weight", "Weight")>> can be closer to the ideal weight. Rules set to 'No default setting' will not apply that particular condition to slaves. - Rules can also be renamed to be more indicative of their intended purpose. - - <br><br>__Rule activation:__ - In order to apply a rule to slaves, the activation will need to be set. Choose an activation type (@@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>,@@ @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>,@@ sex drive, <<= App.Encyclopedia.Dialog.linkSC("health", "Health")>>, <<= App.Encyclopedia.Dialog.linkSC("weight", "Weight")>>, <<= App.Encyclopedia.Dialog.linkSC("muscles", "Musculature")>>, lactation, pregnancy, fetuses, implant size, or age) and then choose the level at which to apply. For example to apply a rule to obedient slaves, choose '@@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devotion", "From Rebellious to Devoted")>>@@' for the activation and 4 or more for the lower limit by selecting '>='. - - <br><br>__Selecting or excluding slaves from a rule:__ - Slaves can be selected for a rule by selecting slaves from the list so that a rule can apply only to them. Slaves can similarly be excluded from a rule. - - <br><br>__Applying a rule to specific assignments:__ - You can apply a rule only to slaves on individual assignments by selecting them under 'Apply to assignments'. For example a rule can give aphrodisiacs to slaves on whoring assignments. ''This is mutually exclusive to automatically giving an assignment to slaves''. - - <br><br>__Automatically giving an assignment:__ - A rule can be set to automatically set a slave to an assignment when activated. For example a @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ slave can be set to automatically be put on the whoring assignment. ''This is mutually exclusive to applying a rule to assignments''. - - <br><br>__Applying a rule to facilities:__ - You can apply a rule to slaves in any or all facilities as long as that facility has been constructed. The rule will only apply to slaves within the selected facilities. ''This is mutually exclusive to automatically putting slaves into a facility''. - - <br><br>__Automatically assigning slaves to a facility:__ - A rule can be set to automatically put a slave into a facility when activated. For example disobedient slaves can be set to automatically be confined in the arcade if it has been constructed. ''This is mutually exclusive to applying a rule to facilities''. - - <br><br>__Saving a rule:__ - If you are finished setting up a rule ''make sure to save it'' by clicking 'Save rule' at the bottom before clicking another link otherwise your settings will be lost. - - <br><br>__Applying a rule:__ - Clicking on 'Apply rules' will automatically save the current rule and apply all rules to slaves at once. - - <br><br>__Adding or removing a rule:__ - The game starts with 3 basic default rule settings but more can be added and/or removed as needed. To add a new rule, click 'Add a new rule' at the bottom, removing a rule is the same by clicking 'Remove rule'. - - -<<case "The Corporation">> - Once you are fairly reputable and have a large sum of cash in the bank, you will receive a brief end of turn event that unlocks the ability to found a corporation dedicated to slaving. Once this happens, you can incorporate from the 'Manage Corporation' link on the sidebar, and once you've done that, you can manage your corporation every week from the same place. - - <br><br>__Shares__ - Buying shares from the corporation or issuing new shares will create new shares in the corporation. If you buy them yourself, cash will be transferred from you to the corporation in return for the shares; if you direct the corporation to issue new public shares, @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("money", "Money")>>@@ will come into the corporation from the market. If you direct the corporation to buy back shares from the public, cash will be transferred from the corporation to reduce the number of public shares, which will increase your ownership percentage. You are not permitted to give up majority ownership of the corporation. Selling your shares or buying publicly held shares are both transactions between you and your shares and shareholders and their shares. All transactions impact the stock price. - - <br><br>__Divisions__ - The corporation consists of divisions. Starting up your corporation requires you to choose a single division as starting point and you will be able to expand into linked divisions once you have grown sufficiently in size. There are 3 general categories of divisions; acquisition, modification and exploitation. The first consists of legal and extralegal enslavement and they feed fresh slaves into either your corporation or the market at large. Investing in one of these is a good starting point when slave prices are high. Do note that each slave acquired and sold reduces the demand for slaves on the market. This means little at first, but when large enough will impact the market significantly.<br> - The second category consists of slave breaking, physical slave modifications and slave training. These divisions either take improvable slaves from your acquisition divisions or the slave market and improve them. Slaves can go from breaking to physical modifications to training and become highly valuable slaves by the end of it. If the slave market is balanced or you are looking for a safe initial investment these divisions are a good choice. Their market impact is neutral, buying slaves reduces supply but selling them back onto the market reduces demand by the same amount.<br> - The final category consists of an arcade, menial services, dairy and escort division. These divisions require a particular quality of slave and then put them to work in their respective fields. As these divisions operate they will have to write off some of their slaves and replace them with fresh ones, you can provide these slaves through your acquisition or modification divisions or the market. Whenever prices are low these divisions operate at a higher margin, making them a great first division when slave prices are low. Do note that each slave bought from the market reduces the supply of slaves. As these divisions grow and write off more and more slaves each week, replenishing them from the market will begin to impact the market significantly. - - <br><br>__Management__ - Your first division will automatically buy and/or sell slaves in order to do business and make money. It is up to the player to decide when to expand the division's capacity, but investing aggressively early will pay off in the long run. Once your corporation has gotten a little time to grow its value (the sum of slave value, division value, cash on hand and dividends reserved) the end of week report will prompt you that a new division can be added. This requires a significant cash investment so you may have to save up a little. Adding divisions comes with efficiency benefits, but also adds overhead costs. Adding a second division will hardly slow you down, but as you grow these costs grow ever larger; depending on the number of divisions, but also the size of them.<br> - Any new division will have at least one direct link to your current divisions, meaning it can either use slaves from a division or provide them to another division. New divisions are not automatically set to buy and/or sell slaves from the market. It is expected the player either manually moves slaves between divisions or sets up automatic links between them using several rules.<br> - You have the ability to reduce the size of your divisions or dissolve them entirely. While this only recoups 80% of the investment it may sometimes be prudent to do so, i.e. in case market conditions have become unfavorable for the division and/or overhead costs are becoming oppressively high. Also note that divisions become less efficient the larger they get (even without considering overhead), eventually growing it further will hurt your profit, not improve it. You will want to cut your losses early or otherwise suffer the consequences.<br> - In order to personally benefit monetarily from your corporation you will have to decide how much of its profit will be set aside to be paid out as dividends. Setting low or no dividends allows for rapid development, while siphoning a lot of profits away from the corporation will slow it down significantly. Please note that the corporation does not pay out every week but only every quarter (13 weeks). - - <br><br>__Slave Sales__ - Once a corporation is created, it will get its own establishment in the slave market. As the corporation's value increase, it can be given direction about what kind of slaves it should train and how it should train them, which will affect the slaves seen in the corporate catalog. As with divisions; the higher your corporation's value, the more specializations you are allowed to choose. Your corporation's divisions determine which specialization options are available. Each division has a unique specialization associated with it while many others are slightly more general and linked to either acquisition or modification. All kinds of restrictions may apply depending on Future Society choices and the size of your divisions. Several specializations can be enhanced beyond the first choice, but again you may need to satisfy certain conditions first.<br> - If the corporation's slaves have qualities that make them especially appealing to an arcology's citizens, the corporation will enjoy increased profits, and the <<= App.Encyclopedia.Dialog.linkSC("future society", "Future Societies")>> creating the demand will progress more rapidly due to the supply of appealing slaves. All arcologies present in the Free City will interact with the corporation this way, making shares in a corporation which supplies girls that appeal to the whole city extremely lucrative. <<case "Demand for Sex">> The Free Cities naturally facilitate a healthy sex industry which provides lucrative business opportunities. But you are not the only one who can provide sexual services and you may find yourself in competition for the large, but ultimately limited, amount of sexual desires within the arcology. Clever manipulations can influence both the demand as well as the supply to improve the attractiveness of your arcology and fill your coffers. @@ -223,36 +64,6 @@ BEING IN CHARGE <br><br>Slaves assigned as whores can be used to satisfy any of the different classes of citizens, if they are desirable and skilled enough, that is. Slaves assigned to serve the public are suitable for the sexual relief of the lower half of your citizenry and the arcade generally only serves the very bottom of your arcology. -<<case "Sexual Energy">> - <<setPlayerPronouns>> - Though you're (naturally) a virile, oversexed oligarch, even your reserves of sexual energy are not infinite. They're impressive, but not infinite. Since one turn represents one week, the game does not allow the player direct control over every sexual interaction between the player character and _hisP slaves. Put another way, the game assumes there's an impressive amount of off-screen sex going on between the <<= properMaster()>> and _hisP chattel. - - <br><br>The player character's sexual energy can have gameplay effects. Though of course all slaves are at the <<= properMaster()>>'s sexual beck and call, some assignments and training methods involve close sexual attention by the player character. If a large number of slaves are subject to this, the player character's attention will be somewhat diluted, and the effects on each slave will be reduced. Slaves assigned to be __fucktoys__ and serve in the __master suite__ count towards a hidden estimation of the player character's sexual foci. With two or fewer such slaves, the player character's sexual attention on these slaves will be intense and have intense effects. With five or more, the player character may have some difficulty in using every slave every day, diluting the mental effects of being the <<= properMaster()>>'s personal sex toy. - - <br><br>It is possible to raise these limits by focusing on sexual decadence for the week. By paying less attention to business and not using sexual training on specific slaves, the player character will have more energy to spare and can offer intense sexual attention to three slaves or give sexual attention to up to seven slaves without dilution. - - <br><br>There exist several other ways to raise the player's sexual energy as well. - -<<case "PC Skills">> - <br><br>''Trading'' signifies how efficient you are at making exchanges. Provides more passive income the higher it is. - Can be increased through acquiring slaves. - - <br>''Warfare'' is an indication your combat prowess. Cuts cost of housing mercs in half. - Can be increased through use in relevant situations. - - <br>''Hacking'' is an indication of your effectiveness at manipulating computer systems. Higher levels make technological upgrades @@.yellowgreen;<<= App.Encyclopedia.Dialog.linkSC("cheaper", "Money")>>@@ or free, provides a boost situations where fame is measured digitally. - Can be increased through choosing to 'Sell your intrusion services to the highest bidder' once the option becomes available after having 'some' skill and purchasing technological upgrades. - - <br>''Slaving'' improves your effectiveness as a slave driver. At max level it allows you to more easily spot <<= App.Encyclopedia.Dialog.linkSC("gingering", "Gingering")>>. - Can be increased through acquiring performing the duties of a slave driver. - - <br>''Engineering'' is a sign of how effective you are building and maintenance. Mastering the skill reduces the cost of @@.yellowgreen;arcology upgrades and expansions.@@ - Can be increased through purchasing arcology upgrades or expanding facility capacity. If the <<= App.Encyclopedia.Dialog.linkSC("Security Expansion", "Security Expansion")>> mod is enabled, the skill is also increased by repairing your arcology. - - <br>''Medicine'' shows how effective you are treating wounds. Max level reduces a slave's health and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trust", "Trust")>>@@ loss during surgery. - - In addition to the above methods of increasing a skill (if any), all of them can be learnt by retaining a trainer<<if $SF.Toggle && $SF.Active >= 1>> or by talking to/learning from The Colonel<</if>>. - /********** SLAVES **********/ diff --git a/src/gui/Encyclopedia/encyclopediaBeingInCharge.js b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js new file mode 100644 index 0000000000000000000000000000000000000000..a8c11fcbbd9207d71fb5c45b815c9656c77e4dfb --- /dev/null +++ b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js @@ -0,0 +1,296 @@ +App.Encyclopedia.addArticle("Being in Charge", function() { + const f = new DocumentFragment(); + App.UI.DOM.appendNewElement("p", f, "Future room for lore text", "scene-intro"); + App.UI.DOM.appendNewElement("p", f, "Choose a more particular entry below:"); + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("Arcologies and Reputation", function() { + const f = new DocumentFragment(); + let r; + + App.UI.DOM.appendNewElement("p", f, "Arcologies are the urban buildings of the future: almost completely self-contained, almost completely self sufficient. In the anarcho-liberal 'paradise' of the Free Cities, as owner of your own arcology you are like a modern-day feudal suzerain, lord and master."); + + App.UI.DOM.appendNewElement("p", f, "Your arcology is a flared structure, needle thin at the top where you live in your penthouse, and broad at the base. The base below ground contains storage and machinery. The lowest aboveground levels are commercial; above them are the residential areas. The entire structure is jacketed in dense gardens and solar arrays, cleverly structured to create naturally lit corridors and beautiful park-like balconies."); + + App.UI.DOM.appendNewElement("p", f, "— Owner's Report"); + + const p = document.createElement("p"); + p.classList.add("scene-intro"); + + App.UI.DOM.appendNewElement("p", p, "You may wish to improve your arcology, but should be able to ignore its development, if you wish."); + + r = []; + r.push("Your <span class='reputation inc'>reputation</span> is, of course, already quite impressive. The <span class='reputation inc'>reputation</span> tracked in the sidebar is specifically your <span class='reputation inc'>reputation</span> as a slaveowner. It can be raised through decadent actions that display your munificence and opulence. Some random events can increase it, but the most reliable way to improve your <span class='reputation inc'>reputation</span> is to send sexually skilled slaves out into the arcology to offer free sexual services. This assignment is very similar to prostitution, but produces <span class='reputation inc'>reputation</span> rather than"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("money", "Money"), "."), "cash")); + App.Events.addParagraph(p, r); + + r = []; + r.push("As your <span class='reputation inc'>reputation</span> develops, you may have the opportunity to guide the future of your arcology's society. Successfully doing so will increase your <span class='reputation inc'>reputation</span> in turn, which will duly enable you to further shape society. Managing societal development well will have a recursive effect on your <span class='reputation inc'>reputation,</span> and can drive it to great heights."); + App.Events.addParagraph(p, r); + + r = []; + r.push("The benefits of high <span class='reputation inc'>reputation</span> are numerous. Many business and enslavement opportunities will open to you once you are reputable. Some of the most advanced technology is only available to those with impeccable <span class='reputation inc'>reputations</span> as slaveowners, and many of the finer slave markets will only consider reputable buyers. You may eventually become so renowned that merely branding a slave with your mark will increase her value on the open market."); + App.Events.addParagraph(p, r); + + r = []; + r.push("However, your <span class='reputation inc'>reputation</span> will not look after itself. At a certain point, you will become so reputable that continual effort will be necessary to maintain your renown. The old world question <span class='clear-formatting'>\"What have you done for me lately?\"</span> is asked with twice the force in the Free Cities! You will quickly find that this natural decay of <span class='reputation inc'>reputation</span> can overwhelm your efforts to improve it by the end of the week. A concerted strategy will be necessary to overcome this."); + App.Events.addParagraph(p, r); + f.append(p); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("Random Events", function() { + const f = new DocumentFragment(); + let r; + + r = []; + r.push("At the end of every turn, a random event may occur. Almost all random events are tied to necessary preconditions. For example, events concerning"); + r.push(App.Encyclopedia.Dialog.linkDOM("rebellious", "From Rebellious to Devoted", "devotion resistant")); + r.push("slaves will stop happening if all the player's slaves become obedient."); + App.Events.addParagraph(f, r); + + r = []; + r.push("Usually, a situation will be presented and the player may choose one of two or three resolutions. Please note that the player may also to choose none of these by using the <span class='encyclopedia interaction'>Continue</span> button in the sidebar; in effect, this usually means the player's character has simply declined to involve himself."); + App.Events.addParagraph(f, r); + + r = []; + r.push("Almost all choices will result in small effects. The most common are changes to a slave's attitude towards the player's character, but there are others."); + App.Events.addParagraph(f, r); + + r = []; + r.push("Finally, there are events that can result in the player being offered the chance to acquire new slaves, some of which can be unique or valuable. Generally, these events offer this livestock at an extremely discounted price. These events will appear more often the higher the player's"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("becomes."); + App.Events.addParagraph(f, r); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("Costs Summary", function() { + const f = new DocumentFragment(); + let r; + + const basicDrugCost = 100; + const basicRulesCost = 100; + + r = []; + r.push("Aphrodisiacs are"); + r.push(App.Encyclopedia.Dialog.linkDOM("cheap", "Money", "cash")); + r.push(`and cost <span class='cash'>${cashFormat(basicDrugCost)}</span> weekly; curatives are expensive and cost <span class='cash'>${cashFormat((basicDrugCost * 3))}</span> weekly; while all other drug regimes cost <span class='cash'>${cashFormat((basicDrugCost * 2))}.</span> Standard hormone regimens cost <span class='cash'>${Math.trunc(basicDrugCost * 0.5)}</span> while intensive hormone treatment costs <span class='cash'>${Math.trunc(basicDrugCost * 2 * 0.5)}.</span> Contraceptives cost <span class='cash'>${Math.trunc(basicDrugCost * 0.5)}.</span>`); + App.Events.addParagraph(f, r); + + r = []; + r.push(`Slaves on spare living standards are fed a bland diet and obliged to sleep on bedrolls. Keeping a slave under restrictive rules costs <span class='cash'>${cashFormat(basicRulesCost)}</span> weekly.`); + App.Events.addParagraph(f, r); + + r = []; + r.push(`Slaves enjoying luxurious living standards on the other hand are fed a tasty diet and permitted to sleep in comfortable beds, and are generally pampered. The increased luxury of permissive rules costs <span class='cash'>${cashFormat((basicRulesCost * 3))}</span> weekly.`); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("p", f, "Costs given are only the base costs, they can be affected by a variety of modifiers, for example economy settings, player background and arcology upgrades. Some upgrades may have associated upkeep costs as well."); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("Rules Assistant", function() { + const f = new DocumentFragment(); + let r; + + r = []; + r.push(App.Encyclopedia.topic("The Rules Assistant")); + r.push("is a system to apply multiple rule sets to multiple slaves at once. You can apply rules to slaves based on slave"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted"), ","), ["devotion", "accept"])); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("trust", "Trust"), ","), ["trust", "careful"])); + r.push("sex drive, health,"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("weight", "Weight"), ",")); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("muscles", "Musculature"), ",")); + r.push("lactation, pregnancy, number of fetuses, abdominal implants and age."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Rule settings")); + r.push("Rules can be used to control certain aspects of slaves everyday lives, for example to automatically give slaves a certain clothing option, collar, footwear or allow slaves to choose their own outfit. They can be used to give unhealthy slaves curatives to improve their health or to put slaves on a diet so that their"); + r.push(App.Encyclopedia.Dialog.linkDOM("weight", "Weight")); + r.push("can be closer to the ideal weight. Rules set to <span class='encyclopedia interaction'>No default setting</span> will not apply that particular condition to slaves. Rules can also be renamed to be more indicative of their intended purpose."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Rule activation")); + r.push("In order to apply a rule to slaves, the activation will need to be set. Choose an activation type"); + r.push(App.UI.DOM.combineNodes("(", + App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted"), ","), ["devotion", "accept"]))); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("trust", "Trust"), ","), ["trust", "careful"])); + r.push("sex drive,"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("health", "Health"), ",")); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("weight", "Weight"), ",")); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("muscles", "Musculature"), ",")); + r.push("lactation, pregnancy, fetuses, implant size, or age) and then choose the level at which to apply. For example to apply a rule to obedient slaves, choose"); + r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); + r.push("for the activation and 4 or more for the lower limit by selecting <span class='encyclopedia interaction'>>=</span>."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Selecting or excluding slaves from a rule")); + r.push("Slaves can be selected for a rule by selecting slaves from the list so that a rule can apply only to them. Slaves can similarly be excluded from a rule."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Applying a rule to specific assignments")); + r.push("You can apply a rule only to slaves on individual assignments by selecting them under <span class='encyclopedia interaction'>Apply to assignments.</span> For example a rule can give aphrodisiacs to slaves on whoring assignments. <span class='note'>This is mutually exclusive to automatically giving an assignment to slaves.</span>"); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Automatically giving an assignment")); + r.push("A rule can be set to automatically set a slave to an assignment when activated. For example a"); + r.push(App.Encyclopedia.Dialog.linkDOM("devoted", "From Rebellious to Devoted", "devotion accept")); + r.push("slave can be set to automatically be put on the whoring assignment. <span class='note'>This is mutually exclusive to applying a rule to assignments.</span>"); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Applying a rule to facilities")); + r.push("You can apply a rule to slaves in any or all facilities as long as that facility has been constructed. The rule will only apply to slaves within the selected facilities. <span class='note'>This is mutually exclusive to automatically putting slaves into a facility.</span>"); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Automatically assigning slaves to a facility")); + r.push("A rule can be set to automatically put a slave into a facility when activated. For example disobedient slaves can be set to automatically be confined in the arcade if it has been constructed. <span class='note'>This is mutually exclusive to applying a rule to facilities.</span>"); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Saving a rule")); + r.push("If you are finished setting up a rule <em>make sure to save it</em> by clicking <span class='encyclopedia interaction'>Save rule</span> at the bottom before clicking another link otherwise your settings will be lost."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Applying a rule")); + r.push("Clicking on <span class='encyclopedia interaction'>Apply rules</span> will automatically save the current rule and apply all rules to slaves at once."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Adding or removing a rule")); + r.push("The game starts with 3 basic default rule settings but more can be added and/or removed as needed. To add a new rule, click <span class='encyclopedia interaction'>Add a new rule</span> at the bottom, removing a rule is the same by clicking <span class='encyclopedia interaction'>Remove rule</span>."); + App.Events.addParagraph(f, r); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("The Corporation", function() { + const f = new DocumentFragment(); + let r; + + r = []; + r.push("Once you are fairly reputable and have a large sum of cash in the bank, you will receive a brief end of turn event that unlocks the ability to found a corporation dedicated to slaving. Once this happens, you can incorporate from the <span class='encyclopedia interaction'>Manage Corporation</span> link on the sidebar, and once you've done that, you can manage your corporation every week from the same place."); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("h3", f, "Shares"); + r = []; + r.push("Buying shares from the corporation or issuing new shares will create new shares in the corporation. If you buy them yourself, cash will be transferred from you to the corporation in return for the shares; if you direct the corporation to issue new public shares,"); + r.push(App.Encyclopedia.Dialog.linkDOM("money", "Money", "cash")); + r.push("will come into the corporation from the market. If you direct the corporation to buy back shares from the public, cash will be transferred from the corporation to reduce the number of public shares, which will increase your ownership percentage. You are not permitted to give up majority ownership of the corporation. Selling your shares or buying publicly held shares are both transactions between you and your shares and shareholders and their shares. All transactions impact the stock price."); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("h3", f, "Divisions"); + App.UI.DOM.appendNewElement("p", f, "The corporation consists of divisions. Starting up your corporation requires you to choose a single division as starting point and you will be able to expand into linked divisions once you have grown sufficiently in size. There are 3 general categories of divisions; acquisition, modification and exploitation. The first consists of legal and extralegal enslavement and they feed fresh slaves into either your corporation or the market at large. Investing in one of these is a good starting point when slave prices are high. Do note that each slave acquired and sold reduces the demand for slaves on the market. This means little at first, but when large enough will impact the market significantly."); + App.UI.DOM.appendNewElement("p", f, "The second category consists of slave breaking, physical slave modifications and slave training. These divisions either take improvable slaves from your acquisition divisions or the slave market and improve them. Slaves can go from breaking to physical modifications to training and become highly valuable slaves by the end of it. If the slave market is balanced or you are looking for a safe initial investment these divisions are a good choice. Their market impact is neutral, buying slaves reduces supply but selling them back onto the market reduces demand by the same amount."); + App.UI.DOM.appendNewElement("p", f, "The final category consists of an arcade, menial services, dairy and escort division. These divisions require a particular quality of slave and then put them to work in their respective fields. As these divisions operate they will have to write off some of their slaves and replace them with fresh ones, you can provide these slaves through your acquisition or modification divisions or the market. Whenever prices are low these divisions operate at a higher margin, making them a great first division when slave prices are low. Do note that each slave bought from the market reduces the supply of slaves. As these divisions grow and write off more and more slaves each week, replenishing them from the market will begin to impact the market significantly."); + + App.UI.DOM.appendNewElement("h3", f, "Management"); + App.UI.DOM.appendNewElement("p", f, "Your first division will automatically buy and/or sell slaves in order to do business and make money. It is up to you to decide when to expand the division's capacity, but investing aggressively early will pay off in the long run. Once your corporation has gotten a little time to grow its value (the sum of slave value, division value, cash on hand and dividends reserved) the end of week report will prompt you that a new division can be added. This requires a significant cash investment so you may have to save up a little. Adding divisions comes with efficiency benefits, but also adds overhead costs. Adding a second division will hardly slow you down, but as you grow these costs grow ever larger; depending on the number of divisions, but also the size of them."); + App.UI.DOM.appendNewElement("p", f, "Any new division will have at least one direct link to your current divisions, meaning it can either use slaves from a division or provide them to another division. New divisions are not automatically set to buy and/or sell slaves from the market. It is expected you either manually move slaves between divisions or sets up automatic links between them using several rules."); + App.UI.DOM.appendNewElement("p", f, "You have the ability to reduce the size of your divisions or dissolve them entirely. While this only recoups 80% of the investment it may sometimes be prudent to do so, i.e. in case market conditions have become unfavorable for the division and/or overhead costs are becoming oppressively high. Also note that divisions become less efficient the larger they get (even without considering overhead), eventually growing it further will hurt your profit, not improve it. You will want to cut your losses early or otherwise suffer the consequences."); + App.UI.DOM.appendNewElement("p", f, "In order to personally benefit monetarily from your corporation you will have to decide how much of its profit will be set aside to be paid out as dividends. Setting low or no dividends allows for rapid development, while siphoning a lot of profits away from the corporation will slow it down significantly. Please note that the corporation does not pay out every week but only every quarter (13 weeks)."); + + App.UI.DOM.appendNewElement("h3", f, "Slave Sales"); + App.UI.DOM.appendNewElement("p", f, "Once a corporation is created, it will get its own establishment in the slave market. As the corporation's value increase, it can be given direction about what kind of slaves it should train and how it should train them, which will affect the slaves seen in the corporate catalog. As with divisions; the higher your corporation's value, the more specializations you are allowed to choose. Your corporation's divisions determine which specialization options are available. Each division has a unique specialization associated with it while many others are slightly more general and linked to either acquisition or modification. All kinds of restrictions may apply depending on Future Society choices and the size of your divisions. Several specializations can be enhanced beyond the first choice, but again you may need to satisfy certain conditions first."); + r = []; + r.push("If the corporation's slaves have qualities that make them especially appealing to an arcology's citizens, the corporation will enjoy increased profits, and the"); + r.push(App.Encyclopedia.Dialog.linkDOM("future society", "Future Societies")); + r.push("creating the demand will progress more rapidly due to the supply of appealing slaves. All arcologies present in the Free City will interact with the corporation this way, making shares in a corporation which supplies girls that appeal to the whole city extremely lucrative."); + App.Events.addParagraph(f, r); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("Sexual Energy", function() { + const f = new DocumentFragment(); + let r; + + App.UI.DOM.appendNewElement("p", f, `Though you're (naturally) a virile, oversexed oligarch, even your reserves of sexual energy are not infinite. They're impressive, but not infinite. Since one turn represents one week, the game does not allow you direct control over every sexual interaction between you character and your slaves. Put another way, the game assumes there's an impressive amount of off-screen sex going on between the you and your chattel.`); + + r = []; + r.push(`Your sexual energy can have gameplay effects. Though of course all slaves are at the owner's sexual beck and call, some assignments and training methods involve close sexual attention by yourself. If a large number of slaves are subject to this, your attention will be somewhat diluted, and the effects on each slave will be reduced. Slaves assigned to be <em>fucktoys</em> and serve in the <em>master suite</em> count towards a hidden estimation of your sexual foci. With two or fewer such slaves, the your sexual attention on these slaves will be intense and have intense effects. With five or more, the you may have some difficulty in using every slave every day, diluting the mental effects of being one's personal sex toy.`); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("p", f, `It is possible to raise these limits by focusing on sexual decadence for the week. By paying less attention to business and not using sexual training on specific slaves, you will have more energy to spare and can offer intense sexual attention to three slaves or give sexual attention to up to seven slaves without dilution.`); + + App.UI.DOM.appendNewElement("p", f, `There exist several other ways to raise your sexual energy as well.`); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addArticle("PC Skills", function() { + const f = new DocumentFragment(); + let r; + + r = []; + r.push(App.Encyclopedia.topic("Trading")); + r.push("signifies how efficient you are at making exchanges. Provides more passive income the higher it is. Can be increased through acquiring slaves."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Warfare")); + r.push("is an indication your combat prowess. Cuts cost of housing mercs in half. Can be increased through use in relevant situations."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Hacking")); + r.push("is an indication of your effectiveness at manipulating computer systems. Higher levels make technological upgrades"); + r.push(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money", "cash")); + r.push("or free, provides a boost situations where fame is measured digitally. Can be increased through choosing to <span class='encyclopedia interaction'>Sell your intrusion services to the highest bidder</span> once the option becomes available after having <em>some</em> skill and purchasing technological upgrades."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Slaving")); + r.push("improves your effectiveness as a slave driver. At max level it allows you to more easily spot"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("gingering", "Gingering"), ".")); + r.push("Can be increased through acquiring performing the duties of a slave driver."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Engineering")); + r.push("is a sign of how effective you are building and maintenance. Mastering the skill reduces the cost of <span class='cash'>arcology upgrades and expansions.</span> Can be increased through purchasing arcology upgrades or expanding facility capacity. If the"); + r.push(App.Encyclopedia.Dialog.linkDOM("Security Expansion", "Security Expansion")); + r.push("mod is enabled, the skill is also increased by repairing your arcology."); + App.Events.addParagraph(f, r); + + r = []; + r.push(App.Encyclopedia.topic("Medicine")); + r.push("shows how effective you are treating wounds. Max level reduces a slave's health and"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); + r.push("loss during surgery."); + App.Events.addParagraph(f, r); + + r = []; + r.push("In addition to the above methods of increasing a skill (if any), all of them can be learnt by retaining a trainer"); + if (V.SF.Toggle && V.SF.Active >= 1) { + r.push("or by talking to/learning from The Colonel"); + } + r.push(r.pop() + "."); + App.Events.addParagraph(f, r); + + return f; +}, "beingInCharge"); + +App.Encyclopedia.addCategory("beingInCharge", function() { + const links = []; + links.push(App.Encyclopedia.Dialog.linkDOM("Arcologies and Reputation", "Arcologies and Reputation")); + links.push(App.Encyclopedia.Dialog.linkDOM("Random Events", "Random Events")); + links.push(App.Encyclopedia.Dialog.linkDOM("Costs Summary", "Costs Summary")); + links.push(App.Encyclopedia.Dialog.linkDOM("Rules Assistant", "Rules Assistant")); + links.push(App.Encyclopedia.Dialog.linkDOM("The Corporation", "The Corporation")); + links.push(App.Encyclopedia.Dialog.linkDOM("Sexual Energy", "Sexual Energy")); + links.push(App.Encyclopedia.Dialog.linkDOM("PC Skills", "PC Skills")); + return App.UI.DOM.generateLinksStrip(links); +}); diff --git a/src/gui/Encyclopedia/encyclopediaBody.js b/src/gui/Encyclopedia/encyclopediaBody.js index ff8f91b403040c29dec8c5f8a6f56ec5a1111d35..79a36bb0b964819483a0142c58cfdbed9dadeee7 100644 --- a/src/gui/Encyclopedia/encyclopediaBody.js +++ b/src/gui/Encyclopedia/encyclopediaBody.js @@ -279,20 +279,20 @@ App.Encyclopedia.addArticle("Ovaries", function() { }, "body"); App.Encyclopedia.addArticle("Pregnancy", function() { - return App.UI.DOM.combineNodes( - `Slaves require both `, - App.Encyclopedia.Dialog.linkDOM("vaginas", "Vaginas"), - ` and `, - App.Encyclopedia.Dialog.linkDOM("ovaries", "Ovaries"), - ` to become`, - App.Encyclopedia.topic("pregnant."), - `However, it's rumored that Gender Radicalist societies have developed a method for `, - App.Encyclopedia.Dialog.linkDOM("male impregnation", "Gender Radicalism Research"), - `. Fertile slaves can be impregnated by the player character or a slave with `, - App.Encyclopedia.Dialog.linkDOM("testicles", "Testicles"), - ` from the fertile slave's individual menu. Otherwise, slaves with vaginas and ovaries who aren't wearing chastity belts or taking contraceptives, and have not had their tubes tied via surgery, will likely become pregnant if performing sexual jobs or if allowed to have sex with slaves with balls. Pregnancy has a number of minor physical effects and will induce `, - App.Encyclopedia.Dialog.linkDOM("lactation", "Lactation") - ); + const fragment = new DocumentFragment(); + let r = []; + r.push(`Slaves require both`); + r.push(App.Encyclopedia.Dialog.linkDOM("vaginas", "Vaginas")); + r.push(`and`); + r.push(App.Encyclopedia.Dialog.linkDOM("ovaries", "Ovaries")); + r.push(`to become pregnant. However, it's rumored that Gender Radicalist societies have developed a method for `); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("male impregnation", "Gender Radicalism Research"), ".")); + r.push(`Fertile slaves can be impregnated by the player character or a slave with`); + r.push(App.Encyclopedia.Dialog.linkDOM("testicles", "Testicles")); + r.push(`from the fertile slave's individual menu. Otherwise, slaves with vaginas and ovaries who aren't wearing chastity belts or taking contraceptives, and have not had their tubes tied via surgery, will likely become pregnant if performing sexual jobs or if allowed to have sex with slaves with balls. Pregnancy has a number of minor physical effects and will induce`); + r.push(App.Encyclopedia.Dialog.linkDOM("lactation", "Lactation")); + App.Events.addParagraph(fragment, r); + return fragment; }, "body"); App.Encyclopedia.addArticle("Skin Distinctions", function() { diff --git a/src/gui/Encyclopedia/encyclopediaGuide.js b/src/gui/Encyclopedia/encyclopediaGuide.js index c24e5237ad0681ccbbf56e62020b36f3cf005532..709fa33450b06f95dd3edf6a60b4e54590aaec48 100644 --- a/src/gui/Encyclopedia/encyclopediaGuide.js +++ b/src/gui/Encyclopedia/encyclopediaGuide.js @@ -327,152 +327,228 @@ App.Encyclopedia.addArticle("Tips and Tricks", function() { }, "guide"); App.Encyclopedia.addArticle("Design Your Master", function() { - const f = new DocumentFragment(); - let r; - - r = []; - r.push("This happens at the start of a game of FC: it is not possible to change the PC during the main game. The player must select a career background, a rumored method of acquiring the arcology, and their age group; then choose between some broad body and gender options."); - App.Events.addParagraph(f, r); - - r = []; - r.push(`<strong>Wealth</strong> is a choice for both the <strong>career background</strong> and <strong>rumored method of acquiring the arcology</strong> options. Both provide you with <span class="cash">${cashFormat(10000)}</span> each for a total of <span class="cash">${cashFormat(30000)}</span> if both are chosen. As a <strong>background option</strong> it means that your starting slaves will have two free levels of sex skills available.`); - App.Events.addParagraph(f, r); - - App.UI.DOM.appendNewElement("h3", f, "Career background options"); - const p = document.createElement("p"); - p.append("Being an ex-"); - let ul = document.createElement("ul"); - - r = []; - r.push("<strong>business owner</strong> <span class='note'>(also referred to as capitalist)</span> enhances the business-focused personal attention, increasing the"); - r.push(App.Encyclopedia.Dialog.linkDOM("money", "Money", "cash")); - r.push("it produces and improving arcology prosperity when business-focused personal attention is selected. Also, your starting slaves will have a free level of prostitution skill available. Starts having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Trading", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>private security contractor</strong> <span class='note'>(also referred to as mercenary background)</span> greatly reduces the cost of keeping mercenaries in your employ. Your starting slaves will have free"); - r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); - r.push("available. Starts having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Warfare", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>slave driver</strong> enhances slave-focused personal attention, adding bonus"); - r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); - r.push("or"); - r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); - r.push("to many training applications or preventing their loss. Starting slaves will be cheaper, in addition having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Slaving", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>arcology engineer</strong> provides a significant discount on many <span class='cash'>arcology upgrades and expansions.</span> In addition to the arcology starting off with <span class='positive'>basic economic upgrades</span> already installed. Starts having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Engineering", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>doctor</strong> allows the player character to perform surgery personally, providing a <span class='cash'>discount on surgery costs</span> and a <span class='positive'>reduction to resulting health damage.</span> Additionally, slaves may react differently to surgery if the player character performs it and starting slaves will have free implants available. Starts having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Medicine", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>escort</strong> provides a one-time bonus to a slave's entertainment, whoring, and two sexual skills when a new slave is acquired. Furthermore, society will not take lightly to being run by an ex-whore, and you will receive heavy"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("losses each week. You can spend your free time selling your body for"); - r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("money", "Money"), ","), "cash")); - r.push("at the cost of a large amount of"); - r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation"), "."), ["reputation", "inc"])); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>celebrity</strong> provides extra"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("at game start. Starting slaves will have a free level of entertainment skill available."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>servant</strong> provides a one-time bonus to a slave's"); - r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); - r.push("and"); - r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted"), "."), ["devotion", "accept"])); - r.push("Furthermore, society will not approve of being run by an ex-servant, and you will face"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("losses each week. You can spend your free time, putting your previous experience to use, by greatly reducing the costs of your penthouse. You also passively reduce costs when not focusing on doing so."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>gang leader</strong> provides a one-time bonus to a slave's health and a free level of combat skill. Furthermore, society will not approve of being run by a gang-banger, and you will face"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("losses each week. New slaves will likely have heard of your previous exploits and fear you. You know how to haggle slaves. You can spend your free time putting your previous experience to use, proving another source of income however this isn't guaranteed."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>incursion specialist</strong> provides starting slaves with a free level of <span class='intelligent'>intelligence.</span> Also certain upgrades may be"); - r.push(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money", "cash")); - r.push("and you may find alternative approaches to problems. Starts having already mastered"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Hacking", "PC Skills"), ".")); - App.Events.addNode(ul, r, "li"); - - p.append(ul); - f.append(p); - - r = []; - r.push("Players using the"); - r.push(App.Encyclopedia.Dialog.linkDOM("Security Expansion", "Security Expansion")); - r.push("mod may want to view this page with"); - r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("additional details", "Design Your Master in SecExp"), ".")); - App.Events.addParagraph(f, r); - - App.UI.DOM.appendNewElement("h3", f, "Rumored acquisition options"); - ul = document.createElement("ul"); - r = []; - r.push("<strong>Hard Work</strong> provides a one-time bonus to both"); - r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); - r.push("and"); - r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust accept")); - r.push("when a new slave is acquired."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>Force</strong> means that if a slave does not have enough"); - r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); - r.push("to obey when acquired, this option will terrify her and reduce her"); - r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust accept")); - r.push("to the point where she should comply."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>Social Engineering</strong> means that you will start with the first societal option unlocked, since you manipulated the arcology's citizens."); - App.Events.addNode(ul, r, "li"); - - r = []; - r.push("<strong>Luck</strong> provides extra"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("at game start, but no ongoing advantages once the main game begins."); - App.Events.addNode(ul, r, "li"); - - App.UI.DOM.appendNewElement("p", f, ul); - - App.UI.DOM.appendNewElement("h3", f, "Age groups"); - r = []; - r.push("Older PCs enjoy easier"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("maintenance, but possess lower"); - r.push(App.Encyclopedia.Dialog.linkDOM("sexual energy", "Sexual Energy")); - r.push("while younger PC's are the opposite."); - App.Events.addParagraph(f, r); - - App.UI.DOM.appendNewElement("h3", f, "Body and gender options"); - r = []; - r.push("All PC body changes will alter scenes, but their main mechanical effect is on"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("maintenance. Feminine options will make it harder to maintain"); - r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); - r.push("without providing any gameplay advantage, making playing as a feminine PC a form of increased difficulty. There are other minor gameplay differences including differing slave reactions to the PC based on attraction, but these are fairly minor."); - App.Events.addParagraph(f, r); - - return f; + const outer = document.createElement("p"); + const showSecExp = V.secExpEnabled > 0; + + outer.append(content(showSecExp)); + + return outer; + + /** + * @param {boolean} showSecExp + * @returns {DocumentFragment} + */ + function content(showSecExp) { + const f = new DocumentFragment(); + let r; + + r = []; + r.push("This happens at the start of a game of FC: it is not possible to change the PC during the main game. The player must select a career background, a rumored method of acquiring the arcology, and their age group; then choose between some broad body and gender options."); + App.Events.addParagraph(f, r); + + r = []; + r.push(`<strong>Wealth</strong> is a choice for both the <strong>career background</strong> and <strong>rumored method of acquiring the arcology</strong> options. Both provide you with <span class="cash">${cashFormat(10000)}</span> each for a total of <span class="cash">${cashFormat(30000)}</span> if both are chosen. As a <strong>background option</strong> it means that your starting slaves will have two free levels of sex skills available`); + if (showSecExp) { + r.push("and maintaining"); + r.push(App.Encyclopedia.Dialog.linkDOM("authority", "Security Expansion", "darkviolet")); + r.push("will be harder, but upgrades in the propaganda hub will be"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money"), "."), "cash")); + } else { + r.push(r.pop() + "."); + } + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("h3", f, "Career background options"); + const p = document.createElement("p"); + p.append("Being an ex-"); + let ul = document.createElement("ul"); + + r = []; + r.push("<strong>business owner</strong> <span class='note'>(also referred to as capitalist)</span> enhances the business-focused personal attention, increasing the"); + r.push(App.Encyclopedia.Dialog.linkDOM("money", "Money", "cash")); + r.push("it produces and improving arcology prosperity when business-focused personal attention is selected. Also,"); + if (showSecExp) { + r.push("upgrades in the propaganda hub will be"); + r.push(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money", "cash")); + r.push("and"); + } + r.push("your starting slaves will have a free level of prostitution skill available. Starts having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Trading", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>private security contractor</strong> <span class='note'>(also referred to as mercenary background)</span> greatly reduces the cost of keeping mercenaries in your employ."); + if (showSecExp) { + r.push("Upgrades in the security HQ will be"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money"), "."), "cash")); + } + r.push("Your starting slaves will have free"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); + r.push("available. Starts having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Warfare", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>slave driver</strong> enhances slave-focused personal attention, adding bonus"); + r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); + r.push("or"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); + r.push("to many training applications or preventing their loss."); + if (showSecExp) { + r.push(App.Encyclopedia.Dialog.linkDOM("Authority", "Security Expansion", "darkviolet")); + r.push("will be easier to maintain. Plus upgrades in the security HQ will be"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money"), "."), "cash")); + } + r.push("Starting slaves will be cheaper, in addition having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Slaving", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>arcology engineer</strong> provides a significant discount on many <span class='cash'>arcology upgrades and expansions.</span> In addition to the arcology starting off with <span class='positive'>basic economic upgrades</span> already installed. Starts having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Engineering", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>doctor</strong> allows the player character to perform surgery personally, providing a <span class='cash'>discount on surgery costs</span> and a <span class='positive'>reduction to resulting health damage.</span> Additionally, slaves may react differently to surgery if the player character performs it and starting slaves will have free implants available. Starts having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Medicine", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>escort</strong> provides a one-time bonus to a slave's entertainment, whoring, and two sexual skills when a new slave is acquired. Furthermore, society will not take lightly to being run by an ex-whore, and you will receive heavy"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + if (showSecExp) { + r.push("and"); + r.push(App.Encyclopedia.Dialog.linkDOM("authority", "Security Expansion", "darkviolet")); + } + r.push("losses each week. You can spend your free time selling your body for"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("money", "Money"), ","), "cash")); + r.push("at the cost of a large amount of"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation"), "."), ["reputation", "inc"])); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>celebrity</strong> provides extra"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("at game start"); + if (showSecExp) { + r.push("and upgrades in the propaganda hub will be"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money"), "."), "cash")); + } else { + r.push(r.pop() + "."); + } + r.push("Starting slaves will have a free level of entertainment skill available."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>servant</strong> provides a one-time bonus to a slave's"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust careful")); + r.push("and"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted"), "."), ["devotion", "accept"])); + r.push("Furthermore, society will not approve of being run by an ex-servant, and you will face"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + if (showSecExp) { + r.push("and"); + r.push(App.Encyclopedia.Dialog.linkDOM("authority", "Security Expansion", "darkviolet")); + } + r.push("losses each week. You can spend your free time, putting your previous experience to use, by greatly reducing the costs of your penthouse. You also passively reduce costs when not focusing on doing so."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>gang leader</strong> provides a one-time bonus to a slave's health and a free level of combat skill. Furthermore, society will not approve of being run by a gang-banger, and you will face"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("losses each week. New slaves will likely have heard of your previous exploits and fear you."); + if (showSecExp) { + r.push("You know how to haggle slaves and assert your"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("authority", "Security Expansion"), "."), "darkviolet")); + r.push("Plus upgrades in the security HQ will be"); + r.push(App.UI.DOM.makeElement("span", App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money"), "."), "cash")); + } + r.push("You know how to haggle slaves. You can spend your free time putting your previous experience to use, proving another source of income however this isn't guaranteed."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>incursion specialist</strong> provides starting slaves with a free level of <span class='intelligent'>intelligence.</span> Also certain upgrades may be"); + r.push(App.Encyclopedia.Dialog.linkDOM("cheaper", "Money", "cash")); + r.push("and you may find alternative approaches to"); + if (showSecExp) { + r.push("problems, but you will find"); + r.push(App.Encyclopedia.Dialog.linkDOM("authority", "Security Expansion", "darkviolet")); + r.push("quite hard to maintain."); + } else { + r.push("problems."); + } + r.push("Starts having already mastered"); + r.push(App.UI.DOM.combineNodes(App.Encyclopedia.Dialog.linkDOM("Hacking", "PC Skills"), ".")); + App.Events.addNode(ul, r, "li"); + + p.append(ul); + f.append(p); + + r = []; + let text; + if (showSecExp) { + text = "Hide SecExp details"; + } else { + r.push("Players using the"); + r.push(App.Encyclopedia.Dialog.linkDOM("Security Expansion", "Security Expansion")); + r.push("mod may want to view this page with"); + text = "additional details"; + } + r.push(App.UI.DOM.combineNodes(App.UI.DOM.link(text, () => { + $(outer).empty().append(content(!showSecExp)); + }), ".")); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("h3", f, "Rumored acquisition options"); + ul = document.createElement("ul"); + r = []; + r.push("<strong>Hard Work</strong> provides a one-time bonus to both"); + r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); + r.push("and"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust accept")); + r.push("when a new slave is acquired."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>Force</strong> means that if a slave does not have enough"); + r.push(App.Encyclopedia.Dialog.linkDOM("devotion", "From Rebellious to Devoted", "devotion accept")); + r.push("to obey when acquired, this option will terrify her and reduce her"); + r.push(App.Encyclopedia.Dialog.linkDOM("trust", "Trust", "trust accept")); + r.push("to the point where she should comply."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>Social Engineering</strong> means that you will start with the first societal option unlocked, since you manipulated the arcology's citizens."); + App.Events.addNode(ul, r, "li"); + + r = []; + r.push("<strong>Luck</strong> provides extra"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("at game start, but no ongoing advantages once the main game begins."); + App.Events.addNode(ul, r, "li"); + + App.UI.DOM.appendNewElement("p", f, ul); + + App.UI.DOM.appendNewElement("h3", f, "Age groups"); + r = []; + r.push("Older PCs enjoy easier"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("maintenance, but possess lower"); + r.push(App.Encyclopedia.Dialog.linkDOM("sexual energy", "Sexual Energy")); + r.push("while younger PC's are the opposite."); + App.Events.addParagraph(f, r); + + App.UI.DOM.appendNewElement("h3", f, "Body and gender options"); + r = []; + r.push("All PC body changes will alter scenes, but their main mechanical effect is on"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("maintenance. Feminine options will make it harder to maintain"); + r.push(App.Encyclopedia.Dialog.linkDOM("reputation", "Arcologies and Reputation", "reputation inc")); + r.push("without providing any gameplay advantage, making playing as a feminine PC a form of increased difficulty. There are other minor gameplay differences including differing slave reactions to the PC based on attraction, but these are fairly minor."); + App.Events.addParagraph(f, r); + + return f; + } }, "guide"); App.Encyclopedia.addCategory("guide", function() { diff --git a/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw b/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw index dbf0e17244ea73b6179c50409250c34cd2befd42..6a04d89ac537a24e6928a720f69ac8161857219c 100644 --- a/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw +++ b/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw @@ -13,18 +13,6 @@ <<switch $encyclopedia>> -/********** -BEING IN CHARGE -**********/ -<<case "Arcologies and Reputation" "Being in Charge" "Costs Summary" "PC Skills" "Random Events" "Rules Assistant" "Sexual Energy" "The Corporation">> - <<= App.Encyclopedia.Dialog.linkSC("Arcologies and Reputation", "Arcologies and Reputation")>> - | <<= App.Encyclopedia.Dialog.linkSC("Random Events", "Random Events")>> - | <<= App.Encyclopedia.Dialog.linkSC("Costs Summary", "Costs Summary")>> - | <<= App.Encyclopedia.Dialog.linkSC("Rules Assistant", "Rules Assistant")>> - | <<= App.Encyclopedia.Dialog.linkSC("The Corporation", "The Corporation")>> - | <<= App.Encyclopedia.Dialog.linkSC("Sexual Energy", "Sexual Energy")>> - | <<= App.Encyclopedia.Dialog.linkSC("PC Skills", "PC Skills")>> - /********** SLAVES **********/ diff --git a/src/gui/mainMenu/AlphaDisclaimer.tw b/src/gui/mainMenu/AlphaDisclaimer.tw index a911ece80df19776e74e4e23ff5982471fda3f82..0a8d2f9cf61d42b6e21fabcc7c99e37b5094920c 100644 --- a/src/gui/mainMenu/AlphaDisclaimer.tw +++ b/src/gui/mainMenu/AlphaDisclaimer.tw @@ -32,6 +32,9 @@ <div class="note"> version: $ver, mod version: $pmodVer, build: $releaseID<<if App.Version.commitHash>>, commit: <<= App.Version.commitHash>><</if>> </div> + <span style="font-weight:Bold"> /* remove me with 4.0.0! */ + 4.0.0 is in alpha release. This means the new player content has minimal implementation. + </span> <div id="version"> <<link "More version info">> <<replace "#version">> diff --git a/src/gui/options/options.js b/src/gui/options/options.js index 6a7cffa56466401ecea9bf75c8667f54f845626a..78d0300aa514dbde0240f598d61d295e1b1f9720 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -164,9 +164,6 @@ App.UI.optionsPassage = function() { if (V.secExpEnabled > 0) { App.UI.DOM.appendNewElement("h2", el, `Security Expansion mod options`); - if (V.terrain === "oceanic") { - App.UI.DOM.appendNewElement("div", el, `Oceanic arcologies are not by default subject to external attacks. You can however allow them to happen anyway. If you choose to do so please keep in mind that descriptions and mechanics are intended for land combat.`); - } options = new App.UI.OptionsGroup(); if (V.SecExp.settings.battle.enabled > 0 || V.SecExp.settings.rebellion.enabled > 0) { @@ -507,11 +504,13 @@ App.UI.optionsPassage = function() { options.addOption("DebugMode is", "debugMode") .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment("This will add a Display Variables and Bug Report passage to the sidebar."); + .addComment("This will add passages to Display Variables and create Bug Reports to the sidebar."); if (V.debugMode > 0) { - options.addOption("The custom function part of debug mode is", "debugModeCustomFunction") + options.addOption("<span class='choices'>The custom function part of debug mode is</span>", "debugModeCustomFunction") .addValue("Enabled", 1).on().addValue("Disabled", 0).off(); + options.addOption("<span class='choices'>Event selection is</span>", "debugModeEventSelection") + .addValue("Manual", 1).on().addValue("Automatic", 0).off(); } option = options.addCustomOption("Genetics array") @@ -536,7 +535,7 @@ App.UI.optionsPassage = function() { options.addOption("CheatMode is", "cheatMode") .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment("This will allow manual selection of events and unlock some options that would usually be restricted by progress."); + .addComment("This will unlock some options that would usually be restricted by progress."); if (V.cheatMode === 0) { el.append(options.render()); @@ -846,7 +845,8 @@ App.Intro.display = function(isIntro) { options.addOption("Help tooltips are", "tooltipsEnabled") .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment(`This is mostly for new players. <span class='exampleTooltip noteworthy'>Colored text</span> can have tooltips.`); + .addComment(`This is mostly for new players. <span class='exampleTooltip noteworthy'>Colored text</span> can have tooltips.`) + .addCallbackToEach(App.UI.GlobalTooltips.update); options.addOption("Main menu slave tabs are", "useSlaveSummaryTabs") .addValue("Enabled", 1).on().addValue("CardStyle", 2).on().addValue("Disabled", 0).off(); @@ -1009,7 +1009,7 @@ App.Intro.contentAndFlavor = function(isIntro) { options.addOption("Slaves with fat lips or heavy oral piercings may lisp", "disableLisping") .addValue("Yes", 0).on().addValue("No", 1).off(); - options.addOption("Disables the long term damage mechanic. <span class='note'>Temp option</span>", "disableLongDamage") + options.addOption("<span class='note'>(Temp option)</span> The long-term damage mechanic is currently", "disableLongDamage") .addValue("Enabled", 0).on().addValue("Disabled", 1).off(); options.addOption("Experimental male pronouns are currently", "diversePronouns") @@ -1033,9 +1033,9 @@ App.Intro.contentAndFlavor = function(isIntro) { .addValue("Enabled", 1).on().addValue("Disabled", 0).off() .addComment("Diet will still affect asset size."); - options.addOption("Curative side effects are", "curativeSideEffects") + options.addOption("Chem damage from drugs is", "curativeSideEffects") //Yes, this variable controls all chem damage. The vestigial "curatives" name isn't worth changing. .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment("If enabled, curatives have a chance to give slaves harmful side effects."); + .addComment("If enabled, many drugs will cause harmful, though curable, carcinogen buildup and genomic damage over time."); el.append(options.render()); @@ -1076,7 +1076,10 @@ App.UI.artOptions = function() { const el = new DocumentFragment(); let options = new App.UI.OptionsGroup(); - App.Events.drawEventArt(el, BaseSlave()); + const art = App.UI.DOM.appendNewElement("span", el); + art.style.position = "relative"; + art.style.zIndex = "-1"; + App.Events.drawEventArt(art, BaseSlave()); options.addOption("Images are", "seeImages") .addValue("Enabled", 1).on().addValue("Disabled", 0).off(); diff --git a/src/gui/quicklinks.js b/src/gui/quicklinks.js index aebe0a9fbd2cec8363d8bb990932967cf0ebe2cb..45b846afdc13e4c38dd19a4e9c15087d92e6ecc2 100644 --- a/src/gui/quicklinks.js +++ b/src/gui/quicklinks.js @@ -85,7 +85,7 @@ App.UI.quickMenu = (function() { // true means hidden const hiddenPassages = cleanPassageMapping({ "Arcade": () => !V.arcade, - "BG Select": () => V.dojo <= 1, + "BG Select": () => !V.dojo, "Brothel": () => !V.brothel, "Cellblock": () => !V.cellblock, "Clinic": () => !V.clinic, @@ -241,7 +241,9 @@ App.UI.quickMenu = (function() { // register for (const passage of jumpTo) { - if (!hidden.includes(passage)) { + if (!hidden.includes(passage) + // some passages may be hidden, but still accessible through hotkeys + || hotkeys.hasOwnProperty(passage)) { const action = { callback: () => { if (hotkeysEnabled diff --git a/src/gui/sideBar.js b/src/gui/sideBar.js index 9c1e8e3508a06265f8f80745c8a64a4805fae3cf..07eb32e2ec9ec5eae003ef6054606d06b0d4ad57 100644 --- a/src/gui/sideBar.js +++ b/src/gui/sideBar.js @@ -8,7 +8,6 @@ App.Utils.scheduleSidebarRefresh = (function() { function updateSidebar() { refresh = false; UIBar.update(); - App.UI.updateSidebarTooltips(); } function schedule() { diff --git a/src/gui/tooltips.js b/src/gui/tooltips.js index dcb1e897e1876e4ada667f32f9722d31a572990f..77d0c5e7201ab0beb5168d85974664cbbbfe3338 100644 --- a/src/gui/tooltips.js +++ b/src/gui/tooltips.js @@ -1,63 +1,52 @@ -App.UI.updateSidebarTooltips = (function() { - // The performance impact is around O(tooltips * nodes), with large passages (main, slave assignment report) adding - // tooltips could potentially take a significant amount of time when there are many potential tooltips. - const tooltips = { - exampleTooltip: "I am a helpful tooltip. We are very rare because we are still in development.", - - devotion: "Devotion is a measure of a slave's love for you.", - trust: "Trust is a measure of a slave's expectations of you and confidence to perform well.", - defiant: "Defiant slaves will actively work against you.", - - flaw: "Flaws impend your slaves performance. Try removing or converting them into quirks.", - intelligent: "More intelligent slaves tend to perform better.", - stupid: "More intelligent slaves tend to perform better.", - health: "The healthier your slaves, the better they perform.", - libido: "Sex drive has various effects, generally higher is good.", - positive: "This is good.", - // noteworthy: "This is important.", - warning: "This is very bad. Try removing the cause for this.", - - error: "Something just broke. Please report this.", - - cash: "Money. Always useful.", - reputation: "Your reputation as a slaveowner. The more, the better.", - /* - red: "This is red, it's bad, if indicating a stat change it could be about money, reputation, mindbreak or flaw gain.", - skill: "t", - fetish: "t", - relationship: "t", - change: "t", - virginity: "t", - pregnant: "t", - education: "t", - */ - }; - - /** - * @param {Document|HTMLElement} container - */ - function addTooltips(container) { - if (V.tooltipsEnabled === 0) { - return; - } - for (const tooltipsKey in tooltips) { - const elements = container.getElementsByClassName(tooltipsKey); - for (const element of elements) { - element.title += `${tooltips[tooltipsKey]}\n`; - } +App.UI.GlobalTooltips = (function() { + let instances = []; + + const tooltips = new Map([ + [".exampleTooltip", "I am a helpful tooltip. We are very rare because we are still in development."], + + [".devotion", "Devotion is a measure of a slave's love for you."], + [".trust", "Trust is a measure of a slave's expectations of you and confidence to perform well."], + [".defiant", "Defiant slaves will actively work against you."], + + [".flaw", "Flaws impend your slaves performance. Try removing or converting them into quirks."], + [".intelligent", "More intelligent slaves tend to perform better."], + [".stupid", "More intelligent slaves tend to perform better."], + [".health", "The healthier your slaves, the better they perform."], + [".libido", "Sex drive has various effects, generally higher is better."], + [".positive", "This is good."], + [".warning", "This is very bad. Try removing the cause for this."], + + [".error", "Something just broke. Please report this."], + + [".cash", "Money. Always useful."], + [".reputation", "Your reputation as a slave owner. The higher, the better."], + ]); + + function enable() { + disable(); + instances = []; + for (const [identifier, tooltip] of tooltips.entries()) { + instances.push(tippy.delegate(document.body, { + target: identifier, + content: tooltip + })); } } - function updateSidebar() { - addTooltips(document.getElementById("story-caption")); + function disable() { + for (const instance of instances) { + instance.destroy(); + } + instances = []; } - // passage - $(document).on(":passagerender", e => addTooltips(e.content)); - // story caption - $(document).on(":passageend", updateSidebar); - // dialog - $(document).on(":dialogopening", e => addTooltips(e.target)); + function update() { + if (V.tooltipsEnabled === 1) { + enable(); + } else { + disable(); + } + } - return updateSidebar; + return {update: update}; })(); diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js index 7ad225e555ed815be0aa0bfdb3a1917bc0d1ee5a..554c566d7a38a5c1ddc60a592775b72d7c757de6 100644 --- a/src/interaction/main/walkPast.js +++ b/src/interaction/main/walkPast.js @@ -4,7 +4,6 @@ globalThis.walkPast = (function() { // selection variables let target; - let partner; let partnerSlave; /** generate a walkPast vignette @@ -14,19 +13,15 @@ globalThis.walkPast = (function() { */ function walkPast(activeSlave, fixedTarget) { let output = ""; + let partner = ""; - let flag; if (totalRelatives(activeSlave) > 0 && ((fixedTarget === "fRelation") || (!fixedTarget && jsRandom(1, 100) > 80))) { - flag = 110; partner = "relation"; } else if (activeSlave.relationship > 0 && ((fixedTarget === "fRelation") || (!fixedTarget && jsRandom(1, 100) > 70))) { - flag = 120; partner = "relationship"; } else if (activeSlave.rivalry !== 0 && hasAllLimbs(activeSlave) && ((fixedTarget === "fRival") || (!fixedTarget && jsRandom(1, 100) > 70))) { - flag = 130; partner = "rivalry"; } else { - flag = 99; partner = ""; } @@ -36,14 +31,18 @@ globalThis.walkPast = (function() { } const seed = jsRandom(1, 100); - output += primeSlave(activeSlave, seed); + + // loverSlave outputs for both slaves, but other paths require primeSlave output first + if (partner !== "relationship" || !App.Utils.hasPartnerSex(activeSlave)) { + output += primeSlave(activeSlave, seed); + } if (partner === "rivalry") { output += rivalSlave(activeSlave, seed); } else if (partner === "relationship" && App.Utils.hasPartnerSex(activeSlave)) { output += loverSlave(activeSlave); } else if (partner === "relationship" || partner === "relation") { - output += relatedSlave(activeSlave); + output += relatedSlave(activeSlave, partner); } else { switch (fixedTarget) { case "fLips": @@ -108,48 +107,39 @@ globalThis.walkPast = (function() { } = getPronouns(activeSlave); let links = []; - const executeWalkpast = (passage) => { - V.AS = activeSlave.ID; // TODO: remove me once all the F* passages don't need activeSlave anymore - if (App.Interact.hasOwnProperty(passage)) { - $(`#walkpast-${activeSlave.ID}`).empty().append(App.Interact[passage](activeSlave)); - } else { - $(`#walkpast-${activeSlave.ID}`).empty().append(App.UI.DOM.renderPassage(passage)); - } + const executeWalkpast = (passage, ...args) => { + $(linkSpan).empty().append(App.Interact[passage](activeSlave, ...args)); }; if (activeSlave.fuckdoll === 0) { if (target === "fButt" && activeSlave.chastityAnus) { output += ` If you wish to have anal intercourse with ${him} you must order ${him} to remove ${his} chastity belt.`; - links.push(App.UI.DOM.link(`Grope ${his} rear instead`, executeWalkpast, "FondleButt")); + links.push(App.UI.DOM.link(`Grope ${his} rear instead`, executeWalkpast, ["fondleButt"])); } else if (target === "fVagina" && activeSlave.chastityVagina) { output += ` If you wish to have vanilla intercourse with ${him} you must order ${him} to remove ${his} chastity belt.`; - } else if (flag > 100) { - links.push(App.UI.DOM.link(`Summon them both`, (partner, relation, target) => { - V.partner = partner; - V.relation = relation; // TODO: remove these once fRelation/fRival don't need them anymore - executeWalkpast(target); - }, [partner, flag === 110 ? partnerSlave.ID : null, target])); + } else if (target === "fRelation" || target === "fRival") { + links.push(App.UI.DOM.link(`Summon them both`, executeWalkpast, [target, partnerSlave])); } else if (activeSlave.assignment === Job.CONFINEMENT) { - links.push(App.UI.DOM.link(`Have ${him} brought out of ${his} cell`, executeWalkpast, target)); + links.push(App.UI.DOM.link(`Have ${him} brought out of ${his} cell`, executeWalkpast, [target])); } else if (activeSlave.assignment === Job.DAIRY && V.dairyRestraintsSetting > 1) { output += ` ${He} is strapped into a milking machine and cannot leave ${V.dairyName}.`; } else { if ([Job.ARCADE, Job.CELLBLOCK, Job.ATTENDANT, Job.DJ, Job.MADAM, Job.MILKMAID, Job.TEACHER, Job.STEWARD, Job.WARDEN, Job.AGENT, Job.CONCUBINE, Job.AGENTPARTNER, Job.HEADGIRLSUITE, Job.CLUB, Job.MASTERSUITE, Job.CONFINEMENT, Job.GLORYHOLE, Job.QUARTER, Job.BROTHEL, Job.DAIRY].includes(activeSlave.assignment)) { - links.push(App.UI.DOM.link(`Have ${him} take a break and come up`, executeWalkpast, target)); + links.push(App.UI.DOM.link(`Have ${him} take a break and come up`, executeWalkpast, [target])); } else { - links.push(App.UI.DOM.link(`Call ${him} over`, executeWalkpast, target)); + links.push(App.UI.DOM.link(`Call ${him} over`, executeWalkpast, [target])); } } } else { switch (target) { case "fVagina": - links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, "FFuckdollVaginal")); + links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, ["fFuckdollVaginal"])); break; case "fButt": case "fAnus": - links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, "FFuckdollAnal")); + links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, ["fFuckdollAnal"])); break; default: - links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, "FFuckdollOral")); + links.push(App.UI.DOM.link(`Fuck ${him}`, executeWalkpast, ["fFuckdollOral"])); } } @@ -159,8 +149,7 @@ globalThis.walkPast = (function() { const frag = document.createDocumentFragment(); $(frag).append(output + ' '); - const span = App.UI.DOM.appendNewElement("span", frag, App.UI.DOM.generateLinksStrip(links)); - span.id = `walkpast-${activeSlave.ID}`; + const linkSpan = App.UI.DOM.appendNewElement("span", frag, App.UI.DOM.generateLinksStrip(links)); return frag; } @@ -170,15 +159,9 @@ globalThis.walkPast = (function() { * @returns {string} */ function primeSlave(activeSlave, seed) { - let r = ""; - - if (partner !== "relationship" || !App.Utils.hasPartnerSex(activeSlave)) { - r += `${activeSlave.slaveName} `; - r += walkPasts(activeSlave, seed); - t = ""; - /* WALKPASTS END */ - } - /* TIME TOGETHER EXCEPTION ENDS */ + let r = `${activeSlave.slaveName} `; + r += walkPasts(activeSlave, seed); + t = ""; return r; } @@ -1412,11 +1395,12 @@ globalThis.walkPast = (function() { return t + ` `; } - /** Generate walkpast for a relative of the slave we're looking at + /** Generate walkpast for a relative or relationship partner of the slave we're looking at * @param {App.Entity.SlaveState} activeSlave + * @param {"relation"|"relationship"} partner which kind of partner are we looking for? * @returns {string} */ - function relatedSlave(activeSlave) { + function relatedSlave(activeSlave, partner) { let r = ""; const fuckSeed = jsRandom(1, 100); @@ -1438,9 +1422,9 @@ globalThis.walkPast = (function() { r += `${partnerSlave.slaveName} `; r += walkPasts(partnerSlave, fuckSeed); - target = "fRelation"; /* potentially removed later */ + target = "fRelation"; } else { - r += ` Expected partner not found!`; + r += ` Expected ${partner} partner not found!`; } return r + ` `; @@ -2095,7 +2079,7 @@ globalThis.walkPast = (function() { t += `dig into the soft flesh as ${he} moves.`; } break; - case "attractive lingerie for a pregnant women": + case "attractive lingerie for a pregnant woman": if (slave.boobs < 300) { t += `The bulge of ${his} ${slave.nipples} nipples can be seen under the taut silk.`; } else { @@ -2879,9 +2863,9 @@ globalThis.walkPast = (function() { if (slave.bellyImplant < 2000) { if (slave.belly >= 600000) { switch (slave.clothes) { - case "a very tight corset": - t += `${His} corset struggles to contain ${his} enormous belly.`; - break; + // case "an extreme corset": // FIXME: corsets are not clothes + // t += `${His} corset struggles to contain ${his} enormous belly.`; + // break; case "chains": t += `${His} enormous belly bulges in between ${his} tight chains.`; break; @@ -3008,9 +2992,9 @@ globalThis.walkPast = (function() { } } else if (slave.belly >= 300000) { switch (slave.clothes) { - case "a very tight corset": - t += `${His} corset struggles to contain ${his} giant belly.`; - break; + // case "an extreme corset": //FIXME: Corsets are not clothes + // t += `${His} corset struggles to contain ${his} giant belly.`; + // break; case "chains": t += `${His} giant belly bulges in between ${his} tight chains.`; break; @@ -3543,7 +3527,7 @@ globalThis.walkPast = (function() { case "battlearmor": t += `${His} giant jiggling gut is barely contained by ${his} armor.`; break; - case "Imperial Armor": + case "Imperial Plate": t += `Even through ${his} massively thick Imperial armor, you can swear you see ${his} obscene gut jiggle somehow.`; break; case "a mounty outfit": @@ -4522,9 +4506,9 @@ globalThis.walkPast = (function() { } else { /* implant descs */ if (slave.bellyImplant >= 32000) { switch (slave.clothes) { - case "a very tight corset": - t += `${His} corset struggles to contain ${his} enormous belly.`; - break; + // case "an extreme corset": //FIXME: Corsets are not clothes + // t += `${His} corset struggles to contain ${his} enormous belly.`; + // break; case "chains": t += `${His} enormous belly bulges in between ${his} tight chains.`; break; @@ -4670,9 +4654,9 @@ globalThis.walkPast = (function() { } } else if (slave.bellyImplant >= 16000) { switch (slave.clothes) { - case "a very tight corset": - t += `${His} corset struggles to contain ${his} giant belly.`; - break; + // case "an extreme corset": // FIXME: Corsets are not clothes + // t += `${His} corset struggles to contain ${his} giant belly.`; + // break; case "chains": t += `${His} giant belly bulges in between ${his} tight chains.`; break; @@ -9359,7 +9343,7 @@ globalThis.walkPast = (function() { } if (jsRandom(1, 3) === 1) { - target = "FKiss"; + target = "fKiss"; } else { target = "fLips"; } diff --git a/src/interaction/multiImplant.js b/src/interaction/multiImplant.js index 87ef27e9abb7fdfdb0e961e4d6fdd9d1af8642cb..0dfdbb732cfecdf0f3ddd9e18fab25ddb5766917 100644 --- a/src/interaction/multiImplant.js +++ b/src/interaction/multiImplant.js @@ -33,7 +33,9 @@ App.UI.multiImplant = function() { App.UI.DOM.appendNewElement("h3", frag, F.Organs.get(sortedOrgans[j]).name); let actions = F.Organs.get(sortedOrgans[j]).implantActions; - let manual = false, success = false, cancel = false; + let manual = false; + let success = false; + let cancel = false; for (let k = 0; k < actions.length; k++) { if (!actions[k].autoImplant) { if (actions[k].canImplant(slave)) { diff --git a/src/interaction/prostheticConfig.js b/src/interaction/prostheticConfig.js index eedb2f5084f24aed84ce3c53e250d94e7d95f8d8..02a7816003739ecd7d3418a428d1d2e7086ab16e 100644 --- a/src/interaction/prostheticConfig.js +++ b/src/interaction/prostheticConfig.js @@ -54,7 +54,9 @@ App.UI.prostheticsConfig = function(slave) { const eyeContainer = document.createElement("div"); eyeContainer.classList.add("eyeContainer", "choices"); - let _on = 0, _blur = 0, _off = 0; + let _on = 0; + let _blur = 0; + let _off = 0; if (getLeftEyeType(slave) === 3) { App.UI.DOM.appendNewElement("div", eyeContainer, "Left:"); let div = document.createElement("div"); diff --git a/src/interaction/sellSlave.js b/src/interaction/sellSlave.js index c26c996e036d9faad14745677c09d8021ecfce4a..4ae791cdfe90e424a24cdf50c719ec1b7b3bdfa8 100644 --- a/src/interaction/sellSlave.js +++ b/src/interaction/sellSlave.js @@ -348,14 +348,13 @@ new App.DomPassage("Sell Slave", () => { } } if ((V.week - slave.weekAcquired >= 20) && (slave.skill.entertainment >= 100)) { - if (App.Data.Careers.General.entertainment.includes(slave.career)) { - } else { + // FIXME: review this + if (!App.Data.Careers.General.entertainment.includes(slave.career)) { t.push(`${He}'s gotten enough experience as a slave entertainer that ${he} has the added value of a ${girl} with a history in entertainment from before ${he} was a slave.`); } } if (slave.counter.oral + slave.counter.anal + slave.counter.vaginal + slave.counter.mammary + slave.counter.penetrative > 1000) { - if (App.Data.Careers.General.whore.includes(slave.career)) { - } else { + if (!App.Data.Careers.General.whore.includes(slave.career)) { t.push(`I see ${he}'s sexually very experienced; that counts as a stand-in for the usual bonus value from having been a sex worker before enslavement.`); } } @@ -744,8 +743,8 @@ new App.DomPassage("Sell Slave", () => { } } else if (V.arcologies[0].FSGenderRadicalistLawFuta === 4) { if (slave.boobs <= 400) { - if (slave.dick > 0 && slave.dick < 3) { - if (slave.balls > 0 && slave.balls < 3) { + if (slave.dick.isBetween(0, 3)) { + if (slave.balls.isBetween(0, 3)) { t.push(`Slaves with such cute little parts appraise quite well, thanks to your leadership on gender.`); } } @@ -963,7 +962,7 @@ new App.DomPassage("Sell Slave", () => { if (V.PC.father === V.AS) { V.boomerangStats.PCfather = V.AS; } - for (const s of V.slaves) { //TODO: review for hyperfet compatibility + for (const s of V.slaves) { // TODO: review for hyperfet compatibility if (s.ID !== V.AS) { if (s.mother === V.AS) { V.boomerangStats.boomerangMother.push(s.ID); @@ -1224,8 +1223,7 @@ new App.DomPassage("Sell Slave", () => { } } if (slaveImpact === 1) { - r.push(`Your more idiotic slaves are <span class="mediumorchid">deeply jealous</span> of - slave.slaveName's new pampered lifestyle, oblivious to the demanding nature of eugenics.`); + r.push(`Your more idiotic slaves are <span class="mediumorchid">deeply jealous</span> of ${slave.slaveName}'s new pampered lifestyle, oblivious to the demanding nature of eugenics.`); } App.Events.addNode(el, r); return el; @@ -1711,8 +1709,8 @@ new App.DomPassage("Sell Slave", () => { (slave.weight < 10 && slave.weight > -10) && (slave.waist < 10 && slave.waist > -50) && (slave.boobs >= 550 && slave.boobs < 1000) && - (slave.butt > 2 && slave.butt < 5) && - (slave.hips > 0 && slave.hips < 3) && + (slave.butt.isBetween(2, 5)) && + (slave.hips.isBetween(0, 3)) && (slave.face >= 20) ); }, @@ -1997,7 +1995,7 @@ new App.DomPassage("Sell Slave", () => { let slaveImpact; r.push(`${slave.slaveName} becomes a frequent sight in ${slave.porn.fameType} smut and attracts huge crowds with each public appearance.`); for (const s of V.slaves) { - if (s.porn.prestige > 0 && s.porn.prestige < 3) { + if (s.porn.prestige.isBetween(0, 3)) { if (s.devotion > 20) { s.trust += 2; slaveImpact = 1; @@ -2310,7 +2308,7 @@ new App.DomPassage("Sell Slave", () => { const el = new DocumentFragment(); const r = []; let slaveImpact; - r.push(`${slave.slaveName}'s is taken away by an expensive, flashy shuttle shortly after you finalize the trade. ${He} is swept into a life of luxury; the next time you see ${him}, ${he}'s dressed in a manner more befitting of a consort than a simple slave.`); + r.push(`${slave.slaveName} is taken away by an expensive, flashy shuttle shortly after you finalize the trade. ${He} is swept into a life of luxury; the next time you see ${him}, ${he}'s dressed in a manner more befitting of a consort than a simple slave.`); for (const s of V.slaves) { if (s.intelligence + s.intelligenceImplant < 50) { s.devotion -= 2; diff --git a/src/interaction/siPhysicalRegimen.js b/src/interaction/siPhysicalRegimen.js index 930ac3c4e02fafc3960cf726497b136b017ffe29..526b3db0d687b33a7d9910d6582c3e747aaf6c53 100644 --- a/src/interaction/siPhysicalRegimen.js +++ b/src/interaction/siPhysicalRegimen.js @@ -187,7 +187,7 @@ App.UI.SlaveInteract.physicalRegimen = function(slave, refresh) { } } } - if (slave.dick > 0 && slave.dick < 11 && !canAchieveErection(slave) && slave.chastityPenis !== 1) { + if (slave.dick.isBetween(0, 11) && !canAchieveErection(slave) && slave.chastityPenis !== 1) { dick.push({text: `Erectile dysfunction circumvention`, updateSlave: {drugs: `priapism agents`}}); } diff --git a/src/interaction/siRules.js b/src/interaction/siRules.js index 7a0161bfc5e9172cbfd0aea4e31ff0f5f5cecc33..996808093c33c998e98cb15216d60f690ca16281 100644 --- a/src/interaction/siRules.js +++ b/src/interaction/siRules.js @@ -237,7 +237,7 @@ App.UI.SlaveInteract.rules = function(slave, refresh) { {value: "restrictive"}, {value: "permissive"}, ]; - if (slave.accent > 0 && slave.accent < 4) { + if (slave.accent.isBetween(0, 4)) { choices.push( {value: "accent elimination"}, ); diff --git a/src/interaction/siWork.js b/src/interaction/siWork.js index f31ee04b687865201b5d441c7851b3a13dad0692..e5e100331968b052d0fbe837128232f2947ccbf9 100644 --- a/src/interaction/siWork.js +++ b/src/interaction/siWork.js @@ -102,7 +102,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { default: // CAN BE REASSIGNED span.classList.remove("note"); - //span.id = "assignmentLinks"; + // span.id = "assignmentLinks"; span.appendChild(assignmentBlock()); if ((V.brothel + V.club + V.dairy + V.farmyard + V.servantsQuarters + V.masterSuite + V.spa + V.nursery + V.clinic + V.schoolroom + V.cellblock + V.arcade + V.HGSuite) > 0) { @@ -334,12 +334,12 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (canDoVaginal(slave) || canDoAnal(slave)) { sexOptions.push({text: `Fuck ${him} on ${his} belly`, scene: () => App.Interact.fBellyFuck(slave)}); if (V.pregInventions >= 1) { - sexOptions.push({text: `Fuck ${him} in ${his} maternity swing`, scene: `FMaternitySwing`}); + sexOptions.push({text: `Fuck ${him} in ${his} maternity swing`, scene: () => App.Interact.fMaternitySwing(slave)}); sexOptions.push({ text: `Fuck ${him} with the help of ${his} assistants`, - scene: `FAssistedSex` + scene: () => App.Interact.fAssistedSex(slave) }); - sexOptions.push({text: `Fuck ${him} in your goo pool`, scene: `FPoolSex`}); + sexOptions.push({text: `Fuck ${him} in your goo pool`, scene: () => App.Interact.fPoolSex(slave)}); } } } @@ -353,45 +353,45 @@ App.UI.SlaveInteract.work = function(slave, refresh) { }); } sexOptions.push({text: `Use ${his} mouth`, scene: () => App.Interact.fLips(slave)}); - sexOptions.push({text: `Kiss ${him}`, scene: `FKiss`}); + sexOptions.push({text: `Kiss ${him}`, scene: () => App.Interact.fKiss(slave)}); if (hasAnyLegs(slave)) { sexOptions.push({text: `Have ${him} dance for you`, scene: () => App.Interact.fDance(slave)}); } sexOptions.push({text: `Play with ${his} tits`, scene: () => App.Interact.fBoobs(slave)}); - sexOptions.push({text: `Caress ${him}`, scene: `FCaress`}); + sexOptions.push({text: `Caress ${him}`, scene: () => App.Interact.fCaress(slave)}); - sexOptions.push({text: `Give ${him} a hug`, scene: `FEmbrace`}); + sexOptions.push({text: `Give ${him} a hug`, scene: () => App.Interact.fEmbrace(slave)}); if (V.cheatMode === 1) { - sexOptions.push({text: `Pat ${his} head`, scene: `FPat`}); + sexOptions.push({text: `Pat ${his} head`, scene: () => App.Interact.fPat(slave)}); } if (slave.race === "catgirl") { - sexOptions.push({text: `Pet ${him}`, scene: `FPet`}); + sexOptions.push({text: `Pet ${him}`, scene: () => App.Interact.fPet(slave)}); } - sexOptions.push({text: `Grope ${his} boobs`, scene: `FondleBoobs`}); + sexOptions.push({text: `Grope ${his} boobs`, scene: () => App.Interact.fondleBoobs(slave)}); if (slave.nipples === "fuckable" && V.PC.dick > 0) { - sexOptions.push({text: `Fuck ${his} nipples`, scene: `FNippleFuck`}); + sexOptions.push({text: `Fuck ${his} nipples`, scene: () => App.Interact.fNippleFuck(slave)}); } if (slave.lactation > 0 && slave.boobs >= 2000 && slave.belly < 60000 && hasAnyArms(slave)) { sexOptions.push({text: `Drink ${his} milk`, scene: () => App.Interact.fSuckle(slave)}); } if (canDoAnal(slave)) { - sexOptions.push({text: `Grope ${his} butt`, scene: `FondleButt`}); + sexOptions.push({text: `Grope ${his} butt`, scene: () => App.Interact.fondleButt(slave)}); } if (slave.vagina > -1) { if (canDoVaginal(slave)) { - sexOptions.push({text: `Grope ${his} pussy`, scene: `FondleVagina`}); - sexOptions.push({text: `Eat ${him} out`, scene: `FLickPussy`}); + sexOptions.push({text: `Grope ${his} pussy`, scene: () => App.Interact.fondleVagina(slave)}); + sexOptions.push({text: `Eat ${him} out`, scene: () => App.Interact.fLickPussy(slave)}); } } if (slave.dick > 0) { if (!(slave.chastityPenis)) { - sexOptions.push({text: `Grope ${his} dick`, scene: `FondleDick`}); + sexOptions.push({text: `Grope ${his} dick`, scene: () => App.Interact.fondleDick(slave)}); if (canPenetrate(slave)) { if (V.policies.sexualOpenness === 1 || slave.toyHole === "dick") { sexOptions.push({text: `Ride ${his} dick`, scene: () => App.Interact.fDick(slave)}); @@ -417,7 +417,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { }); } if (canImpreg(slave, slave)) { - sexOptions.push({text: `Use ${his} own seed to impregnate ${him}`, scene: `FSlaveSelfImpreg`}); + sexOptions.push({text: `Use ${his} own seed to impregnate ${him}`, scene: () => App.Interact.fSlaveSelfImpreg(slave)}); } sexOptions.push({text: `Use another slave to impregnate ${him}`, scene: () => App.Interact.fSlaveImpreg(slave)}); } @@ -433,7 +433,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { }); fillFaceOptions.push({ text: `Milk`, - scene: `FillUpFace`, + scene: () => App.Interact.fillUpFace(slave), updateSlave: {inflationType: "milk", inflationMethod: 1} }); } @@ -453,12 +453,12 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.inflationType === "cum" || slave.inflationType === "none") { fillAssOptions.push({ text: `Cum`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "cum", inflationMethod: 2} }); fillFaceOptions.push({ text: `Cum`, - scene: `FillUpFace`, + scene: () => App.Interact.fillUpFace(slave), updateSlave: {inflationType: "cum", inflationMethod: 1} }); } @@ -479,7 +479,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.inflationType === "water" || slave.inflationType === "none") { fillAssOptions.push({ text: `Water`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "water", inflationMethod: 2} }); } @@ -487,21 +487,21 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.inflationType === "aphrodisiac" || slave.inflationType === "none") { fillAssOptions.push({ text: `Aphrodisiacs`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "aphrodisiac", inflationMethod: 2} }); } if (slave.inflationType === "curative" || slave.inflationType === "none") { fillAssOptions.push({ text: `Curatives`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "curative", inflationMethod: 2} }); } if (slave.inflationType === "tightener" || slave.inflationType === "none") { fillAssOptions.push({ text: `Rectal tighteners`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "tightener", inflationMethod: 2} }); } @@ -513,7 +513,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.inflationType === "urine" || slave.inflationType === "none") { fillAssOptions.push({ text: `Urine`, - scene: App.Interact.fillUpButt(slave), + scene: () => App.Interact.fillUpButt(slave), updateSlave: {inflationType: "urine", inflationMethod: 2} }); } @@ -525,18 +525,18 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (V.boughtItem.toys.buckets === 1) { fillFaceOptions.push({ text: `Two liters of slave food`, - scene: `forceFeeding`, + scene: () => App.Interact.forceFeeding(slave), updateSlave: {inflation: 1, inflationType: "food", inflationMethod: 1} }); if (slave.pregKnown === 0) { fillFaceOptions.push({ text: `A gallon of slave food`, - scene: `forceFeeding`, + scene: () => App.Interact.forceFeeding(slave), updateSlave: {inflation: 2, inflationType: "food", inflationMethod: 1} }); fillFaceOptions.push({ text: `Two gallons of slave food`, - scene: `forceFeeding`, + scene: () => App.Interact.forceFeeding(slave), updateSlave: {inflation: 3, inflationType: "food", inflationMethod: 1} }); } @@ -545,12 +545,12 @@ App.UI.SlaveInteract.work = function(slave, refresh) { } } if (canDoVaginal(slave)) { - sexOptions.push({text: `Have another slave fuck ${his} pussy`, scene: `FSlaveSlaveVag`}); + sexOptions.push({text: `Have another slave fuck ${his} pussy`, goto: `FSlaveSlaveVag`}); } if (canPenetrate(slave)) { - sexOptions.push({text: `Have another slave ride ${his} cock`, scene: `FSlaveSlaveDick`}); + sexOptions.push({text: `Have another slave ride ${his} cock`, goto: `FSlaveSlaveDick`}); } else if (slave.clit >= 4) { - sexOptions.push({text: `Have another slave ride ${his} clit-dick`, scene: `FSlaveSlaveDick`}); + sexOptions.push({text: `Have another slave ride ${his} clit-dick`, goto: `FSlaveSlaveDick`}); } if (V.seeBestiality) { if (V.farmyardKennels > 0 && V.active.canine) { @@ -578,19 +578,18 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (availRelatives.mother) { sexOptions.push({ text: `Fuck ${him} with ${his} mother`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "mother"} + scene: () => App.Interact.fRelation(slave, getSlave(slave.mother)) }); } else if (availRelatives.motherName !== null) { sexOptions.push({text: `${His} mother, ${availRelatives.motherName}, is unavailable`}); } /* - if (availRelatives.father) { - sexOptions.push({text: `Fuck ${him} with ${his} father`, scene: () => App.Interact.fRelation(slave), update: {partner: "father"}}); - } else if (availRelatives.fatherName !== null) { - sexOptions.push({text: `${His} father, ${availRelatives.motherName}, is unavailable`}); - } - */ + if (availRelatives.father) { + sexOptions.push({text: `Fuck ${him} with ${his} father`, scene: () => App.Interact.fRelation(slave, getSlave(slave.father))}); + } else if (availRelatives.fatherName !== null) { + sexOptions.push({text: `${His} father, ${availRelatives.fatherName}, is unavailable`}); + } + */ if (slave.daughters > 0) { if (availRelatives.daughters === 0) { if (slave.daughters === 1) { @@ -608,21 +607,19 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.daughters === 1) { sexOptions.push({ text: `Fuck ${him} with ${his} ${availRelatives.oneDaughterRel}`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "daughter"} + scene: () => App.Interact.fRelation(slave, randomAvailableDaughter(slave)) }); } else { sexOptions.push({ text: `Fuck ${him} with one of ${his} daughters`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "daughter"} + scene: () => App.Interact.fRelation(slave, randomAvailableDaughter(slave)) }); } /* - if (availRelatives.daughters > 1) { - sexOptions.push({text: `Fuck ${him} with ${his} daughters`, scene: () => App.Interact.fRelation(slave), update: {partner: "daughter"}}); - } - */ + if (availRelatives.daughters > 1) { + sexOptions.push({text: `Fuck ${him} with ${his} daughters`, scene: () => App.Interact.fRelation(slave, daughters?)}); + } + */ } } if (slave.sisters > 0) { @@ -642,21 +639,19 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.sisters === 1) { sexOptions.push({ text: `Fuck ${him} with ${his} ${availRelatives.oneSisterRel}`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "sister"} + scene: () => App.Interact.fRelation(slave, randomAvailableSister(slave)) }); } else { sexOptions.push({ text: `Fuck ${him} with one of ${his} sisters`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "sister"} + scene: () => App.Interact.fRelation(slave, randomAvailableSister(slave)) }); } /* - if (availRelatives.sisters > 1) { - sexOptions.push({text: `Fuck ${him} with ${his} sisters`, scene: () => App.Interact.fRelation(slave), update: {partner: "sisters}}); - } - */ + if (availRelatives.sisters > 1) { + sexOptions.push({text: `Fuck ${him} with ${his} sisters`, scene: () => App.Interact.fRelation(slave, sisters?)}); + } + */ } } } @@ -665,8 +660,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (isSlaveAvailable(lover)) { sexOptions.push({ text: `Fuck ${him} with ${his} ${relationshipTermShort(slave)} ${SlaveFullName(lover)}`, - scene: () => App.Interact.fRelation(slave), - update: {partner: "relationship"} + scene: () => App.Interact.fRelation(slave, lover) }); } else if (lover.assignment === Job.AGENT) { if (slave.broodmother < 2) { @@ -691,7 +685,7 @@ App.UI.SlaveInteract.work = function(slave, refresh) { if (slave.fetish !== "mindbroken" && slave.accent < 4 && ((canTalk(slave)) || hasAnyArms(slave))) { sexOptions.push({text: `Ask ${him} about ${his} feelings`, scene: () => App.Interact.feelings(slave)}); if (V.PC.dick > 0) { - sexOptions.push({text: `Make ${him} beg`, scene: `FBeg`}); + sexOptions.push({text: `Make ${him} beg`, scene: () => App.Interact.fBeg(slave)}); } } if (slave.devotion >= 100 && slave.relationship < 0 && slave.relationship > -3) { @@ -713,17 +707,17 @@ App.UI.SlaveInteract.work = function(slave, refresh) { } } else { /* IS A FUCKDOLL */ - sexOptions.push({text: `Fuck ${his} face hole`, scene: `FFuckdollOral`}); + sexOptions.push({text: `Fuck ${his} face hole`, scene: () => App.Interact.fFuckdollOral(slave)}); if (canDoVaginal(slave)) { - sexOptions.push({text: `Fuck ${his} front hole`, scene: `FFuckdollVaginal`}); + sexOptions.push({text: `Fuck ${his} front hole`, scene: () => App.Interact.fFuckdollVaginal(slave)}); } if (canGetPregnant(slave) && (slave.geneticQuirks.superfetation !== 2 || V.geneticMappingUpgrade !== 0) && V.seePreg !== 0) { if (canImpreg(slave, V.PC)) { - sexOptions.push({text: `Put a baby in ${him}`, scene: `FFuckdollImpreg`}); + sexOptions.push({text: `Put a baby in ${him}`, scene: () => App.Interact.fFuckdollImpreg(slave)}); } } if (canDoAnal(slave)) { - sexOptions.push({text: `Fuck ${his} rear hole`, scene: `FFuckdollAnal`}); + sexOptions.push({text: `Fuck ${his} rear hole`, scene: () => App.Interact.fFuckdollAnal(slave)}); } } let activeSlaveRepSacrifice = repGainSacrifice(slave, V.arcologies[0]); diff --git a/src/interaction/universalRules.js b/src/interaction/universalRules.js index 8cc36e2042f4db1c1dd8a6085f3ad3dbb67fdcbf..96e0f24a0ee525b9466587a40f27b54eefbda860 100644 --- a/src/interaction/universalRules.js +++ b/src/interaction/universalRules.js @@ -78,13 +78,13 @@ App.UI.universalRules = function() { const options = new App.UI.OptionsGroup(); options.addOption("Slaves keep surnames", "surnamesForbidden") - .addValue("Yes", 1).on() - .addValue(`No going forward`, 0).off() + .addValue("Yes", 0).on() + .addValue(`No going forward`, 1).off() .customButton(`No and strip all current surnames`, () => { for (const slave of V.slaves) { slave.slaveSurname = 0; } - V.surnamesForbidden = 0; + V.surnamesForbidden = 1; }, passage()); if (V.surnamesForbidden === 0) { diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js index a810a07bf3991064fb2581add046741f81cc2847..0d5ca07c02493e14bc873f5942d2606dadcb5476 100644 --- a/src/js/DefaultRules.js +++ b/src/js/DefaultRules.js @@ -23,7 +23,10 @@ globalThis.DefaultRules = (function() { /** @type {string} */ let r; - let pronouns, he, him, his; + let pronouns; + let he; + let him; + let his; /** * @param {App.Entity.SlaveState} slave @@ -110,7 +113,8 @@ globalThis.DefaultRules = (function() { // merge all rules applying on a slave into one big rule /** @type {FC.RA.Rule[]} */ const rules = V.defaultRules.filter((rule) => ruleAppliesP(rule, slave)); - const ruleIds = [], assignments = []; + const ruleIds = []; + const assignments = []; for (const rule of rules) { ruleIds.push(rule.ID); assignments.push(ProcessAssignments(slave, Object.assign({}, rule.set))); @@ -1467,13 +1471,13 @@ globalThis.DefaultRules = (function() { break; case "penis enhancement": - if (!((slave.dick > 0 && slave.dick < 10) || slave.clit < 5)) { + if (!((slave.dick.isBetween(0, 10)) || slave.clit < 5)) { flag = false; } break; case "hyper penis enhancement": - if (V.arcologies[0].FSAssetExpansionistResearch !== 1 || !((slave.dick > 0 && slave.dick < 31) || slave.clit < 5)) { + if (V.arcologies[0].FSAssetExpansionistResearch !== 1 || !((slave.dick.isBetween(0, 31)) || slave.clit < 5)) { flag = false; } break; @@ -3071,7 +3075,8 @@ globalThis.DefaultRules = (function() { } // removing tags selected for removal. - let tags = [], i; + let tags = []; + let i; if (rule.removeLabel != null && rule.removeLabel !== '') { tags = rule.removeLabel.split("|"); } diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js index c3c9ba6d5a2cdd06210541f93f46378c561ba706..f6df3d3389f79ed102f12eea9c092801ea247dd2 100644 --- a/src/js/SlaveState.js +++ b/src/js/SlaveState.js @@ -1862,7 +1862,7 @@ App.Entity.SlaveState = class SlaveState { * * "striped underwear" * * "uncomfortable straps" * * "Western clothing" - */ + * @type {FC.Clothes} */ this.clothes = "no clothing"; /** * may accept strings, use at own risk @@ -1910,6 +1910,10 @@ App.Entity.SlaveState = class SlaveState { * * "extreme heels" * * "boots" * * "flats" + * * "platform heels" + * * "extreme heels" + * * "extreme platform heels" + * * "platform shoes" */ this.shoes = "none"; /** diff --git a/src/js/assignJS.js b/src/js/assignJS.js index f6f5451d6ce25d10572b20bafa6982ac1f774625..2cfb62b088bb30bc36ed4c454163f4a338bcc1f9 100644 --- a/src/js/assignJS.js +++ b/src/js/assignJS.js @@ -82,7 +82,7 @@ globalThis.assignJob = function(slave, job) { case Job.ARCADE.toLowerCase(): case "arcade": slave.assignment = Job.ARCADE; - if (slave.clothes !== "a fuckdoll suit") { + if (slave.clothes !== "a Fuckdoll suit") { slave.clothes = "no clothing"; } slave.shoes = "none"; diff --git a/src/js/economyJS.js b/src/js/economyJS.js index ff5179fb5f18b6a169750f977d1d841d0bd7cc63..85e2b2de7de308a0efcfa839a2584220d13de456 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -251,7 +251,6 @@ globalThis.calculateCosts = (function() { getMasterSuiteCosts() + getNurseryCosts() + getFarmyardCosts() + - getSecurityExpansionCost() + getLifestyleCosts() + getFSCosts() + getCitizenOrphanageCosts() + @@ -270,6 +269,10 @@ globalThis.calculateCosts = (function() { predictTotalSlaveCosts() ); + if (V.secExpEnabled > 0) { + totalCosts += getSecurityExpansionCost(); + } + if (V.incubator.capacity > 0) { totalCosts += getIncubatorCosts(); } @@ -303,7 +306,6 @@ globalThis.calculateCosts = (function() { cashX(forceNeg(getMasterSuiteCosts()), "masterSuite"); cashX(forceNeg(getNurseryCosts()), "nursery"); cashX(forceNeg(getFarmyardCosts()), "farmyard"); - cashX(forceNeg(getSecurityExpansionCost()), "securityExpansion"); cashX(forceNeg(getLifestyleCosts()), "personalLivingExpenses"); cashX(forceNeg(getFSCosts()), "futureSocieties"); cashX(forceNeg(getCitizenOrphanageCosts()), "citizenOrphanage"); @@ -321,6 +323,10 @@ globalThis.calculateCosts = (function() { cashX(forceNeg(getPCCosts()), "PCmedical"); getTotalSlaveCosts(); + if (V.secExpEnabled > 0) { + cashX(forceNeg(getSecurityExpansionCost()), "securityExpansion"); + } + if (V.incubator.capacity > 0) { cashX(forceNeg(getIncubatorCosts()), "incubator"); cashX(forceNeg(getIncubatorSlavesCosts()), "incubatorSlaves"); @@ -629,28 +635,25 @@ globalThis.calculateCosts = (function() { ); } - // security expansion function getSecurityExpansionCost() { let secExpCost = 0; - if (V.secExpEnabled > 0) { - const unitModifier = function(x) { - if (x === 'slaves') { - return 0.5; - } else if (x === 'mercs') { - return 1.5; - } - return 1; - }; + const soldierMod = 1 + V.SecExp.edicts.defense.soldierWages * 0.5; // 1.0, 1.5, 2.0 + const unitModifier = function(x) { + if (x === 'slaves') { + return 0.5; + } else if (x === 'mercs') { + return 1.5; + } + return 1; + }; - secExpCost += App.SecExp.upkeep.edictsCash(); - secExpCost += App.SecExp.upkeep.SF(); - secExpCost += App.SecExp.upkeep.buildings(); - const soldierMod = 1 + V.SecExp.edicts.defense.soldierWages * 0.5; // 1.0, 1.5, 2.0 + secExpCost += App.SecExp.upkeep.edictsCash(); + secExpCost += App.SecExp.upkeep.SF(); + secExpCost += App.SecExp.upkeep.buildings(); - for (const unit of App.SecExp.unit.list().slice(1)) { - for (const squad of V.SecExp.units[unit].squads) { - secExpCost += squad.troops * 10 * unitModifier(unit) * soldierMod; - } + for (const unit of App.SecExp.unit.list().slice(1)) { + for (const squad of V.SecExp.units[unit].squads) { + secExpCost += squad.troops * 10 * unitModifier(unit) * soldierMod; } } return secExpCost; diff --git a/src/js/eventHandlers.js b/src/js/eventHandlers.js index eb50a55dcb86c13b9bb323e3c9e71e0d25cfa109..ae5625cccbca616490e1efe53ee7642b68b0c18b 100644 --- a/src/js/eventHandlers.js +++ b/src/js/eventHandlers.js @@ -27,6 +27,7 @@ App.EventHandlers = function() { function storyReady() { App.UI.Theme.init(); App.UI.Hotkeys.init(); + App.UI.GlobalTooltips.update(); } function optionsChanged() { diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js index c1a0c6f3703349d40454a07a3adbe6ad604b7f28..dedd1a7448f5a96f1cdd44a1897f11d8501c9fde 100644 --- a/src/js/eventSelectionJS.js +++ b/src/js/eventSelectionJS.js @@ -308,18 +308,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (eventSlave.assignment !== Job.QUARTER) { - if (eventSlave.clothes === "a penitent nuns habit") { - if (eventSlave.anus > 0) { - if (eventSlave.devotion >= -20) { - if (eventSlave.devotion <= 50) { - V.RESSevent.push("penitent"); - } - } - } - } - } - if (eventSlave.slaveName !== eventSlave.birthName && eventSlave.birthName !== "") { if (eventSlave.devotion <= 20) { if (eventSlave.trust >= -20) { @@ -364,18 +352,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (eventSlave.devotion > 20) { - if (eventSlave.trust > 20) { - if (eventSlave.actualAge < 22) { - if (canDoAnal(eventSlave) || canDoVaginal(eventSlave)) { - if (V.PC.actualAge >= 50) { - V.RESSevent.push("old PC age difference"); - } - } - } - } - } - if (eventSlave.fetish === "humiliation" || eventSlave.energy > 95) { if (eventSlave.devotion <= 50) { if (eventSlave.devotion >= -20) { @@ -482,19 +458,6 @@ if(eventSlave.drugs === "breast injections") { } } } - if (eventSlave.fetish === "sadist") { - if (eventSlave.fetishStrength > 20) { - if (App.Entity.facilities.arcade.established && App.Entity.facilities.arcade.hasEmployees) { - if (eventSlave.trust >= -20) { - if (eventSlave.devotion > 50) { - if (eventSlave.belly < 300000) { - V.RESSevent.push("arcade sadist"); - } - } - } - } - } - } if (eventSlave.assignment !== Job.QUARTER) { if (eventSlave.dick === 0) { if (eventSlave.vagina === -1) { @@ -517,18 +480,6 @@ if(eventSlave.drugs === "breast injections") { V.RESSevent.push("back stretch"); } } - - if (eventSlave.devotion > 20) { - if (eventSlave.trust > 20) { - if (eventSlave.rules.speech !== "restrictive") { - if (eventSlave.choosesOwnClothes !== 1) { - if (getExposure(eventSlave) === 0) { - V.RESSevent.push("modest clothes"); - } - } - } - } - } } if (V.PC.vagina > -1) { if (eventSlave.devotion <= 20) { @@ -754,14 +705,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (eventSlave.devotion < -20) { - if (eventSlave.trust >= -20) { - if (eventSlave.clothes === "uncomfortable straps") { - V.RESSevent.push("bondage gear"); - } - } - } - if (eventSlave.labia > 1 && eventSlave.vagina >= 0) { if (eventSlave.muscles > 5 || eventSlave.diet === "muscle building") { if (eventSlave.belly < 10000) { @@ -806,13 +749,6 @@ if(eventSlave.drugs === "breast injections") { if (eventSlave.rules.release.masturbation === 0 && !App.Utils.hasNonassignmentSex(eventSlave)) { if (eventSlave.need) { - if (eventSlave.devotion <= 95) { - if (eventSlave.trust >= -20) { - if ((eventSlave.chastityPenis !== 1) || (eventSlave.dick === 0)) { - V.RESSevent.push("forbidden masturbation"); - } - } - } if (eventSlave.devotion >= -20) { if (eventSlave.trust >= -50) { V.RESSevent.push("desperately horny"); @@ -863,32 +799,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (V.seePreg !== 0) { - if (isFertile(eventSlave)) { - if (eventSlave.devotion > 50) { - if (V.PC.dick !== 0) { - if (eventSlave.fetish === "pregnancy" || eventSlave.energy > 95) { - if (eventSlave.eggType === "human") { - if (eventSlave.fetishKnown === 1) { - if (eventSlave.vagina !== 0) { - if (eventSlave.anus > 0) { - if (eventSlave.geneticQuirks.superfetation === 2 && (eventSlave.intelligence + eventSlave.intelligenceImplant > 15) && eventSlave.womb.length > 0) { - if (eventSlave.belly < (eventSlave.pregAdaptation * 1750)) { - V.RESSevent.push("impregnation please"); - } - } else { - V.RESSevent.push("impregnation please"); - } - } - } - } - } - } - } - } - } - } - if (plugWidth(eventSlave) > 1) { if (eventSlave.assignment !== Job.CONFINEMENT && isSlaveAvailable(eventSlave)) { if (eventSlave.devotion <= 20) { @@ -993,13 +903,6 @@ if(eventSlave.drugs === "breast injections") { V.RESSevent.push("restricted profession"); } } - if (eventSlave.intelligence > 15) { - if (eventSlave.trust >= -20) { - if (eventSlave.devotion <= 20) { - V.RESSevent.push("restricted smart"); - } - } - } } } @@ -1039,16 +942,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (eventSlave.assignment !== Job.QUARTER) { - if (eventSlave.devotion > 50) { - if (eventSlave.trust > 50) { - if ([Job.CONCUBINE, Job.FUCKTOY, Job.MASTERSUITE].includes(eventSlave.assignment)) { - V.RESSevent.push("bed snuggle"); - } - } - } - } - if (eventSlave.minorInjury === "sore ass") { if (eventSlave.devotion <= 50) { V.RESSevent.push("sore ass"); @@ -1151,14 +1044,6 @@ if(eventSlave.drugs === "breast injections") { } } - if (eventSlave.assignment === Job.WHORE) { - if (canDoAnal(eventSlave) && (eventSlave.vagina < 0 || canDoVaginal(eventSlave))) { - if (eventSlave.devotion < -20 && eventSlave.trust >= -20) { - V.RESSevent.push("whore rebellious"); - } - } - } - if (eventSlave.assignment !== Job.QUARTER) { if (isAmputee(eventSlave)) { if (eventSlave.devotion > 20) { @@ -1323,9 +1208,6 @@ if(eventSlave.drugs === "breast injections") { } /* closes mindbreak exempt */ if (eventSlave.fetish === "mindbroken") { - if (canWalk(eventSlave)) { - V.RESSevent.push("mindbroken morning"); - } if (eventSlave.kindness !== undefined && eventSlave.kindness >= 100) { if ((isSlaveAvailable(eventSlave) && canWalk(eventSlave)) || ([Job.CONCUBINE, Job.FUCKTOY, Job.MASTERSUITE].includes(eventSlave.assignment))) { if (eventSlave.relationship === -3) { diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js index b440d93de6016f6b192d4e0f4d8fc0a9f487c902..84ba805ba924c6d7abbc0a7c73f2ffbfd3896f42 100644 --- a/src/js/itemAvailability.js +++ b/src/js/itemAvailability.js @@ -27,7 +27,7 @@ globalThis.isItemAccessible = (function() { /** * Returns array of wearable clothing in format [name, value], basically player facing / game data. * @param {Map} map Map to look in (such as App.Data.clothes) - * @param {function} [filter] + * @param {(arg0: any) => any} [filter] The callback function to run. * @returns {Array} */ function array(map, filter) { diff --git a/src/js/main.js b/src/js/main.js index accb599874e0ddcaccefa47d2e195874ae600359..66b976f0875448a8da8fb8f81021601b714ba29e 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -3,14 +3,6 @@ * @returns {HTMLDivElement} */ App.MainView.useFucktoy = function(slave) { - const fragment = document.createDocumentFragment(); - - function setEnvironment() { - V.AS = slave.ID; - V.nextButton = "Back"; - V.nextLink = passage(); - } - const {him, his} = getPronouns(slave); const div = document.createElement("div"); @@ -29,37 +21,38 @@ App.MainView.useFucktoy = function(slave) { if (slave.fuckdoll === 0) { div.append(", but for now:"); + const showScene = (passage, ...args) => $(linkDiv).empty().append(App.Interact[passage](slave, ...args)); + const linkArray = []; linkArray.push( - App.UI.DOM.passageLink(`Use ${his} mouth`, "fLips", setEnvironment), - App.UI.DOM.passageLink("Play with " + his + " tits", "fBoobs", setEnvironment) + App.UI.DOM.link(`Use ${his} mouth`, showScene, ["fLips"]), + App.UI.DOM.link(`Play with ${his} tits`, showScene, ["fBoobs"]) ); if (canDoVaginal(slave)) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${him}`, "fVagina", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Fuck ${him}`, showScene, ["fVagina"])); if (canDoAnal(slave)) { - linkArray.push(App.UI.DOM.passageLink(`Use ${his} holes`, "fButt", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Use ${his} holes`, showScene, ["fButt"])); } } if (canDoAnal(slave)) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${his} ass`, "fAnus", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Fuck ${his} ass`, showScene, ["fAnus"])); } if (canDoVaginal(slave) || canDoAnal(slave)) { if (slave.belly >= 300000) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${him} over ${his} belly`, "fBellyFuck", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Fuck ${him} over ${his} belly`, showScene, ["fBellyFuck"])); } } if (canPenetrate(slave)) { - linkArray.push(App.UI.DOM.passageLink(`Ride ${him}`, "fDick", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Ride ${him}`, showScene, ["fDick"])); } - linkArray.push(App.UI.DOM.passageLink(`Abuse ${him}`, "fAbuse", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Abuse ${him}`, showScene, ["fAbuse"])); - App.UI.DOM.appendNewElement("div", div, App.UI.DOM.generateLinksStrip(linkArray), "indent"); + const linkDiv = App.UI.DOM.appendNewElement("div", div, App.UI.DOM.generateLinksStrip(linkArray), "indent"); } else { div.append("."); } - fragment.append(div); return div; }; @@ -78,38 +71,36 @@ App.MainView.useGuard = function() { App.UI.DOM.appendNewElement("span", outerDiv, App.Interact.guardPose(guard), "scene-intro"); - function setEnvironment() { - V.AS = guard.ID; - V.nextButton = "Back"; - V.nextLink = passage(); - } + const showScene = (passage, ...args) => $(linkDiv).empty().append(App.Interact[passage](guard, ...args)); const {him, his} = getPronouns(guard); const linkArray = []; linkArray.push( - App.UI.DOM.passageLink(`Use ${his} mouth`, "fLips", setEnvironment), - App.UI.DOM.passageLink(`Play with ${his} tits`, "fBoobs", setEnvironment) + App.UI.DOM.link(`Use ${his} mouth`, showScene, ["fLips"]), + App.UI.DOM.link(`Play with ${his} tits`, showScene, ["fBoobs"]) ); if (canDoVaginal(guard)) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${him}`, "fVagina", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Fuck ${him}`, showScene, ["fVagina"])); if (canDoAnal(guard)) { - linkArray.push(App.UI.DOM.passageLink(`Use ${his} holes`, "fButt", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Use ${his} holes`, showScene, ["fButt"])); } + } + if (canDoAnal(guard)) { + linkArray.push(App.UI.DOM.link(`Fuck ${his} ass`, showScene, ["fAnus"])); + } + if (canDoVaginal(guard) || canDoAnal(guard)) { if (guard.belly >= 300000) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${him} over ${his} belly`, "fBellyFuck", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Fuck ${him} over ${his} belly`, showScene, ["fBellyFuck"])); } } if (canPenetrate(guard)) { - linkArray.push(App.UI.DOM.passageLink(`Ride ${him}`, "fDick", setEnvironment)); - } - if (canDoAnal(guard)) { - linkArray.push(App.UI.DOM.passageLink(`Fuck ${his} ass`, "fAnus", setEnvironment)); + linkArray.push(App.UI.DOM.link(`Ride ${him}`, showScene, ["fDick"])); } linkArray.push(App.UI.DOM.passageLink(`Abuse ${him}`, "Gameover", () => { V.gameover = "idiot ball"; })); - App.UI.DOM.appendNewElement("div", outerDiv, App.UI.DOM.generateLinksStrip(linkArray), "indent"); + const linkDiv = App.UI.DOM.appendNewElement("div", outerDiv, App.UI.DOM.generateLinksStrip(linkArray), "indent"); return outerDiv; }; diff --git a/src/js/physicalDevelopment.js b/src/js/physicalDevelopment.js index 3c7c22eb6173886520d2d89fa0fe97ed0560164e..96fa22e73aefdb98a755e36161b8888c7f4a40c3 100644 --- a/src/js/physicalDevelopment.js +++ b/src/js/physicalDevelopment.js @@ -38,10 +38,10 @@ globalThis.physicalDevelopment = (function physicalDevelopment() { if (slave.boobs - slave.boobsImplant <= 300) { increaseBoobsXX(slave); } - if (slave.dick > 0 && (slave.dick < 3 || slave.geneticQuirks.wellHung === 2)) { + if (slave.dick.isBetween(0, 3) || slave.geneticQuirks.wellHung === 2) { increaseDick(slave); } - if (slave.balls > 0 && slave.balls < 3) { + if (slave.balls.isBetween(0, 3)) { increaseBalls(slave); } if (slave.vagina > 0 && slave.ovaries > 0 && physicalAgeSwap > slave.pubertyAgeXX) { @@ -3208,67 +3208,67 @@ globalThis.physicalDevelopment = (function physicalDevelopment() { } } else if (slave.hormoneBalance <= -100) { if (physicalAgeSwap === 8) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 90) { slave.clit++; } } } else if (physicalAgeSwap === 9) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 90) { slave.clit++; } } } else if (physicalAgeSwap === 10) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 90) { slave.clit++; } } } else if (physicalAgeSwap === 11) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 12) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 13) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 14) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 15) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 16) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 17) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } } } else if (physicalAgeSwap === 18) { - if (slave.clit > 0 && slave.clit < 4) { + if (slave.clit.isBetween(0, 4)) { if (jsRandom(1, 100) > 70) { slave.clit++; } diff --git a/src/js/pregJS.js b/src/js/pregJS.js index 7c00b94302fff806401de5128170ee062f3f4982..a9b3dbaa556e82281bba82fc04585a4040d3742b 100644 --- a/src/js/pregJS.js +++ b/src/js/pregJS.js @@ -423,10 +423,9 @@ globalThis.setPregType = function(actor) { * @param {number} chance is the % chance to conceive. * @param {number} hole control's the hole involved (0 - vagina, 1 - ass, 2 - both). .mpreg did this. * @param {number} [fatherID] is the ID of her sire or 0 if undefined. - * @param {boolean} [displayOverride] is an override if defined - fatherID must be defined in this case. * @returns {string} */ -globalThis.knockMeUp = function(target, chance, hole, fatherID, displayOverride) { +globalThis.knockMeUp = function(target, chance, hole, fatherID) { let r = ``; if (V.seePreg !== 0) { // eslint-disable-next-line no-nested-ternary @@ -447,13 +446,11 @@ globalThis.knockMeUp = function(target, chance, hole, fatherID, displayOverride) // } else { target.pregKnown = 1; - if (!displayOverride) { - if (target.ID === -1) { - /* r += "<span class="lime">You have gotten pregnant.</span>"; */ - } else { - const {He} = getPronouns(target); - r += `<span class="lime">${He} has become pregnant.</span>`; - } + if (target.ID === -1) { + /* r += "<span class="lime">You have gotten pregnant.</span>"; */ + } else { + const {He} = getPronouns(target); + r += `<span class="lime">${He} has become pregnant.</span>`; } if (target.geneticQuirks.superfetation === 2 && target.womb.length > 0) { if (V.seeHyperPreg === 1) { diff --git a/src/js/quickListJS.js b/src/js/quickListJS.js index 6331fb161d0954f5a5d1fd53c3000be49d1d6eb8..6f6b45c2bfeb0363c22558577d27b5fd10cb4763 100644 --- a/src/js/quickListJS.js +++ b/src/js/quickListJS.js @@ -35,8 +35,8 @@ globalThis.quickListBuildLinks = function() { }; App.UI.quickBtnScrollToHandler = function() { - let $this = $(this), - $toElement = $this.attr('data-scroll-to'); + let $this = $(this); + let $toElement = $this.attr('data-scroll-to'); // note the * 1 enforces $offset to be an integer, without // it we scroll to True, which goes nowhere fast. let $offset = parseInt($this.attr('data-scroll-offset') || "0"); diff --git a/src/js/relationshipChecks.js b/src/js/relationshipChecks.js index 629252b9158731644952980e0cc13cd3f71eda87..86c50e712b0ffa71d35a5f63cb69f89cd23310eb 100644 --- a/src/js/relationshipChecks.js +++ b/src/js/relationshipChecks.js @@ -1,11 +1,11 @@ /** - * @param {{ rivalry: number }} id + * @param {{ rivalry: number }} actor * @returns {string} */ -globalThis.rivalryTerm = function(id) { - if (id.rivalry === 1) { +globalThis.rivalryTerm = function(actor) { + if (actor.rivalry === 1) { return "growing rival"; - } else if (id.rivalry === 2) { + } else if (actor.rivalry === 2) { return "rival"; } else { return "bitter rival"; @@ -13,38 +13,38 @@ globalThis.rivalryTerm = function(id) { }; /** - * @param {{ relationship: number, pronoun: number }} id + * @param {{ relationship: number, pronoun: number }} actor * @returns {string} */ -globalThis.relationshipTerm = function(id) { - if (id.relationship === 1) { +globalThis.relationshipTerm = function(actor) { + if (actor.relationship === 1) { return "friend"; - } else if (id.relationship === 2) { + } else if (actor.relationship === 2) { return "best friend"; - } else if (id.relationship === 3) { + } else if (actor.relationship === 3) { return "friend with benefits"; - } else if (id.relationship === 4) { + } else if (actor.relationship === 4) { return "lover"; } else { - return `slave ${getPronouns(id).wife}`; + return `slave ${getPronouns(actor).wife}`; } }; /** - * @param {{ relationship: number, pronoun: number }} id + * @param {{ relationship: number, pronoun: number }} actor * @returns {string} */ -globalThis.relationshipTermShort = function(id) { - if (id.relationship === 1) { +globalThis.relationshipTermShort = function(actor) { + if (actor.relationship === 1) { return "friend"; - } else if (id.relationship === 2) { + } else if (actor.relationship === 2) { return "BFF"; - } else if (id.relationship === 3) { + } else if (actor.relationship === 3) { return "FWB"; - } else if (id.relationship === 4) { + } else if (actor.relationship === 4) { return "lover"; } else { - return `${getPronouns(id).wife}`; + return `${getPronouns(actor).wife}`; } }; diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index 4b25cc9b20f798f5867c6a854a266f1ff53e3cec..9845e5a93bab869a15fb50f0ac6ec10c59104934 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -1177,7 +1177,7 @@ App.RA.options = (function() { render(element) { const greeting = App.UI.DOM.makeElement("p", null, "scene-intro"); App.UI.DOM.appendNewElement("div", greeting, `${properTitle()}, I will review your slaves and make changes that will have a beneficial effect. Apologies, ${properTitle()}, but this function is... not fully complete. It may have some serious limitations. Please use the '${noDefaultSetting.text}' option to identify areas I should not address.`); - App.UI.DOM.appendNewElement("div", greeting, `For things like breast, butt, lip, dick and ball injections you need to only set the growth targets in Physical Regimen and I'll try to figure out how to best achieve them, you probably won't need a separate rules for each of them or have to worry about ending the injections.`); + App.UI.DOM.appendNewElement("div", greeting, `For things like breast, butt, lip, dick, and ball injections, you need to only set the growth targets in Physical Regimen and I'll try to figure out how to best achieve them. You probably won't need a separate rule for each of them, or have to worry about ending the injections.`); const summary = App.UI.DOM.appendNewElement("div", greeting, `You can always see an overview of all of your rules in the `); summary.append(App.UI.DOM.passageLink("summary view", "Rules Assistant Summary")); summary.append(`.`); @@ -1972,11 +1972,11 @@ App.RA.options = (function() { ]; super("Collar", items); - const niceCollars = isItemAccessible.array(App.Data.slaveWear.collar, (c) => c.harsh); + const niceCollars = isItemAccessible.array(App.Data.slaveWear.collar, (c) => !c.harsh); niceCollars.sort(function(a, b) { if (a[0] < b[0]) { return -1; } if (a[0] > b[0]) { return 1; } return 0; }); this._nice = new ListSubSection(this, "Nice", niceCollars); - const harshCollars = isItemAccessible.array(App.Data.slaveWear.collar, (c) => !c.harsh); + const harshCollars = isItemAccessible.array(App.Data.slaveWear.collar, (c) => c.harsh); harshCollars.sort(function(a, b) { if (a[0] < b[0]) { return -1; } if (a[0] > b[0]) { return 1; } return 0; }); this._harsh = new ListSubSection(this, "Harsh", harshCollars); diff --git a/src/js/rulesAutosurgery.js b/src/js/rulesAutosurgery.js index 4b51fe57cf79f21905577e4b5a5c4f968ccc67a1..cb96326919ca434c3790a572c86f53da0be046e2 100644 --- a/src/js/rulesAutosurgery.js +++ b/src/js/rulesAutosurgery.js @@ -267,11 +267,10 @@ globalThis.rulesAutosurgery = (function() { slave.faceImplant += 25 - 5 * Math.trunc(V.PC.skill.medicine / 50) - 5 * V.surgeryUpgrade; applyAgeImplant(slave); }); - } else if ( - (thisSurgery.bodyhair === 2 && - (slave.underArmHStyle !== "bald" && slave.underArmHStyle !== "hairless") || - (slave.pubicHStyle !== "bald" && slave.pubicHStyle !== "hairless") - )) { + } else if (thisSurgery.bodyhair === 2 && ( + (slave.underArmHStyle !== "bald" && slave.underArmHStyle !== "hairless") || + (slave.pubicHStyle !== "bald" && slave.pubicHStyle !== "hairless") + )) { commitProcedure("body hair removal", () => { if (slave.underArmHStyle !== "hairless") { slave.underArmHStyle = "bald"; } if (slave.pubicHStyle !== "hairless") { slave.pubicHStyle = "bald"; } diff --git a/src/js/salon.js b/src/js/salon.js index 97336e536912f7ab25130de16962b814b53599ec..87ac19f472898a84be7c9f473b039729e17b3c88 100644 --- a/src/js/salon.js +++ b/src/js/salon.js @@ -226,13 +226,12 @@ App.Medicine.Modification.eyeSelector = function(entity, cheat = false) { /** * Update ears in salon * @param {App.Entity.SlaveState} slave - * @param {object} params - * @param {number|string} [params.primaryEarColor=0] - * @param {string} [params.secondaryEarColor=""] - * @param {boolean} [params.cheat=false] + * @param {boolean} [cheat=false] * @returns {HTMLElement} */ -App.Medicine.Salon.ears = function(slave, {primaryEarColor = 0, secondaryEarColor = "", cheat = false} = {}) { +App.Medicine.Salon.ears = function(slave, cheat = false) { + let primaryEarColor = 0; + let secondaryEarColor = ""; let updatePrimary = (newVal) => { primaryEarColor = newVal; apply(); @@ -242,7 +241,6 @@ App.Medicine.Salon.ears = function(slave, {primaryEarColor = 0, secondaryEarColo apply(); }; const container = document.createElement("div"); - container.id = "salon-ears"; container.append(content()); return container; @@ -294,11 +292,10 @@ App.Medicine.Salon.ears = function(slave, {primaryEarColor = 0, secondaryEarColo `Color ${his} ears`, () => { slave.earTColor = (primaryEarColor + secondaryEarColor); - App.Art.refreshSlaveArt(slave, 3, "art-frame"); if (!cheat) { cashX(forceNeg(V.modCost), "slaveMod", slave); } - App.Medicine.Salon.ears(slave); // discard selections after locking them in. + App.UI.reload(); } ) ); @@ -325,27 +322,20 @@ App.Medicine.Salon.ears = function(slave, {primaryEarColor = 0, secondaryEarColo function apply() { App.Art.refreshSlaveArt(slave, 3, "art-frame"); - App.Medicine.Salon.ears( - slave, - { - primaryEarColor: primaryEarColor, - secondaryEarColor: secondaryEarColor, - } - ); + jQuery(container).empty().append(content()); } }; /** * Update hair in salon * @param {App.Entity.SlaveState} slave - * @param {object} params - * @param {number|string} [params.primaryTailColor] - * @param {string} [params.secondaryTailColor] - * @param {boolean} [params.cheat] - * @returns {JQuery<HTMLElement>} + * @param {boolean} [cheat] + * @returns {HTMLElement} */ -App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailColor = "", cheat = false} = {}) { - const frag = new DocumentFragment(); +App.Medicine.Salon.tail = function(slave, cheat = false) { + const container = document.createElement("div"); + let primaryTailColor = 0; + let secondaryTailColor = ""; let updatePrimary = (newVal) => { primaryTailColor = newVal.value; apply(); @@ -357,10 +347,10 @@ App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailCo const {His, his} = getPronouns(slave); if (slave.tail !== "none") { - frag.append(tailDye()); + container.append(tailDye()); } - return jQuery("#salon-tail").empty().append(frag); + return container; function tailDye() { const frag = new DocumentFragment(); @@ -376,11 +366,10 @@ App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailCo "Match current hair", () => { slave.tailColor = slave.hColor; - App.Art.refreshSlaveArt(slave, 3, "art-frame"); if (!cheat) { cashX(forceNeg(V.modCost), "slaveMod", slave); } - apply(); + App.UI.reload(); } ) ); @@ -393,13 +382,13 @@ App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailCo div = document.createElement("div"); div.classList.add("choices"); - div.append(`Colors:`); + div.append(`Colors: `); div.append(createList(App.Medicine.Modification.Color.Primary, updatePrimary)); frag.append(div); div = document.createElement("div"); div.classList.add("choices"); - div.append(`Highlights:`); + div.append(`Highlights: `); div.append(createList(App.Medicine.Modification.Color.Secondary, updateSecondary)); frag.append(div); @@ -415,7 +404,7 @@ App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailCo if (!cheat) { cashX(forceNeg(V.modCost), "slaveMod", slave); } - App.Medicine.Salon.tail(slave); // discard selections after locking them in. + App.UI.reload(); // discard selections after locking them in. } ) ); @@ -446,12 +435,6 @@ App.Medicine.Salon.tail = function(slave, {primaryTailColor = 0, secondaryTailCo function apply() { App.Art.refreshSlaveArt(slave, 3, "art-frame"); - App.Medicine.Salon.tail( - slave, - { - primaryTailColor: primaryTailColor, - secondaryTailColor: secondaryTailColor, - } - ); + jQuery(container).empty().append(tailDye()); } }; diff --git a/src/js/sexActsJS.js b/src/js/sexActsJS.js index 26e576fd2391631c5fd86522ca83bc7cc4ca5bda..cb042571f0cec08d0345a5a43ef19ab202a378a7 100644 --- a/src/js/sexActsJS.js +++ b/src/js/sexActsJS.js @@ -58,7 +58,7 @@ globalThis.VCheck = (function() { } if (canDoAnal(slave)) { if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 1, -1, true); + knockMeUp(slave, 10, 1, -1); } seX(slave, "anal", V.PC, "penetrative", times); } @@ -104,7 +104,7 @@ globalThis.VCheck = (function() { } if (canDoVaginal(slave)) { if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 0, -1, true); + knockMeUp(slave, 10, 0, -1); } seX(slave, "vaginal", V.PC, "penetrative", times); } @@ -186,12 +186,12 @@ globalThis.VCheck = (function() { seX(slave, "vaginal", V.PC, "penetrative", bothTimes); seX(slave, "anal", V.PC, "penetrative", bothTimes); if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 2, -1, true); + knockMeUp(slave, 10, 2, -1); } } else { seX(slave, "vaginal", V.PC, "penetrative", bothTimes); if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 0, -1, true); + knockMeUp(slave, 10, 0, -1); } } } else if (canDoAnal(slave)) { @@ -219,7 +219,7 @@ globalThis.VCheck = (function() { } seX(slave, "anal", V.PC, "penetrative", analTimes); if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 1, -1, true); + knockMeUp(slave, 10, 1, -1); } } return r; @@ -238,16 +238,11 @@ globalThis.VCheck = (function() { } } - /** - * Before using this function, set V.partner to the index of the partner in the V.slaves array - analTimes is how many times to increment the Anal counts, if there is no Vagina available. - bothTimes is how many times to increment both holes counts (usually it is half of Anal). - In both cases if left undefined it will assume it to be 1. - This also checks for a valid Vagina/Accessory, though most code I've seen does this already, you - never know when someone might use the routine and forget to do such. + /** call as VCheck.Partner + * Checks for a valid Vagina/Accessory, though in most cases the calling code will do so anyway * @param {App.Entity.SlaveState} partner - * @param {number} [analTimes=1] - * @param {number} [bothTimes =1] + * @param {number} [analTimes = 1] how many times to increment the Anal counts, if there is no Vagina available. + * @param {number} [bothTimes = 1] how many times to increment both holes counts (usually it is half of Anal). */ function PartnerVCheck(partner, analTimes = 1, bothTimes = 1) { let r = ''; @@ -332,12 +327,12 @@ globalThis.SimpleSexAct = (function() { } else if (canDoVaginal(slave) && slave.vagina > 0 && fuckTarget > 33) { seX(slave, "vaginal", V.PC, playerSex); if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 0, -1, true); + knockMeUp(slave, 10, 0, -1); } } else if (canDoAnal(slave) && slave.anus > 0 && fuckTarget > 10) { seX(slave, "anal", V.PC, "penetrative"); if (canImpreg(slave, V.PC)) { - r += knockMeUp(slave, 10, 1, -1, true); + knockMeUp(slave, 10, 1, -1); } } else { seX(slave, "oral", V.PC, playerSex); @@ -396,18 +391,18 @@ globalThis.SimpleSexAct = (function() { sex = "vaginal"; sex2 = "vaginal"; if (canFemImpreg(subSlave, domSlave)) { - r += knockMeUp(subSlave, 3, 0, domSlave.ID, true); + knockMeUp(subSlave, 3, 0, domSlave.ID); } } else if (canDoVaginal(subSlave) && subSlave.vagina > 0 && canPenetrate(domSlave) && fuckTarget > 33) { sex = "vaginal"; if (canImpreg(subSlave, domSlave)) { - r += knockMeUp(subSlave, 3, 0, domSlave.ID, true); + knockMeUp(subSlave, 3, 0, domSlave.ID); } } else if (canDoAnal(subSlave) && subSlave.anus > 0 && canPenetrate(domSlave) && fuckTarget > 10) { // i think would impregnate from anal here even without .mpreg? same in original widget too sex = "anal"; if (canImpreg(subSlave, domSlave) && subSlave.mpreg === 1) { - r += knockMeUp(subSlave, 3, 1, domSlave.ID, true); + knockMeUp(subSlave, 3, 1, domSlave.ID); } } else { sex = "oral"; diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index 09267c6cf09e4a80d81f602d33b186a694a15d23..359dc38274ab1b8eac10cae9c3f05fa047067c65 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -150,8 +150,10 @@ globalThis.BeautyArray = (function() { } function adjustBeauty(text, beautyChange) { - retval.push({text: text, value: beautyChange}); - beauty += beautyChange; + if (beautyChange) { + retval.push({text: text, value: beautyChange}); + beauty += beautyChange; + } } /** @@ -280,7 +282,7 @@ globalThis.BeautyArray = (function() { break; case "straightening braces": case "cosmetic braces": - if (slave.visualAge > 14 && slave.visualAge < 18) { + if (slave.visualAge.isBetween(14, 18)) { adjustBeauty("Teeth", (1)); } break; @@ -2159,8 +2161,10 @@ globalThis.FResultArray = (function() { * @param {number} FResultChange */ function adjustFResult(text, FResultChange) { - retval.push({text: text, value: FResultChange}); - result += FResultChange; + if (FResultChange) { + retval.push({text: text, value: FResultChange}); + result += FResultChange; + } } return FResult; diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js index 30a4ad03b8758af395585448cb8e52001d1bbb14..1131d3efaefdeb3811fb06127b53341eaf84a77b 100644 --- a/src/js/slaveListing.js +++ b/src/js/slaveListing.js @@ -813,13 +813,12 @@ App.UI.SlaveList.penthousePage = function() { } else { slaveWrapper.append(" as a Sexual Ambassador"); if (A.influenceTarget === -1) { - slaveWrapper.append(", but ", App.UI.DOM.makeElement("span", `${he} has no target to influence.`, "warning")); + slaveWrapper.append(", but ", App.UI.DOM.makeElement("span", `${he} has no target to influence. `, "warning")); } else { const targetName = V.arcologies.find(a => a.direction === A.influenceTarget).name; - slaveWrapper.append(` to ${targetName}.`); + slaveWrapper.append(` to ${targetName}. `); } } - slaveWrapper.append(". "); const link = App.UI.DOM.makeElement("span", App.UI.DOM.passageLink("Manage Recruiter", "Recruiter Select"), "major-link"); link.id = "manageRecruiter"; slaveWrapper.append(link, " ", App.UI.DOM.makeElement("span", App.UI.Hotkeys.hotkeys("Recruiter Select"), "hotkey")); diff --git a/src/js/spanMacroJS.js b/src/js/spanMacroJS.js index 61760b318d2d82c24865279255ce48018f846033..cf385d4701903eaade2d2e3e9fd37a91b86b45ea 100644 --- a/src/js/spanMacroJS.js +++ b/src/js/spanMacroJS.js @@ -23,6 +23,7 @@ Macro.add('span', { return this.error(`bad evaluation: ${typeof ex === 'object' ? ex.message : ex}`); } + // FIXME: Expected an assignment or function call and instead saw an expression. Config.debug && this.debugView.modes({block: true}); jQuery(`<span id='${String(result)}' />`) diff --git a/src/js/statsChecker/statsChecker.js b/src/js/statsChecker/statsChecker.js index fd9c58062c802844409818e16f4936a31eed1edf..18c37f8cab065eed862098fe57e5a4e544d2bed5 100644 --- a/src/js/statsChecker/statsChecker.js +++ b/src/js/statsChecker/statsChecker.js @@ -28,6 +28,16 @@ globalThis.isSlaveAvailable = function(slave) { return true; }; +/** + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +globalThis.isFaceVisible = function(slave) { + const obscuringClothes = ["a Fuckdoll suit", "restrictive latex", "a burqa", "a niqab and abaya", "a klan robe", "a slutty klan robe"].includes(slave.clothes); // Debatable whether "a cybersuit", "battlearmor", "Imperial Plate", should be added. Helmets could be off in short periods. + const obscuringFaceAccessory = ["porcelain mask"].includes(slave.faceAccessory); + return (!obscuringClothes && !obscuringFaceAccessory); +}; + globalThis.SlaveStatsChecker = (function() { return { checkForLisp: hasLisp, @@ -900,6 +910,14 @@ globalThis.isHindered = function(slave) { } else if (slave.muscles < -30) { return true; } + // player exclusives + if (slave.ID === -1) { + if (onBedRest(slave)) { + return true; + } else if (slave.criticalDamage !== 0) { + return true; + } + } return false; }; diff --git a/src/js/utilsDOM.js b/src/js/utilsDOM.js index 2767961d99f387cec4bb0ff4b7fb1b908985ca45..88f0c8447abf2672e2ee7fafb35aa18cb8666573 100644 --- a/src/js/utilsDOM.js +++ b/src/js/utilsDOM.js @@ -79,13 +79,19 @@ App.UI.DOM.link = function(linkText, handler, args = [], passage = "", tooltip = const hArgs = Array.isArray(args) ? args : [args]; const link = document.createElement("a"); link.textContent = linkText; - link.title = tooltip; link.onclick = () => { handler(...hArgs); if (passage !== '') { SugarCube.Engine.play(passage); } }; + + if (tooltip) { + tippy(link, { + content: tooltip, + }); + } + return link; }; @@ -523,3 +529,18 @@ App.UI.DOM.makeRow = function(table, ...items) { cell.innerHTML = item; } }; + +/** + * Creates a checkbox. + * @param arg - item to be checked. Currently only designed to with items that have values of 0 - 1. + */ +App.UI.DOM.makeCheckbox = function(arg) { + const checkbox = document.createElement("input"); + checkbox.setAttribute("type", "checkbox"); + checkbox.checked = (V[arg] === 1); + + checkbox.onchange = () => { + V[arg] = checkbox.checked ? 1 : 0; + }; + return checkbox; +}; diff --git a/src/js/utilsPC.js b/src/js/utilsPC.js index 2c2eb72a692b863b88145e28a4714cf03348a373..905c6c460f3b62101e772ec62bbea6df2ce17b44 100644 --- a/src/js/utilsPC.js +++ b/src/js/utilsPC.js @@ -627,6 +627,8 @@ globalThis.onBedRest = function(actor) { // consider player health and injury in the future! if (!actor) { return null; + } else if (actor.health.shortDamage > 0) { + return true; } else if (!canMove(actor)) { return true; } else if (actor.preg > actor.pregData.normalBirth / 1.33 && actor.womb.find((ft) => ft.genetics.geneticQuirks.polyhydramnios === 2 && ft.age >= 20)) { @@ -649,7 +651,7 @@ globalThis.resetPersonalAttention = function() { /** * Param takes "classic" PC careers, and then function checks data to see if PC has that classic career or a 4.0 equivalent. - * @param {String} category + * @param {"wealth"|"escort"|"servant"|"gang"|"BlackHat"|"capitalist"|"mercenary"|"engineer"|"medicine"|"slaver"|"celebrity"|"arcology"} category * @returns {boolean} */ globalThis.isPCCareerInCategory = function(category) { diff --git a/src/js/utilsSlave.js b/src/js/utilsSlave.js index 113bb8d6663e62a2034164c30060379c970aa866..bf003da1defeb9196c739fd2fb257b0a00192262 100644 --- a/src/js/utilsSlave.js +++ b/src/js/utilsSlave.js @@ -2289,7 +2289,7 @@ globalThis.SlaveTitle = function(slave) { r = `big bottomed ${r}`; } - if (slave.weight > 10 && slave.weight < 100 && slave.boobs > 5000 && slave.butt > 5 && slave.hips >= 2 && slave.bellyPreg >= 30000 && slave.counter.births >= 10) { + if (slave.weight.isBetween(10, 100) && slave.boobs > 5000 && slave.butt > 5 && slave.hips >= 2 && slave.bellyPreg >= 30000 && slave.counter.births >= 10) { r = `${r} fertility goddess`; } else if (slave.counter.births >= 6) { r = `${r} broodmother`; @@ -3565,3 +3565,7 @@ globalThis.addPartner = function(slave, partner) { partnerState.partners.add(slave.ID); } }; + +globalThis.resetHGCum = function(s) { + return 2 + Math.trunc((s.balls / 5) + (s.energy / 95) + (s.health.condition / 95) + (s.devotion / 95) + (V.reproductionFormula * 5)); +}; diff --git a/src/js/utilsUnits.js b/src/js/utilsUnits.js index 60761802c6a6b3ba0e7370554515654d0085d919..4446fd1cb0fb8ecd232cc81fdc4e939b798e2d69 100644 --- a/src/js/utilsUnits.js +++ b/src/js/utilsUnits.js @@ -1,8 +1,8 @@ /** - * Returns numbers as text, e.g. 10 as "ten", according to the player's settings + * Converts numbers to text according to the player's settings. * @param {number} x - * @param {boolean} [printText=false] (optional) - * @returns {string} + * @param {boolean} [printText=false] Whether to return the text form regardless of the user's settings. Mainly used for events. + * @returns {string} Returns the given value in string form as either an integer (e.g. "10") or word form (e.g."ten"). */ globalThis.num = function(x, printText = false) { const max = V.showNumbersMax; @@ -131,17 +131,29 @@ globalThis.num = function(x, printText = false) { } }; -globalThis.asPlural = function(single, plural) { +/** + * Converts the given string to the plural form of the given string. Mainly used as a helper function. + * @param {string|{single: string, plural: string}} single The singular form. + * @param {string} [plural] The plural form (e.g. "oxen" for "ox"). Returns the singular form with an "s" if one is not given. + * @returns {string} Returns the plural form of a given number of items. + */ +globalThis.asPlural = function(single, plural = null) { if (typeof single !== 'string') { let asObj = single; single = asObj.single; plural = asObj.plural; } - if (plural == null) { + if (!plural) { plural = single + "s"; } return plural; }; + +/** + * Converts the given string to the singular form of the given string. Mainly used as a helper function. + * @param {string|{single: string}} single The singular form. + * @returns {string} Returns the singular form of a given number of items. + */ globalThis.asSingular = function(single) { if (typeof single !== 'string') { let asObj = single; @@ -149,38 +161,66 @@ globalThis.asSingular = function(single) { } return single; }; -// When 1, shows "a (slave)" + +/** + * Converts the given number to a string in either singular or plural form. + * @param {number} number The number to format. + * @param {string} single The singular form. + * @param {string} plural The plural form (e.g. "oxen" for "ox"). Returns the singular form with an "s" if one is not given. + * @returns {string} Returns "a _", "less than one _", or the number formatted as either words or numbers, depending on the users' settings. + */ globalThis.numberWithPlural = function(number, single, plural) { if (number === 0) { return "no " + asPlural(single, plural); } else if (number === 1) { return addA(asSingular(single)); - } else if (number > 0 && number < 1) { + } else if (number.isBetween(0, 1)) { return "less than one " + asSingular(single); } else { - return number + " " + asPlural(single, plural); + return num(number) + " " + asPlural(single, plural); } }; -// when 1, shows "one (slave)" +/** + * Converts the given number to a string in either singular or plural form. + * @param {number} number The number to format. + * @param {string} single The singular form. + * @param {string} [plural] The plural form (e.g. "oxen" for "ox"). Returns the singular form with an "s" if one is not given. + * @returns {string} Returns "no _", "one _", "less than one _", or the number formatted as either words or numbers, depending on the user's settings. + */ globalThis.numberWithPluralOne = function(number, single, plural) { if (number === 0) { return "no " + asPlural(single, plural); } else if (number === 1) { return "one " + asSingular(single); - } else if (number > 0 && number < 1) { + } else if (number.isBetween(0, 1)) { return "less than one " + asSingular(single); } else { - return number + " " + asPlural(single, plural); + return num(number) + " " + asPlural(single, plural); } }; -// shows "less than one (slave)" instead of "no (slaves)" when number is 0. + +/** + * Converts the given number to a string in either singular or plural form. + * @param {number} number The number to format. + * @param {string} single The singular form. + * @param {string} plural The plural form (e.g. "oxen" for "ox"). + * @returns {string} Returns "less than one _" instead of "no _" when `number` is 0. + */ globalThis.numberWithPluralNonZero = function(number, single, plural) { if (number === 0) { number = 0.1; } return numberWithPlural(number, single, plural); }; + +/** + * Converts the given number to a string in either singular or plural form. + * @param {number} number The number to format. + * @param {string} single The singular form. + * @param {string} plural The plural form (e.g. "oxen" for "ox"). + * @returns {string} Returns the singular form if `number` is greater than 0 and less than or equal to 1. Otherwise returns the plural form of the number. + */ globalThis.onlyPlural = function(number, single, plural) { if (number > 0 && number <= 1) { return asSingular(single); @@ -189,9 +229,9 @@ globalThis.onlyPlural = function(number, single, plural) { }; /** - * Returns numbers with comma, e.g. 10000 as "10,000", according to the player's settings - * @param {number} s - * @returns {string} + * Converts the given number to a string with or without commas, based on the user's settings. + * @param {number} s The number to format. + * @returns {string} Returns the number either with or without comma dividers, depending on the user's settings. */ globalThis.commaNum = function(s) { // Separated from num because some places in code (like long lists, tables) should never have numbers spelled out, but still benefit from commas @@ -206,9 +246,9 @@ globalThis.commaNum = function(s) { }; /** - * Returns the number of weeks in a years / months / weeks format - * @param {number} weeks - * @returns {string} + * Converts the given number in weeks to a string in a years / months / weeks format. + * @param {number} weeks The number of weeks to format. + * @returns {string} Returns "_ years _ months _ weeks". */ globalThis.years = function(weeks) { let years = 0; @@ -244,52 +284,66 @@ globalThis.years = function(weeks) { months += quarters * 3; // Each quarter has three months. if (years) { - array.push(`${num(years)} year${years !== 1 ? `s` : ``}`); + array.push(numberWithPluralOne(years, 'year')); } if (months) { - array.push(`${num(months)} month${months !== 1 ? `s` : ``}`); + array.push(numberWithPluralOne(months, 'month')); } if (weeks) { - array.push(`${num(weeks)} week${weeks !== 1 ? `s` : ``}`); + array.push(numberWithPluralOne(weeks, 'week')); } return toSentence(array); }; + /** - * @param {number} [weeks] - * @param {number} [bonusDay] - * @returns {Date} + * Converts the given number in weeks to a new Date object. + * @param {number} [weeks] The week to use. Uses the current week if one is not given. + * @param {number} [bonusDay] A specific day of the week to represent. 0-indexed. + * @returns {Date} Returns a new Date object. */ globalThis.asDate = function(weeks = null, bonusDay = 0) { - if (weeks == null) { + if (weeks === null) { weeks = V.week; } let d = new Date(2037, 0, 12); d.setDate(d.getDate() + weeks * 7 + bonusDay); return d; }; + /** - * @param {number} [weeks] - * @param {number} [bonusDay] - * @returns {string} + * Formats the given number in weeks as a string. + * @param {number} [weeks] The week to use. Uses the current week if one is not given. + * @param {number} [bonusDay] A specific day of the week to represent. 0-indexed. + * @returns {string} Returns a string of the number formatted as a date based on the user's locale settings. */ globalThis.asDateString = function(weeks = null, bonusDay = 0) { return asDate(weeks, bonusDay).toLocaleString(undefined, {year: 'numeric', month: 'long', day: 'numeric'}); }; /** - * @param {number} s - * @returns {string} + * Formats the given number as currency. + * @param {number} s The number to format. + * @returns {string} Returns a string of the number formatted as a currency. */ -globalThis.cashFormat = function(s) { +globalThis.cashFormat = function(s = 0) { if (s < 0) { return `-¤${commaNum(Math.abs(s))}`; } return `¤${commaNum(s)}`; }; -globalThis.cashFormatColor = function(s, invert = false) { + +/** + * Formats the given number as currency. + * + * Positive values returns in green, negative values return in red. + * @param {number} s The number to format. + * @param {boolean} invert Whether or not to invert the numbers. + * @returns {string} Returns a string of the number formatted as a currency with different colors depending on the amount. + */ +globalThis.cashFormatColor = function(s = 0, invert = false) { if (invert) { s = -1 * s; } @@ -306,11 +360,13 @@ globalThis.cashFormatColor = function(s, invert = false) { }; /** - * @param {number} s - * @returns {string} + * Formats the given number as reputation. + * + * Positive values returns in green, negative values return in red. + * @param {number} s The number to format. + * @returns {string} Returns a given number of reputation as a string. */ -globalThis.repFormat = function(s) { - /* if (!s) { s = 0; }*/ +globalThis.repFormat = function(s = 0) { if (V.cheatMode === 1 || V.debugMode === 1) { if (s > 0) { return `<span class="green">${commaNum(Math.round(s * 100) / 100)} rep</span>`; @@ -345,18 +401,15 @@ globalThis.repFormat = function(s) { } else if (weight < 0) { return `<span class="red">− rep</span>`; } - /* return weight;*/ } }; /** - * @param {number} s - * @returns {string} + * Converts the given number in kg to a string in tons or kg. + * @param {number} s The number to format. Returns "tons" if greater than 1000, otherwise returns "kg". + * @returns {string} Returns "_ tons", "1 ton" (or "one ton"), or "_ kg". */ -globalThis.massFormat = function(s) { - if (!s) { - s = 0; - } +globalThis.massFormat = function(s = 0) { if (Math.abs(s) >= 1000) { s = Math.trunc(s / 1000); if (s !== 1) { @@ -370,26 +423,26 @@ globalThis.massFormat = function(s) { }; /** - * Takes an integer e.g. slave.hLength, returns a string in the format 10 inches - * @param {number} cm - * @returns {string} + * Converts the given number in cm to a string in inches. + * @param {number} cm The number to format, in cm. + * @returns {string} Returns "less than an inch", "1 inch" (or "one inch"), or "_ inches". */ globalThis.cmToInchString = function(cm) { let inches = cm / 2.54; - if (inches > 0 && inches < 1) { + if (inches.isBetween(0, 1)) { return "less than an inch"; } inches = Math.round(inches); if (inches === 1) { - return "1 inch"; + return `${num(1)} inch`; } return `${inches} inches`; }; /** - * takes an integer e.g. slave.height, returns a string in the format 6'5" - * @param {number} cm - * @returns {string} + * Converts the given number in cm to a string in feet and inches. + * @param {number} cm The value to convert. + * @returns {string} Returns "less than an inch", "1 inch" (or "one inch"), "_ inches", or "_'_"". */ globalThis.cmToFootInchString = function(cm) { if (Math.round(cm / 2.54) < 12) { @@ -399,18 +452,18 @@ globalThis.cmToFootInchString = function(cm) { }; /** - * takes a dick value e.g. slave.dick, returns a string in the format 6 inches - * @param {number} dick - * @returns {string} + * Converts the given `.dick` value to a string in inches. + * @param {number} dick The value to convert. + * @returns {string} Returns "less than an inch", "1 inch" (or "one inch"), or "_ inches". */ globalThis.dickToInchString = function(dick) { return cmToInchString(dickToCM(dick)); }; /** - * takes a dick value e.g. slave.dick, returns an int of the dick length in cm - * @param {number} dick - * @returns {number} + * Converts the given `.dick` value to a number in cm. + * @param {number} dick The value to convert. + * @returns {number} Returns the value in cm. */ globalThis.dickToCM = function(dick) { if (dick < 9) { @@ -420,19 +473,20 @@ globalThis.dickToCM = function(dick) { } return dick * 6; }; + /** - * takes a ball value e.g. slave.balls, returns a string in the format 3 inches - * @param {number} balls - * @returns {string} + * Converts the given `.balls` value to a string in inches. + * @param {number} balls The value to convert. + * @returns {string} Returns "less than an inch", "1 inch" (or "one inch"), or "_ inches". */ globalThis.ballsToInchString = function(balls) { return cmToInchString(ballsToCM(balls)); }; /** - * takes a ball value e.g. slave.balls, returns an int of the ball size in cm - * @param {number} balls - * @returns {number} + * Converts the given `.balls` value to a number in cm. + * @param {number} balls The value to convert. + * @returns {number} Returns the value in cm. */ globalThis.ballsToCM = function(balls) { if (balls < 2) { @@ -442,9 +496,9 @@ globalThis.ballsToCM = function(balls) { }; /** - * takes a dick value e.g. slave.dick, returns a string in the format of either `20cm (8 inches)`, `8 inches`, or `20cm` - * @param {number} dick - * @returns {string} + * Converts the given `.dick` value to a string in either cm or inches, depending on the user's settings. + * @param {number} dick The value to convert. + * @returns {string} Returns either "_cm (_ inches)", "_ inches", or "_cm". */ globalThis.dickToEitherUnit = function(dick) { if (V.showInches === 1) { @@ -457,9 +511,9 @@ globalThis.dickToEitherUnit = function(dick) { }; /** - * takes a ball value e.g. slave.balls, returns a string in the format of either `20cm (8 inches)`, `8 inches`, or `20cm` - * @param {number} balls - * @returns {string} + * Converts the given `.balls` value to a string in either cm or inches, depending on the user's settings. + * @param {number} balls The value to convert. + * @returns {string} Returns either "_cm (_ inches)", "_ inches", or "_cm". */ globalThis.ballsToEitherUnit = function(balls) { if (V.showInches === 1) { @@ -472,9 +526,9 @@ globalThis.ballsToEitherUnit = function(balls) { }; /** - * takes an int in centimeters e.g. slave.height, returns a string in the format of either `200cm (6'7")`, `6'7"`, or `200cm` - * @param {number} height - * @returns {string} + * Converts the given `.height` value to a string in either cm or inches, depending on the user's settings. + * @param {number} height The value to convert. + * @returns {string} Returns either "_cm (_'_")", "_'_"", or "_cm". */ globalThis.heightToEitherUnit = function(height) { if (V.showInches === 1) { @@ -487,9 +541,9 @@ globalThis.heightToEitherUnit = function(height) { }; /** - * takes an int in centimeters e.g. slave.hLength, returns a string in the format of either `30cm (12 inches)`, `12 inches`, or `30cm` - * @param {number} length - * @returns {string} + * Converts the given value in cm to a string in either cm or inches, depending on the user's settings. + * @param {number} length The value to convert. + * @returns {string} Returns either "_cm (_ inches)", "_ inches", or "_cm". */ globalThis.lengthToEitherUnit = function(length) { if (V.showInches === 1) { diff --git a/src/js/vignettes.js b/src/js/vignettes.js index 61a1a6d8e2cc3a3d914275e781d1a54df7b72016..956303df3a67a14381bfe11ea30364908a712442 100644 --- a/src/js/vignettes.js +++ b/src/js/vignettes.js @@ -1467,7 +1467,7 @@ globalThis.GetVignette = function(slave) { } } if (V.arcologies[0].FSGenderRadicalist !== "unset") { - if (slave.dick > 0 && slave.dick < 3) { + if (slave.dick.isBetween(0, 3)) { vignettes.push({ text: `${he} got repeat business from a customer who is coming to terms with Gender Radicalism, and is unthreatened by ${his} little penis,`, type: "cash", @@ -3471,7 +3471,7 @@ globalThis.GetVignette = function(slave) { } } if (V.arcologies[0].FSGenderRadicalist !== "unset") { - if (slave.dick > 0 && slave.dick < 3) { + if (slave.dick.isBetween(0, 3)) { vignettes.push({ text: `${he} gratified a citizen who is coming to terms with Gender Radicalism, and is unthreatened by ${his} little penis,`, type: "rep", diff --git a/src/js/wombJS.js b/src/js/wombJS.js index d48f4045a5dd8cd2941470e2f934c88c0e1bbbdf..7a1cf00585da20ad7c359ae3ce51b912dfc29985 100644 --- a/src/js/wombJS.js +++ b/src/js/wombJS.js @@ -78,8 +78,9 @@ globalThis.WombInit = function(actor) { WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg); } else if (actor.womb.length === 0 && actor.pregType > 0 && actor.broodmother > 0 && actor.broodmotherOnHold < 1) { // sorry but for already present broodmothers it's impossible to calculate fully, approximation used. - let pw = actor.preg, - bCount, bLeft; + let pw = actor.preg; + let bCount; + let bLeft; if (pw > actor.pregData.normalBirth) { pw = actor.pregData.normalBirth; } // to avoid disaster. bCount = Math.floor(actor.pregType / pw); bLeft = actor.pregType - (bCount * pw); @@ -284,7 +285,17 @@ globalThis.WombGetVolume = function(actor) { // most legacy code from pregJS.tw function getCurData(actor, age) { let i = 0; - let min, max, ageMin, ageMax, rateMin, rateMax, one, rateOne, rate, cAge, cSize; + let min; + let max; + let ageMin; + let ageMax; + let rateMin; + let rateMax; + let one; + let rateOne; + let rate; + let cAge; + let cSize; let data = {}; while (actor.pregData.fetusWeek[i + 1] < age && i < actor.pregData.fetusWeek.length - 1) { @@ -317,7 +328,8 @@ globalThis.WombGetVolume = function(actor) { // most legacy code from pregJS.tw function getVolByLen(actor) { let phi = 1.618; - let targetData, targetLen; + let targetData; + let targetLen; let wombSize = 0; try { @@ -426,7 +438,17 @@ globalThis.FetusGetPrediction = function(actor, age) { function getCurData(actor, age) { let i = 0; - let min, max, ageMin, ageMax, rateMin, rateMax, one, rateOne, rate, cAge, cSize; + let min; + let max; + let ageMin; + let ageMax; + let rateMin; + let rateMax; + let one; + let rateOne; + let rate; + let cAge; + let cSize; let data = {}; while (actor.pregData.fetusWeek[i + 1] < age && i < actor.pregData.fetusWeek.length - 1) { @@ -459,7 +481,8 @@ globalThis.FetusGetPrediction = function(actor, age) { function getVolByLen(actor, age) { let phi = 1.618; - let targetData, targetLen; + let targetData; + let targetLen; let volume = 0; targetData = getCurData(actor, age); diff --git a/src/markets/gingering.js b/src/markets/gingering.js index c8308dcbda2f8e52c463d6f12bf1841f223818a2..4a7deacf27c35f079597fa081e34bf9a4a35ab42 100644 --- a/src/markets/gingering.js +++ b/src/markets/gingering.js @@ -2,8 +2,9 @@ App.Entity.GingeringParameters = class { /** Get gingering parameters for a particular slave and market. * @param {App.Entity.SlaveState} slave * @param {FC.Zeroable<FC.SlaveMarketName>} market + * @param {number} [arcIndex] - arcology index if market is "neighbor" */ - constructor(slave, market) { + constructor(slave, market, arcIndex) { /** @type {FC.Gingering} */ this.type = 0; /** @type {FC.GingeringDetection} */ @@ -13,7 +14,13 @@ App.Entity.GingeringParameters = class { // figure out what type of gingering applies, if any if (applyLawCheck(market) === 1 && V.policies.SMR.honestySMR === 1) { - /* SMR prohibits gingering and is enforced for this slave - do nothing */ + /* SMR prohibits gingering and is enforced for this seller - do nothing */ + } else if (App.Data.misc.schools.has(market)) { + /* slave schools have a reputation to maintain, and will never ginger their slaves */ + } else if (["wetware", "heap", "gangs and smugglers", "low tier criminals", "military prison", "white collar", "corporate"].includes(market)) { + /* these sellers see no reason to ginger their slaves */ + } else if (market === "neighbor" && App.Neighbor.opinion(V.arcologies[0], V.arcologies[arcIndex]) >= 50) { + /* socially-aligned neighbors will not try to cheat you */ } else if (slave.indenture > 0) { /* indentured servants cannot be gingered */ } else if (isShelterSlave(slave)) { @@ -89,10 +96,11 @@ globalThis._makeGingeredSlaveHandler = function(gParams, gKeys) { /** Get a gingered proxy for a slave. * @param {App.Entity.SlaveState} slave * @param {FC.Zeroable<FC.SlaveMarketName>} market + * @param {number} arcIndex - arcology number if market is "neighbor" * @returns {FC.GingeredSlave} * */ -globalThis.getGingeredSlave = function(slave, market) { - const gingering = new App.Entity.GingeringParameters(slave, market); +globalThis.getGingeredSlave = function(slave, market, arcIndex) { + const gingering = new App.Entity.GingeringParameters(slave, market, arcIndex); /** @type {Map<string, string|number>} */ const gingeredKeys = new Map(); diff --git a/src/markets/specificMarkets/schoolFutanari.js b/src/markets/specificMarkets/schoolFutanari.js index dc200b7c0297e3991bffe0c05bff37f9954053ad..d43461afdeaaac6daec2290eb44d9313d161cc49 100644 --- a/src/markets/specificMarkets/schoolFutanari.js +++ b/src/markets/specificMarkets/schoolFutanari.js @@ -98,43 +98,43 @@ App.Markets.TFS = function() { r.push(`You leave the Sisters' suite after a few hours of fucking and being fucked, feeling tired but satisfied.`); } if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 5, 0, -9, true)); + knockMeUp(V.PC, 5, 0, -9); } break; case 2: r.push(`She doesn't have to explain the Sisters' sexual equality this time, or that you have to subject yourself to it. You remember, and you let her know you're willing by giving her a friendly hug that squashes your breasts against each other and rubs your stiff pricks together. She reaches around you to grab your ass, already pulling you towards the pile of futas. You leave the Sisters' suite after a few hours of fucking and being fucked, in a state of total sexual satiation.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 10, 0, -9, true)); + knockMeUp(V.PC, 10, 0, -9); } break; case 3: r.push(`She asked that with a distinctly flirty tone, obviously hoping you'd agree again, and she isn't disappointed. You take her by the hand and skip over to the pile of futas, most of which know you very intimately by now. They see their Sister and you approaching, and those of them that don't have their mouths full greet you eagerly. Three of them quickly rearrange themselves to present you with a couple of dicks to sit on and a pussy to fuck, all at once. You leave the Sisters' suite after many hours of fucking and being fucked, tired but satisfied.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 20, 0, -9, true)); + knockMeUp(V.PC, 20, 0, -9); } break; case 4: r.push(`She asked that in a knowing voice, confident you'd agree, and was already moving in to kiss you when you did. She seems to want you more than usual today, and pulls you down onto the edge of the pit, guiding your cock into her pussy. She isn't selfish, of course, and reaches around to spread your buttocks so you can get fucked while you fuck. You leave the Sisters' suite after many hours of this, very tired. You wonder when you can make time to visit the Sisters again.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 40, 0, -9, true)); + knockMeUp(V.PC, 40, 0, -9); } break; case 5: r.push(`She runs her tongue over her lips as she asks, and sits you down on the edge of the pit and deepthroats you as soon as you agree. She wants your cum, and uses a couple of fingers to tickle your prostate and make it appear faster. You jerk with orgasm, and she pushes your wet cock up against your stomach so she can fuck your pussy. She pauses for a moment, letting a younger Sister enter her ass first. You leave the Sisters' suite after a full day of this, utterly exhausted but eager to return.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 60, 0, -9, true)); + knockMeUp(V.PC, 60, 0, -9); } break; case 6: r.push(`You nod, and she turns back towards the orgy, not seeing any reason to lead you, since you know the way. You both sink back into the pile of cocks, pussies, mouths, asses, boobs; the hours go by without you noticing. You leave the Sisters' suite unable to remember specifics, but you clearly fucked and got fucked by every futa there at least once. You're surprised when you learn how long you were there, but the worries of being an arcology owner no longer seem as pressing as they once did.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 80, 0, -9, true)); + knockMeUp(V.PC, 80, 0, -9); } break; case 7: r.push(`You don't even bother to respond, and head straight for the orgy. You insert yourself into an eager mouth, bending over so the matron following you can take you from behind. The worries of your life as an arcology owner seem very far away as she slides inside you. You only leave when ${V.assistant.name} repeatedly pages you over the arcology's public announcement system. On the way to your office, you notice how full of cum your stomach is, how relaxed your pussy and ass are, and how happy you feel.`); if (canGetPregnant(V.PC)) { - r.push(knockMeUp(V.PC, 100, 0, -9, true)); + knockMeUp(V.PC, 100, 0, -9); } break; case 8: diff --git a/src/neighbor/neighborDescription.js b/src/neighbor/neighborDescription.js index 790dde2390b0018929a85d3f1397e15306c3c59e..78a88518d87aa981998988048c9d06d28dfff716 100644 --- a/src/neighbor/neighborDescription.js +++ b/src/neighbor/neighborDescription.js @@ -120,7 +120,7 @@ App.UI.neighborDescription = function(i) { if (V.arcologies[i].FSRestart > 95) { desc += `notorious for the number of powerful civilians inhabiting it.`; } else if (V.arcologies[i].FSRestart > 40) { - desc += `known to be a good place make connections.`; + desc += `known to be a good place to make connections.`; } else { desc += `actively importing sterilization supplies.`; } diff --git a/src/neighbor/neighborDisplay.js b/src/neighbor/neighborDisplay.js index c09bbf946ab5f33aee63e1a94d9c1d175c551cd1..abae89e2f7c7815ea3416e5a226adb701607ded8 100644 --- a/src/neighbor/neighborDisplay.js +++ b/src/neighbor/neighborDisplay.js @@ -22,7 +22,7 @@ App.Neighbor.Display = class { } } - container.append("Neighbor display mode:"); + container.append("Neighbor display mode: "); container.appendChild(App.UI.DOM.generateLinksStrip([ makeSortLink.call(this, "List by ID", "list"), makeSortLink.call(this, "List by Name", "list-name"), @@ -43,6 +43,7 @@ App.Neighbor.Display = class { /** Refresh an existing neighbor display list */ rerender() { $(`#${this.containerID}`).replaceWith(this.render()); + this.select(V.activeArcologyIdx); } /** Render the display as a list, sorted by ID diff --git a/src/npc/agent/agentFramework.js b/src/npc/agent/agentFramework.js index e2511101340aee998a0bd067c51b8dfca4e6c116..4b40cc952555dcbd4041e62255515242ba475b52 100644 --- a/src/npc/agent/agentFramework.js +++ b/src/npc/agent/agentFramework.js @@ -25,7 +25,8 @@ App.Data.Facilities.arcologyAgent = { shouldTalk: true, shouldThink: true, requiredDevotion: 21 - } + }, + decorated: false }; App.Entity.Facilities.AgentJob = class extends App.Entity.Facilities.ManagingJob { diff --git a/src/npc/children/longChildDescription.js b/src/npc/children/longChildDescription.js index 7d55945a3e86ec38546066b50fbb16b0bd24c816..b09446606cecb70107651e17dd98da1e4840d750 100644 --- a/src/npc/children/longChildDescription.js +++ b/src/npc/children/longChildDescription.js @@ -8146,9 +8146,9 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event } } - if (child.addict > 0 && child.addict < 3) { + if (child.addict.isBetween(0, 3)) { r += `${He} is a new <span class="cyan">aphrodisiac addict.</span> `; - } else if (child.addict > 0 && child.addict < 10) { + } else if (child.addict.isBetween(0, 10)) { r += `${He} is a confirmed <span class="cyan">aphrodisiac addict.</span> `; } else if (child.addict > 0) { r += `${He} is completely <span class="cyan">dependent on aphrodisiacs,</span> and it is unlikely you will ever be able to wean ${him} off them. `; diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 122c7b4d8502cfd22a2ba9e2db2c272b9c265dcc..8f6140c27f111cc6ca8f024fae3bf8abe51c5684 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -2664,10934 +2664,10839 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { function clothing() { const r = []; - switch (slave.clothes) { - case "a Fuckdoll suit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly the space it demands.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} unfathomable, hyper-swollen, implant-filled belly the space it demands.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`The front of ${slave.slaveName}'s suit is made of a clear, stretchy plastic that is stretched thin as it reinforces ${his} unfathomable, hyper-swollen, pregnancy. A hole at the very front of the suit allows ${his} popped navel to bulge through. The movement of ${his} countless children is clear to see.`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "belly" in clothing.desc) { + r.push(clothing.desc.belly(slave)); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly the space it demands.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} unfathomable, hyper-swollen, implant-filled belly the space it demands.`); } else { - r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} monolithic pregnancy the space it requires to shift and bulge ominously.`); + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`The front of ${slave.slaveName}'s suit is made of a clear, stretchy plastic that is stretched thin as it reinforces ${his} unfathomable, hyper-swollen, pregnancy. A hole at the very front of the suit allows ${his} popped navel to bulge through. The movement of ${his} countless children is clear to see.`); + } else { + r.push(`${slave.slaveName}'s suit has no stomach to it as it's the only way to give ${his} monolithic pregnancy the space it requires to shift and bulge ominously.`); + } } - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic ${slave.inflationType}-filled belly the space it demands.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic implant-filled belly the space it demands.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle and reinforce ${his} monolithic pregnancy creating an imposing, lumpy dome capped by ${his} popped navel. It visibly shifts and pulses as ${his} brood competes for space.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic ${slave.inflationType}-filled belly the space it demands.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic implant-filled belly the space it demands.`); } else { - r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic pregnancy the space it requires to shift and bulge ominously.`); + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle and reinforce ${his} monolithic pregnancy creating an imposing, lumpy dome capped by ${his} popped navel. It visibly shifts and pulses as ${his} brood competes for space.`); + } else { + r.push(`${slave.slaveName}'s suit has no stomach to it, as it's the only way to give ${his} monolithic pregnancy the space it requires to shift and bulge ominously.`); + } } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is allowed to bulge out of an enormous hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to bulge out of an enormous hole in the suit.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly is allowed to bulge out of an enormous hole in the suit, giving ${his} squirming occupants room to grow.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > 34) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle and reinforce ${his} gigantic pregnancy creating an imposing dome capped by ${his} popped navel. Slight undulations can be felt running through it.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is allowed to bulge out of an enormous hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to bulge out of an enormous hole in the suit.`); } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly is allowed to bulge out of a huge hole in the suit.`); + r.push(`${slave.slaveName}'s titanic pregnant belly is allowed to bulge out of an enormous hole in the suit, giving ${his} squirming occupants room to grow.`); } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} massive pregnancy creating an imposing dome capped by ${his} popped navel.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { - r.push(`${slave.slaveName}'s massive pregnant belly is allowed to bulge out of a huge hole in the suit.`); + if (slave.preg > 34) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle and reinforce ${his} gigantic pregnancy creating an imposing dome capped by ${his} popped navel. Slight undulations can be felt running through it.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} giant pregnancy creating a towering dome capped by ${his} popped navel.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { - r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} massive pregnancy creating an imposing dome capped by ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} giant pregnancy creating a firm dome capped by ${his} popped navel.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { - r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} giant pregnancy creating a towering dome capped by ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} huge pregnant belly creating a firm dome capped by ${his} popped navel.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { - r.push(`${slave.slaveName}'s huge pregnant belly is allowed to bulge out of a huge hole in the suit.`); + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} giant pregnancy creating a firm dome capped by ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } } - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly is brutally squeezed by the suit forming a firm latex globe with the slightest bit of give to it.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly is allowed to bulge out of a huge hole in the suit.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - if (slave.preg > slave.pregData.normalBirth / 1.17) { - r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} huge pregnant belly creating a firm dome capped by ${his} popped navel.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} huge pregnant belly creating a firm dome capped by ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly is brutally squeezed by the suit forming a firm latex globe with the slightest bit of give to it.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { r.push(`${slave.slaveName}'s huge pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); + } else { + if (slave.preg > slave.pregData.normalBirth / 1.17) { + r.push(`${slave.slaveName}'s suit is designed to carefully cradle ${his} huge pregnant belly creating a firm dome capped by ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is allowed to bulge out of a huge hole in the suit.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly is allowed to bulge out of a huge hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is allowed to bulge out of a huge hole in the suit.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly is cruelly squeezed by the suit. The tight latex accentuates ${his} fat folds.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly is cruelly squeezed by the suit.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is allowed to bulge out of a hole in the suit.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is allowed to bulge out of a hole in the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is allowed to bulge out of a hole in the suit.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is allowed to bulge out of a hole in the suit.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is cruelly squeezed by the suit.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnancy is tightly squeezed by the suit creating a noticeable bulge.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly squeezed by the suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly nearly requires ${him} to be switched into a suit with a hole for it to hang out from.`); - } else { - r.push(`${slave.slaveName}'s growing pregnancy will soon require ${him} to be switched into a suit with a hole to ${his} belly out.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is tightly squeezed by the suit.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`There is a clear curve to the tight material beneath ${slave.slaveName}'s navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s suit tightly hugs ${his} stomach to showcase ${his} ripped abs.`); - } - break; - case "conservative clothing": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is allowed to bulge out of a huge hole in the suit.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly is allowed to bulge out of a huge hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is allowed to bulge out of a huge hole in the suit.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`); + r.push(`${slave.slaveName}'s big pregnant belly is allowed to bulge out of a huge hole in the suit.`); } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly is cruelly squeezed by the suit. The tight latex accentuates ${his} fat folds.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly is cruelly squeezed by the suit.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is allowed to bulge out of a hole in the suit.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is allowed to bulge out of a hole in the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is allowed to bulge out of a hole in the suit.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`); + r.push(`${slave.slaveName}'s pregnant belly is allowed to bulge out of a hole in the suit.`); } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threatens to displace ${his} breasts.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it desperately needs.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly is cruelly squeezed by the suit.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnancy is tightly squeezed by the suit creating a noticeable bulge.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly squeezed by the suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly nearly requires ${him} to be switched into a suit with a hole for it to hang out from.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`); + r.push(`${slave.slaveName}'s growing pregnancy will soon require ${him} to be switched into a suit with a hole to ${his} belly out.`); } - r.push(`${He}'s left ${his} pants unfastened as ${his} womb has consumed so much space that ${He} has no hope of ever doing up the button and, regardless, even the light touch of the fabric against ${his} belly feels nearly intolerable due to the pressure.`); + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is tightly squeezed by the suit.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`There is a clear curve to the tight material beneath ${slave.slaveName}'s navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s suit tightly hugs ${his} stomach to showcase ${his} ripped abs.`); } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`); + break; + case "conservative clothing": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threatens to displace ${his} breasts.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it desperately needs.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`); + } + r.push(`${He}'s left ${his} pants unfastened as ${his} womb has consumed so much space that ${He} has no hope of ever doing up the button and, regardless, even the light touch of the fabric against ${his} belly feels nearly intolerable due to the pressure.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly lewdly parts ${his} poorly covered breasts allowing the bulging mass the room it desperately seeks.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`); + } + r.push(`${He}'s left ${his} pants unfastened as ${his} womb can't handle the strain nor do ${his} children give ${him} the chance to try.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic ${slave.inflationType}-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to close them.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly but do little to hide its size as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to close them.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic pregnant belly but do little to hide its size and shape as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} poorly covered breasts allowing the squirming mass to bulge freely.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); + } + r.push(`${He}'s left ${his} pants unfastened as ${his} stuffed womb desperately needs the added space.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the staggering orb more room.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly but do little to hide its size as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the staggering orb more room.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic pregnant belly but do little to hide its size as it forces its way between them.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give ${his} overfilled womb more room.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive ${slave.inflationType}-filled belly but do little to hide its size.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive ${slave.inflationType}-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive implant-filled belly but do little to hide its size.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive implant-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive pregnant belly but do little to hide its size.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} poorly covered breasts.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive pregnant belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the heavy dome more room.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the firm dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the overstretched dome more room.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the firm dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the overstretched dome more room.`); + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the taut dome more room.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the rounded dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the rounded dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`); + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); - } else if (slave.bellyImplant > 0) { + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`); + } else { + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`); + } else { + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`); + } + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater can no longer contain ${his} huge pregnant belly and merely rests atop it.`); + } else { + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} huge pregnant belly and merely rests atop it.`); + } + } + } else if (slave.weight > 190) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} massively fat belly; even then, they can barely conceal it themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`); + r.push(`${slave.slaveName}'s massively fat belly adds even more strain to ${his} struggling oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`); + r.push(`${slave.slaveName}'s oversized breasts ${his} massively fat belly hang free.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`); + r.push(`${slave.slaveName}'s sweater is pulled tight over the top half of ${his} massively fat belly. The bottom half is allowed to jiggle freely.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`); + r.push(`${slave.slaveName}'s blouse is pulled taut just trying to cover the top of ${his} massively fat belly; the rest is allowed to jiggle freely.`); } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to reach them.`); - } else { + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`); + } + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + } + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely swollen belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} hugely swollen belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big implant-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } else { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } + } else if (slave.weight > 160) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely fat belly, though they do a fine job of hiding it themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`); + r.push(`${slave.slaveName}'s hugely fat belly is barely hidden by ${his} massive tits and oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly lewdly parts ${his} poorly covered breasts allowing the bulging mass the room it desperately seeks.`); + r.push(`${slave.slaveName}'s oversized breasts ${his} hugely fat belly hang free.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`); + r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} hugely fat belly. The bottom of which hangs out from under it.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`); + r.push(`${slave.slaveName}'s blouse is pulled tight over the top half of ${his} hugely fat belly; the rest is allowed to jiggle freely.`); } - r.push(`${He}'s left ${his} pants unfastened as ${his} womb can't handle the strain nor do ${his} children give ${him} the chance to try.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { + } else if (slave.weight > 130) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big fat belly, though they do a fine job of hiding it themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); + r.push(`${slave.slaveName}'s oversized breasts ${his} big fat belly hang free.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} big fat belly. The bottom of which hangs out and jiggles freely from under it.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s blouse is pulled tight over most of ${his} big fat belly; the rest is allowed to jiggle freely.`); } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to close them.`); - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly but do little to hide its size as it forces its way between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} poorly covered breasts.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic implant-filled belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} jiggling ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-filled belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-filled belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`); + } } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`); + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`); + } else { + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`); + } } - r.push(`${He}'s left ${his} pants unfastened as there is no chance of ${him} managing to close them.`); - } else { + } else if (slave.weight > 95) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic pregnant belly but do little to hide its size and shape as it forces its way between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`); + r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} poorly covered breasts allowing the squirming mass to bulge freely.`); + r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); + r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); + r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`); } - r.push(`${He}'s left ${his} pants unfastened as ${his} stuffed womb desperately needs the added space.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} small pregnant belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} small pregnant belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater bulges with ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ${slave.inflationType}-swollen belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-rounded belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-rounded belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly.`); + } } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} growing belly, though they do a fine job of hiding it themselves.`); + } else if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is hidden by ${his} massive tits and oversized sweater.`); + } else if (slave.boobs > 8000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} growing belly.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s sweater bulges with ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly.`); + } } - r.push(`${He}'s left ${his} pants unfastened to give the staggering orb more room.`); - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 30) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly but do little to hide its size as it forces its way between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} chubby belly, though they do a fine job of hiding it themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + r.push(`${slave.slaveName}'s chubby belly is hidden by ${his} massive tits and oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`); + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} chubby belly.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic implant-filled belly.`); + r.push(`${slave.slaveName}'s sweater bulges with ${his} chubby belly.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`); + r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly.`); } - r.push(`${He}'s left ${his} pants unfastened to give the staggering orb more room.`); - } else { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s pants are fastened beneath the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic pregnant belly but do little to hide its size as it forces its way between them.`); + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ripped abs, though they do an unfortunate job of hiding them themselves.`); } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); + r.push(`${slave.slaveName}'s ripped abs are hidden by ${his} massive tits and oversized sweater.`); } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} poorly covered breasts.`); + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater busy showing off ${his} ripped abs.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic pregnant belly.`); + r.push(`${slave.slaveName}'s sweater completely hides ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly.`); + r.push(`${slave.slaveName}'s ripped abs can almost be made out through ${his} blouse.`); } - r.push(`${He}'s left ${his} pants unfastened to give ${his} overfilled womb more room.`); } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive ${slave.inflationType}-filled belly but do little to hide its size.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} massive ${slave.inflationType}-filled belly.`); + break; + case "chains": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is wrapped with tight chains. Despite how tightly they're pulled together, they fail to sink into the firm globe of ${his} belly at all, shifting over it and agitating ${his} flesh with each of ${his} movements.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is wrapped with tight chains. Despite how tightly they're pulled together, they fail to sink into the firm globe of ${his} belly at all, shifting over it and agitating ${his} flesh with each of ${his} movements.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} massive ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is wrapped with tight chains. It bulges so extremely that the outlines of entire infants can be seen pressed up to either side of the chains, sometimes overlapping them so that flesh rubs up against flesh; every motion inside ${him} is excruciating.`); } - r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive implant-filled belly but do little to hide its size.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} poorly covered breasts.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} massive implant-filled belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is wrapped with tight chains. They can barely sink into the firm globe, only agitating ${his} flesh more.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly is wrapped with tight chains. They can barely sink into the firm globe, only agitating ${his} flesh more.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} massive implant-filled belly.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); } - r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive pregnant belly but do little to hide its size.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} poorly covered breasts.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} massive pregnant belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly little as they can barely dig into the overfilled globe.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is wrapped with tight chains. It bulges agonizingly little as they can barely dig into the overfilled globe.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s titanic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); } - r.push(`${He}'s left ${his} pants unfastened to give the heavy dome more room.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the firm dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep as they can into the taut flesh.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep as they can into the taut flesh.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); } - r.push(`${He}'s left ${his} pants unfastened to give the overstretched dome more room.`); - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the firm dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); + r.push(`${slave.slaveName}'s massive pregnant belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh and every motion inside ${him} causes more suffering.`); } - r.push(`${He}'s left ${his} pants unfastened to give the overstretched dome more room.`); - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s giant pregnant belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh and every motion inside ${him} causes more suffering.`); } - r.push(`${He}'s left ${his} pants unfastened to give the taut dome more room.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the rounded dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges angrily as they dig deep into the taut flesh.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is wrapped with tight chains. It bulges angrily as they dig deep into the taut flesh.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s giant pregnant belly is wrapped with tight chains. It bulges painfully as they dig deep into the taut flesh.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the rounded dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`); + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); + r.push(`${slave.slaveName}'s huge pregnant belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin and causes ${him} duress.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`); + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s chains are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly is tightly wrapped with chains.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s huge pregnant belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); } - r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is tightly wrapped with chains.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly is tightly wrapped with chains, causing it to bulge angrily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); } else { - r.push(`${slave.slaveName}'s blouse can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`); + r.push(`${slave.slaveName}'s big pregnant belly is tightly wrapped with chains, causing it to bulge angrily.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s chains sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelope them.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s chains sink deep into ${his} big fat belly; most end up swallowed by ${his} folds.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is tightly wrapped with chains.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); } else { - r.push(`${slave.slaveName}'s blouse can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`); + r.push(`${slave.slaveName}'s pregnant belly is tightly wrapped with chains, causing it to bulge angrily.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater can no longer contain ${his} huge pregnant belly and merely rests atop it.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly is tightly wrapped with chains.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly wrapped with chains.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is tightly wrapped with chains.`); } else { - r.push(`${slave.slaveName}'s blouse can no longer contain ${his} huge pregnant belly and merely rests atop it.`); + r.push(`${slave.slaveName}'s growing belly is tightly wrapped with chains.`); } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chains sink into ${his} chubby belly, making noticeable folds in ${his} sides.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s tight chains make the small bulge to ${his} lower belly obvious.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s tight chains highlight ${his} ripped abs.`); } - } else if (slave.weight > 190) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} massively fat belly; even then, they can barely conceal it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly adds even more strain to ${his} struggling oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts ${his} massively fat belly hang free.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled tight over the top half of ${his} massively fat belly. The bottom half is allowed to jiggle freely.`); - } else { - r.push(`${slave.slaveName}'s blouse is pulled taut just trying to cover the top of ${his} massively fat belly; the rest is allowed to jiggle freely.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`); + break; + case "Western clothing": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen, implant-filled belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen pregnant belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } else if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely swollen belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} hugely swollen belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big implant-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more room.`); } - } - } else if (slave.weight > 160) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely fat belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is barely hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts ${his} hugely fat belly hang free.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} hugely fat belly. The bottom of which hangs out from under it.`); - } else { - r.push(`${slave.slaveName}'s blouse is pulled tight over the top half of ${his} hugely fat belly; the rest is allowed to jiggle freely.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big fat belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts ${his} big fat belly hang free.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} big fat belly. The bottom of which hangs out and jiggles freely from under it.`); - } else { - r.push(`${slave.slaveName}'s blouse is pulled tight over most of ${his} big fat belly; the rest is allowed to jiggle freely.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`); + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massively fat belly, so ${he} has left the bottom buttons open leaving it to hang, and jiggle, freely.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); } - } else if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} jiggling ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in material.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} hugely swollen belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-filled belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-filled belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in material.`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge fat belly, so ${he} has left the bottom buttons open leaving it to wobble freely.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big fat belly, so ${he} has left the bottom buttons open leaving it to hang free.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} pregnant belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} jiggling ${slave.inflationType}-filled belly. The struggling garment frequently rides up in defeat.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} implant-filled belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} pregnant belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s flannel shirt strains to stay shut over ${his} fat belly, fat bulges between ${his} buttons and quite a bit of ${his} lower belly hangs out beneath ${his} shirt.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} implant-rounded belly.`); } else { - r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`); + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} growing belly.`); } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s chaps are fastened beneath the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs occasionally peek out from beneath ${his} flannel shirt.`); } - } else if (slave.weight > 95) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} small pregnant belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} small pregnant belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater bulges with ${his} small pregnant belly.`); + break; + case "body oil": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly.`); + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); } - } else if (isBellyFluidLargest) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ${slave.inflationType}-swollen belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-rounded belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-rounded belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly.`); + r.push(`${slave.slaveName}'s titanic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); } - } else { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} growing belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} growing belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater bulges with ${his} growing belly.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly is covered in a sheen of oil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is covered in a sheen of oil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly is covered in a sheen of oil.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is covered in a sheen of oil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is covered in a sheen of oil.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly is covered in a sheen of oil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is covered in a sheen of oil.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is covered in a sheen of oil.`); + } else { + r.push(`${slave.slaveName}'s growing belly is covered in a sheen of oil.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is covered in a sheen of oil.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`The way the light reflects off the sheen of oil on ${slave.slaveName}'s lower belly clearly highlights the swell to it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are covered in a lovely sheen of oil.`); } - } else if (slave.weight > 30) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} chubby belly, though they do a fine job of hiding it themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} chubby belly.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater bulges with ${his} chubby belly.`); - } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s pants are fastened beneath the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ripped abs, though they do an unfortunate job of hiding them themselves.`); - } else if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs are hidden by ${his} massive tits and oversized sweater.`); - } else if (slave.boobs > 8000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater busy showing off ${his} ripped abs.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s sweater completely hides ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs can almost be made out through ${his} blouse.`); - } - } - break; - case "chains": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is wrapped with tight chains. Despite how tightly they're pulled together, they fail to sink into the firm globe of ${his} belly at all, shifting over it and agitating ${his} flesh with each of ${his} movements.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is wrapped with tight chains. Despite how tightly they're pulled together, they fail to sink into the firm globe of ${his} belly at all, shifting over it and agitating ${his} flesh with each of ${his} movements.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is wrapped with tight chains. It bulges so extremely that the outlines of entire infants can be seen pressed up to either side of the chains, sometimes overlapping them so that flesh rubs up against flesh; every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is wrapped with tight chains. They can barely sink into the firm globe, only agitating ${his} flesh more.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly is wrapped with tight chains. They can barely sink into the firm globe, only agitating ${his} flesh more.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly little as they can barely dig into the overfilled globe.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is wrapped with tight chains. It bulges agonizingly little as they can barely dig into the overfilled globe.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep as they can into the taut flesh.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep as they can into the taut flesh.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly is wrapped with tight chains. It bulges agonizingly as they run between the forms of ${his} unborn children; every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh and every motion inside ${him} causes more suffering.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly is wrapped with tight chains. It bulges agonizingly as they dig deep into the taut flesh and every motion inside ${him} causes more suffering.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is wrapped with tight chains. It bulges angrily as they dig deep into the taut flesh.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is wrapped with tight chains. It bulges angrily as they dig deep into the taut flesh.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly is wrapped with tight chains. It bulges painfully as they dig deep into the taut flesh.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly is wrapped with agonizingly tight chains. It bulges angrily as they dig deep into ${his} sore skin and causes ${him} duress.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s chains are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly is tightly wrapped with chains.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly is tightly wrapped with chains, causing it to bulge angrily as well as making ${him} squirm in discomfort.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is tightly wrapped with chains.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly is tightly wrapped with chains, causing it to bulge angrily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is tightly wrapped with chains, causing it to bulge angrily.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s chains sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelope them.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s chains sink deep into ${his} big fat belly; most end up swallowed by ${his} folds.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is tightly wrapped with chains.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is tightly wrapped with chains, causing it to bulge angrily.`); + break; + case "a toga": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly the room it demands.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen, implant-filled belly the room it demands.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen pregnant belly the room it desperately needs. ${His} brood appreciates the freedom.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic ${slave.inflationType}-filled belly the room it demands.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic implant-filled belly the room it demands.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic pregnant belly the room it desperately needs. ${His} children appreciate the freedom.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic ${slave.inflationType}-filled belly to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic implant-filled belly to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic pregnant belly room. ${His} children appreciate the space and squirm happily.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic ${slave.inflationType}-filled belly to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic implant-filled belly to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic pregnant belly room. ${His} children appreciate the space.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive ${slave.inflationType}-filled belly to bulge freely.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive implant-filled belly to bulge freely.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive pregnant belly room.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant ${slave.inflationType}-filled belly to jut far from ${his} body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant implant-filled belly to jut far from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant pregnant belly to jut far from ${his} body.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga strains around ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga strains around ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s toga strains around ${his} giant pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massively fat belly to hang free.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s toga bulges greatly with ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s toga is stuffed to its capacity with ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly rounds out the front of ${his} toga.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly rounds out the front of ${his} toga.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly rounds out the front of ${his} toga.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly rounds out the front of ${his} toga.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s toga bulges with ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly gently bulges ${his} toga.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly gently bulges ${his} toga.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly gently bulges ${his} toga.`); + } else { + r.push(`${slave.slaveName}'s growing belly gently bulges ${his} toga.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s toga conceals ${his} chubby belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s toga conceals ${his} ripped abs.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly is tightly wrapped with chains.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly wrapped with chains.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is tightly wrapped with chains.`); - } else { - r.push(`${slave.slaveName}'s growing belly is tightly wrapped with chains.`); + break; + case "a huipil": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, its role completely usurped by the colossal mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, its role completely usurped by the colossal mass.`); + } else { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen pregnant belly, its role completely usurped by the colossal gravidity.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic implant-filled belly, its role completely usurped by the heavy mass.`); + } else { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic pregnant belly, its role completely usurped by the gravid mass.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic implant-filled belly, its role completely usurped by the heavy mass.`); + } else { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic pregnant belly, its role completely usurped by the gravid mass.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic implant-filled belly, its role completely usurped by the heavy mass.`); + } else { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic pregnant belly, its role completely usurped by the gravid mass.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive implant-filled belly, its role completely usurped by the heavy mass.`); + } else { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive pregnant belly, its role completely usurped by the gravid mass.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massively fat belly, though it itself is big enough to act in its stead.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly lifts ${his} huipil and hangs just low enough to hide ${his} crotch.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly lifts ${his} huipil, yet isn't big enough to hide ${his} shame.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly lifts ${his} huipil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly lifts ${his} huipil.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly lifts ${his} huipil.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly lifts ${his} huipil.`); + } + r.push(`It just barely hangs low enough to hide ${his} crotch.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly slightly bulges under ${his} huipil.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly slightly bulges under ${his} huipil.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly slightly bulges under ${his} huipil.`); + } else { + r.push(`${slave.slaveName}'s growing belly slightly bulges under ${his} huipil.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s huipil conceals ${his} chubby little belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s huipil hides the small bulge in ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s huipil conceals ${his} ripped abs.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chains sink into ${his} chubby belly, making noticeable folds in ${his} sides.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s tight chains make the small bulge to ${his} lower belly obvious.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s tight chains highlight ${his} ripped abs.`); - } - break; - case "Western clothing": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen, implant-filled belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} unfathomable, hyper-swollen pregnant belly, so ${he} has left the bottom buttons open, giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons no longer hold together at all, and ${he} now has to hold the outfit together by wrapping a large strip of fabric around ${his} outfit and over the line between ${his} belly and slowly distorting ribcage. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} monolithic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. ${He} has become so wide the remaining buttons strain to hold together. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massive pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. The remaining buttons struggle to contain ${his} increasing girth. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant implant-filled belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled middle more space.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant pregnant belly, so ${he} has left the bottom buttons open giving ${his} stomach room to massively jut out from ${his} body. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more space.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} giant pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out. In addition, ${he}'s left ${his} chaps unfastened to give ${his} overfilled womb more room.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} massively fat belly, so ${he} has left the bottom buttons open leaving it to hang, and jiggle, freely.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} hugely swollen belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big pregnant belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge fat belly, so ${he} has left the bottom buttons open leaving it to wobble freely.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} big fat belly, so ${he} has left the bottom buttons open leaving it to hang free.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} pregnant belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} jiggling ${slave.inflationType}-filled belly. The struggling garment frequently rides up in defeat.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} implant-filled belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt's buttons strain over ${his} pregnant belly. A patch of ${his} underbelly peeks from beneath the taut fabric and the exhausted garment frequently rides up in defeat.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s flannel shirt strains to stay shut over ${his} fat belly, fat bulges between ${his} buttons and quite a bit of ${his} lower belly hangs out beneath ${his} shirt.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s chaps are fastened beneath the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs occasionally peek out from beneath ${his} flannel shirt.`); - } - break; - case "body oil": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + break; + case "a slutty qipao": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic pregnant belly. ${His} body needs the room to grow.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic pregnant belly. ${His} body needs the room to grow.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic pregnant belly. ${His} body appreciates the room to grow.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant pregnant belly.`); + } + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it only covers the top quarter of ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it only covers the top quarter of ${his} huge implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it only covers top quarter of ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it barely covers ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${His} qipao is slit up the side. However, it only covers ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. However, it only covers ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. However, it only covers ${his} implant-filled belly.`); + } else { + r.push(`${His} qipao is slit up the side. However, it only covers ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${His} qipao is slit up the side. However, it only covers ${his} fat belly, allowing it to hang free.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} implant-rounded belly.`); + } else { + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${His} qipao is slit up the side giving the occasional peek of the small swell to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${His} qipao is slit up the side giving a tantalizing peek of ${his} ripped abs.`); } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + break; + case "uncomfortable straps": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps run along the surface of ${his} monolithic ${slave.inflationType}-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps run along the surface of ${his} monolithic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} monolithic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} titanic ${slave.inflationType}-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} titanic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} titanic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} gigantic ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} gigantic implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} gigantic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} causes ${him} more suffering.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} causes ${him} more suffering.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge ${slave.inflationType}-filled belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge implant-filled belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge pregnant belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s slave outfit's straps are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them. The straps connect to a steel ring around ${his} navel; though the only evidence of its existence is an unusually deep fold across ${his} middle.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge ${slave.inflationType}-filled belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge implant-filled belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge pregnant belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big pregnant belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelope them. The straps connect to a steel ring that struggles to part the folds concealing ${his} navel, allowing it to see the light for once.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} big fat belly; most end up swallowed by ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} jiggling ${slave.inflationType}-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} fat belly, several even disappearing beneath ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s slave outfit's straps sink into ${his} chubby belly, making noticeable folds in ${his} sides. The straps connect to a steel ring pulled into the flesh around ${his} navel.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s slave outfit's straps run above and below the small bulge to ${his} lower belly clearly highlighting it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s slave outfit's straps cross between ${his} ripped abs.`); } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); + break; + case "shibari ropes": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is tightly bound with ropes; they stand no chance of sinking into the bloated orb, and can barely wrap around it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is tightly bound with ropes; they stand no chance of sinking into the bloated orb, and can barely wrap around it.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is tightly bound with ropes. It bulges angrily as they run between the forms of ${his} unborn children, and the ropes can barely wrap around it.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is tightly bound with ropes; they stand no chance at sinking into the bloated orb.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly is tightly bound with ropes; they stand no chance at sinking into the bloated orb.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly is tightly bound with ropes. It bulges angrily as they run between the forms of ${his} unborn children.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them. ${His} children shift constantly under the tight bindings.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s binding ropes are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly is tightly bound with rope.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is tightly bound with rope.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly is tightly bound with ropes. It bulges lewdly through the gaps.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelop them.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} big fat belly; most end up swallowed by ${his} folds.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is tightly bound with rope.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly bound with rope. It bulges lewdly through the gaps.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is tightly bound with rope; flesh bulges angrily from between them.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly is tightly bound with rope.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly bound with rope forcing it to bulge out the gaps.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is tightly bound with rope; flesh bulges from between them.`); + } else { + r.push(`${slave.slaveName}'s growing belly is tightly bound with rope; flesh bulges from between them.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s binding ropes sink into ${his} chubby belly, making noticeable folds in ${his} sides.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s binding ropes run above and below the small bulge to ${his} lower belly clearly highlighting it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s binding ropes run between ${his} ripped abs.`); } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly is covered in a sheen of oil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is covered in a sheen of oil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly is covered in a sheen of oil.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is covered in a sheen of oil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is covered in a sheen of oil.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is covered in a sheen of special oil meant to prevent stretch marks.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly is covered in a sheen of oil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is covered in a sheen of oil.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is covered in a sheen of oil.`); - } else { - r.push(`${slave.slaveName}'s growing belly is covered in a sheen of oil.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is covered in a sheen of oil.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`The way the light reflects off the sheen of oil on ${slave.slaveName}'s lower belly clearly highlights the swell to it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are covered in a lovely sheen of oil.`); - } - break; - case "a toga": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly the room it demands.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen, implant-filled belly the room it demands.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} unfathomable, hyper-swollen pregnant belly the room it desperately needs. ${His} brood appreciates the freedom.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic ${slave.inflationType}-filled belly the room it demands.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic implant-filled belly the room it demands.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} monolithic pregnant belly the room it desperately needs. ${His} children appreciate the freedom.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic ${slave.inflationType}-filled belly to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic implant-filled belly to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} titanic pregnant belly room. ${His} children appreciate the space and squirm happily.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic ${slave.inflationType}-filled belly to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic implant-filled belly to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} gigantic pregnant belly room. ${His} children appreciate the space.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive ${slave.inflationType}-filled belly to bulge freely.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive implant-filled belly to bulge freely.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massive pregnant belly room.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant ${slave.inflationType}-filled belly to jut far from ${his} body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant implant-filled belly to jut far from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} giant pregnant belly to jut far from ${his} body.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga strains around ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga strains around ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s toga strains around ${his} giant pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s toga bares ${his} middle to allow ${his} massively fat belly to hang free.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s toga tightly hugs ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s toga bulges greatly with ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s toga is stuffed to its capacity with ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s toga bulges greatly with ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly rounds out the front of ${his} toga.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly rounds out the front of ${his} toga.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly rounds out the front of ${his} toga.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly rounds out the front of ${his} toga.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s toga bulges with ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly gently bulges ${his} toga.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly gently bulges ${his} toga.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly gently bulges ${his} toga.`); - } else { - r.push(`${slave.slaveName}'s growing belly gently bulges ${his} toga.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s toga conceals ${his} chubby belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s toga conceals ${his} ripped abs.`); - } - break; - case "a huipil": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, its role completely usurped by the colossal mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, its role completely usurped by the colossal mass.`); - } else { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} unfathomable, hyper-swollen pregnant belly, its role completely usurped by the colossal gravidity.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic implant-filled belly, its role completely usurped by the heavy mass.`); - } else { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} monolithic pregnant belly, its role completely usurped by the gravid mass.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic implant-filled belly, its role completely usurped by the heavy mass.`); - } else { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic pregnant belly, its role completely usurped by the gravid mass.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic implant-filled belly, its role completely usurped by the heavy mass.`); - } else { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic pregnant belly, its role completely usurped by the gravid mass.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive ${slave.inflationType}-filled belly, its role completely usurped by the heavy mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive implant-filled belly, its role completely usurped by the heavy mass.`); - } else { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massive pregnant belly, its role completely usurped by the gravid mass.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly lifts ${his} huipil, though it itself hangs low enough to hide ${his} crotch.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly lifts ${his} huipil, though it itself is just large enough to hide ${his} shame.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} massively fat belly, though it itself is big enough to act in its stead.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly lifts ${his} huipil, exposing ${his} crotch for all to see.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly lifts ${his} huipil and hangs just low enough to hide ${his} crotch.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly lifts ${his} huipil, yet isn't big enough to hide ${his} shame.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly lifts ${his} huipil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly lifts ${his} huipil.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly lifts ${his} huipil.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly lifts ${his} huipil.`); - } - r.push(`It just barely hangs low enough to hide ${his} crotch.`); - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly slightly bulges under ${his} huipil.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly slightly bulges under ${his} huipil.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly slightly bulges under ${his} huipil.`); - } else { - r.push(`${slave.slaveName}'s growing belly slightly bulges under ${his} huipil.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s huipil conceals ${his} chubby little belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s huipil hides the small bulge in ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s huipil conceals ${his} ripped abs.`); - } - break; - case "a slutty qipao": - if (slave.belly >= 1000000) { + break; + case "a latex catsuit": + case "restrictive latex": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} monolithic pregnant belly. ${His} body needs the room to grow.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic pregnant belly. ${His} body needs the room to grow.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic pregnant belly. ${His} body appreciates the room to grow.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} giant pregnant belly.`); - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it only covers the top quarter of ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it only covers the top quarter of ${his} huge implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it only covers top quarter of ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it barely covers ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${His} qipao is slit up the side. However, it only covers half of ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${His} qipao is slit up the side. However, it barely covers ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${His} qipao is slit up the side. However, it only covers ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. However, it only covers ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. However, it only covers ${his} implant-filled belly.`); - } else { - r.push(`${His} qipao is slit up the side. However, it only covers ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${His} qipao is slit up the side. However, it only covers ${his} fat belly, allowing it to hang free.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} implant-rounded belly.`); - } else { - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} growing belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon on the brink of popping. Only ${his} popped navel sticking out the front of ${his} belly disrupts the endless smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon on the brink of popping. Only ${his} popped navel sticking out the front of ${his} belly disrupts the endless smoothness.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated, bump coated weather balloon on the brink of popping. ${His} popped navel and clearly defined occupants disrupt the smoothness`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated, bump coated weather balloon. ${His} popped navel and bulging occupants disrupt the smoothness.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly greatly distends and ${his} latex suit. ${He} looks like an over-inflated balloon ready to pop.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly greatly distends and ${his} latex suit. ${He} looks like an over-inflated balloon.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly greatly distends ${his} latex suit. ${He} looks like an over-inflated balloon.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly greatly bulges under ${his} latex suit.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly greatly bulges under ${his} latex suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly greatly bulges under ${his} latex suit.`); + } else { + r.push(`${slave.slaveName}'s growing belly greatly bulges under ${his} latex suit.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly in quite noticeable under ${his} latex suit, though any folds ${he} might have are smoothed out by it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`There is a clear curve to the tight latex of the suit beneath ${slave.slaveName}'s navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s latex suit tightly hugs ${his} stomach to showcase ${his} ripped abs.`); } - } else if (slave.weight > 30) { - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${His} qipao is slit up the side giving the occasional peek of the small swell to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${His} qipao is slit up the side giving a tantalizing peek of ${his} ripped abs.`); - } - break; - case "uncomfortable straps": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps run along the surface of ${his} monolithic ${slave.inflationType}-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps run along the surface of ${his} monolithic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} monolithic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} titanic ${slave.inflationType}-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} titanic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} titanic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} gigantic ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps barely press into ${his} gigantic implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's tight straps press into ${his} gigantic pregnant belly, forcing flesh and child to painfully bulge between the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} is excruciating.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} massive pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} causes ${him} more suffering.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel. Every motion inside ${him} causes ${him} more suffering.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant ${slave.inflationType}-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant implant-filled belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} giant pregnant belly, forcing flesh to painfully bulge out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge ${slave.inflationType}-filled belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge implant-filled belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's agonizingly tight straps press into ${his} huge pregnant belly, forcing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s slave outfit's straps are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them. The straps connect to a steel ring around ${his} navel; though the only evidence of its existence is an unusually deep fold across ${his} middle.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge ${slave.inflationType}-filled belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge implant-filled belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge pregnant belly, causing flesh to spill out of the gaps and ${him} squirm with discomfort. The straps connect to a steel ring encircling ${his} popped navel.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} big pregnant belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelope them. The straps connect to a steel ring that struggles to part the folds concealing ${his} navel, allowing it to see the light for once.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} big fat belly; most end up swallowed by ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} jiggling ${slave.inflationType}-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} pregnant belly. The straps connect to a steel ring encircling ${his} popped navel.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} fat belly, several even disappearing beneath ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s slave outfit's straps sink into ${his} chubby belly, making noticeable folds in ${his} sides. The straps connect to a steel ring pulled into the flesh around ${his} navel.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s slave outfit's straps run above and below the small bulge to ${his} lower belly clearly highlighting it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s slave outfit's straps cross between ${his} ripped abs.`); - } - break; - case "shibari ropes": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is tightly bound with ropes; they stand no chance of sinking into the bloated orb, and can barely wrap around it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is tightly bound with ropes; they stand no chance of sinking into the bloated orb, and can barely wrap around it.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is tightly bound with ropes. It bulges angrily as they run between the forms of ${his} unborn children, and the ropes can barely wrap around it.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is tightly bound with ropes; they stand no chance at sinking into the bloated orb.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly is tightly bound with ropes; they stand no chance at sinking into the bloated orb.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly is tightly bound with ropes. It bulges angrily as they run between the forms of ${his} unborn children.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them. ${His} children shift constantly under the tight bindings.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly bound with ropes; they barely sink into the bloated orb.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly is tightly bound with ropes; flesh and child bulge angrily from between them.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s binding ropes are practically buried in ${his} massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly is tightly bound with rope.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is tightly bound with rope.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly is tightly bound with ropes. It bulges lewdly through the gaps.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is tightly bound with ropes; flesh bulges angrily from between them.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} hugely fat belly. They can barely be seen from the front; ${his} sides completely envelop them.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} big fat belly; most end up swallowed by ${his} folds.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is tightly bound with rope.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly bound with rope. It bulges lewdly through the gaps.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is tightly bound with rope; flesh bulges angrily from between them.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly is tightly bound with rope.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly bound with rope forcing it to bulge out the gaps.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is tightly bound with rope; flesh bulges from between them.`); - } else { - r.push(`${slave.slaveName}'s growing belly is tightly bound with rope; flesh bulges from between them.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s binding ropes sink into ${his} chubby belly, making noticeable folds in ${his} sides.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s binding ropes run above and below the small bulge to ${his} lower belly clearly highlighting it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s binding ropes run between ${his} ripped abs.`); - } - break; - case "a latex catsuit": - case "restrictive latex": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon on the brink of popping. Only ${his} popped navel sticking out the front of ${his} belly disrupts the endless smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon on the brink of popping. Only ${his} popped navel sticking out the front of ${his} belly disrupts the endless smoothness.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated, bump coated weather balloon on the brink of popping. ${His} popped navel and clearly defined occupants disrupt the smoothness`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated, bump coated weather balloon. ${His} popped navel and bulging occupants disrupt the smoothness.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like a weather balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like a big beachball. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly greatly distends and ${his} latex suit. ${He} looks like an over-inflated balloon ready to pop.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon nearing its limit. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly greatly distends and ${his} latex suit. ${He} looks like an over-inflated balloon.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly greatly distends ${his} latex suit. ${He} looks like an over-inflated balloon.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly greatly distends ${his} latex suit, leaving ${him} looking like an over-inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly greatly bulges under ${his} latex suit.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly greatly bulges under ${his} latex suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly greatly bulges under ${his} latex suit.`); - } else { - r.push(`${slave.slaveName}'s growing belly greatly bulges under ${his} latex suit.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly in quite noticeable under ${his} latex suit, though any folds ${he} might have are smoothed out by it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`There is a clear curve to the tight latex of the suit beneath ${slave.slaveName}'s navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s latex suit tightly hugs ${his} stomach to showcase ${his} ripped abs.`); - } - break; - case "a military uniform": - if (slave.belly >= 1000000) { + break; + case "a military uniform": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + } } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + } } - } else { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } } - } else { + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } } - } else { + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + } + } + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); } - } else { + } else if (slave.muscles > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); } } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + break; + case "a schutzstaffel uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + } + } + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + } } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + } } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + } } - } else if (isBellyFluidLargest) { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} trousers.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} trousers.`); } - } else { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} trousers.`); } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); + } else { + r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); + } + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + } } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + } } - } else if (isBellyFluidLargest) { + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); } else { - r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); } - } else { + } else if (slave.muscles > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); } } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + break; + case "a slutty schutzstaffel uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + } } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); - } else { - r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); - } - } - break; - case "a schutzstaffel uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + } } - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} miniskirt.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`); } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } } - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} miniskirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} miniskirt.`); } - } else { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} miniskirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} miniskirt.`); } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } } - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + } } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); } - } else { + } else if (slave.muscles > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); } } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + break; + case "a red army uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + } } - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + } } - } else { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } } - } else if (slave.bellyImplant > 0) { + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); } - } else { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} trousers.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); + } else { + r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); + } + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + } } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + } } - } else if (isBellyFluidLargest) { + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); } else { - r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); } - } else { + } else if (slave.muscles > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); } } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + break; + case "a mounty outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); + } } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } } - } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} trousers.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} trousers.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + } } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + } } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + } } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + } } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + } } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); + } else { + r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); + } + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + } } else { - r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + } } - } else if (isBellyFluidLargest) { + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); } else { - r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); } - } else { + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); + } else { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + } else { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); - } else { - r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); - } - } - break; - case "a slutty schutzstaffel uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); + } else { + r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); + } } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); } - } else if (slave.bellyImplant > 0) { + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); + r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); } - } else { + } else if (slave.muscles > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); + r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); + r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); } } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + break; + case "a nice nurse outfit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } } - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s monolithic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang heavily.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang heavily.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); + } } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`); + } } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room to grow.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room is needs.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more space to expand.`); + } } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); + } } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly peeks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant ${slave.inflationType}-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly peeks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant implant-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant pregnant belly peeks out from between ${his} massive tits. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } } - } else { + } else if (slave.weight > 190) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s massively fat belly is partially obscured by ${his} massive tits; in turn, it obscures ${his} trousers.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} massively fat belly freely hangs out from under them, obscuring ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massively fat belly.`); } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} miniskirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge ${slave.inflationType}-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); + } } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely swollen belly hangs out from under them, obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely swollen belly hangs out from under ${his} top, obscuring ${his} trousers.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, straining the buttons on ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); + } } else { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); + } } - } else if (slave.bellyImplant > 0) { + } else if (slave.weight > 160) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s hugely fat belly is mostly obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely fat belly freely hangs out from under them, obscuring ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); } - } else { + } else if (slave.weight > 130) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big fat belly freely hangs out from under them, obscuring ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} jiggling ${slave.inflationType}-filled belly hangs out from under them, slightly obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} jiggling ${slave.inflationType}-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-filled belly hangs out from under them, slightly obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled belly hangs out from under ${his} top, slightly obscuring ${his} trousers.`); + } } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`); + } } - } else if (isBellyFluidLargest) { + } else if (slave.weight > 95) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`); } else { - r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} small pregnant belly is completely exposed.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} small pregnant belly completely.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ${slave.inflationType}-swollen belly is completely exposed.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-rounded belly is completely exposed.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} implant-rounded belly completely.`); + } } else { - r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} growing belly is completely exposed.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} growing belly completely.`); + } } - } else { + } else if (slave.weight > 30) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} miniskirt.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} miniskirt.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} miniskirt.`); - } else { - r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} miniskirt.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); - } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); - } else { - r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); - } - } - break; - case "a red army uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); - } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); - } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); - } - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); - } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); - } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); - } else { - r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); - } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); - } else { - r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); - } - } - break; - case "a mounty outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`); - } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`); - } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`); - } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`); - } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`); - } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`); - } - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`); - } - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`); - } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`); - } else { - r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`); - } else { - r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`); - } else { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); - } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`); - } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } else { - r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`); - } else { - r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); - } else { - r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`); - } - } - break; - case "a nice nurse outfit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s monolithic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`); - } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang heavily.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang heavily.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`); - } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room to grow.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room is needs.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more space to expand.`); - } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); - } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly peeks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant ${slave.inflationType}-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant implant-filled belly peeks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant implant-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant pregnant belly peeks out from between ${his} massive tits. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } - } else if (slave.weight > 190) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s massively fat belly is partially obscured by ${his} massive tits; in turn, it obscures ${his} trousers.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} massively fat belly freely hangs out from under them, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massively fat belly.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge ${slave.inflationType}-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`); - } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely swollen belly hangs out from under them, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely swollen belly hangs out from under ${his} top, obscuring ${his} trousers.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, straining the buttons on ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`); - } - } - } else if (slave.weight > 160) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s hugely fat belly is mostly obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely fat belly freely hangs out from under them, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big fat belly freely hangs out from under them, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} jiggling ${slave.inflationType}-filled belly hangs out from under them, slightly obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} jiggling ${slave.inflationType}-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-filled belly hangs out from under them, slightly obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled belly hangs out from under ${his} top, slightly obscuring ${his} trousers.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`); - } - } - } else if (slave.weight > 95) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} small pregnant belly is completely exposed.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} small pregnant belly completely.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ${slave.inflationType}-swollen belly is completely exposed.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-rounded belly is completely exposed.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} implant-rounded belly completely.`); - } - } else { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} growing belly is completely exposed.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} growing belly completely.`); - } - } - } else if (slave.weight > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} chubby belly is completely exposed and allowed to hang over the waist of ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} chubby belly completely; though it does hide the top of ${his} trousers.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly is obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} slightly swollen belly can be clearly seen poking over ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} trousers are fastened a little lower and ${his} scrub top tightly clings to the slight swell of ${his} lower belly.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s ripped abs are mostly obscured by ${his} massive tits.`); - } else if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ripped abs are completely exposed for all to see.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though you can nearly make out ${his} ripped abs beneath ${his} scrub top.`); - } - } - break; - case "a mini dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s mini dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress barely clings to ${his} big implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s mini dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "lederhosen": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s tunic strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "a long qipao": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "a biyelgee costume": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "a dirndl": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "battlearmor": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized ${slave.inflationType} and special hookups to optimize the value of mobility aids.`); - } else if (slave.bellyImplant > 0) { - r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized implant and special hookups to optimize the value of mobility aids.`); - } else { - r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized womb and innumerable brood of squirming children, as well as special hookups to optimize the value of mobility aids.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s armor strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); - } else { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s armor tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "Imperial Plate": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized ${slave.inflationType} and special hookups to optimize the value of mobility aids.`); - } else if (slave.bellyImplant > 0) { - r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized implant and special hookups to optimize the value of mobility aids.`); - } else { - r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized womb and innumerable brood of squirming children, as well as special hookups to optimize the value of mobility aids.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} monolithic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} swollen belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} monolithic pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic pregnant belly ${him} underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s armor strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge implant-filled belly underneath the ultra-heavy armor.`); - } else { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big fat belly, clearly showing all ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} fat belly, clearly showing every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s ultra-heavy armor just barely indicates ${his} chubby belly underneath.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s ultra-heavy armor just barely indicates the swell of ${his} belly underneath the heavy plate.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ultra-heavy armor fails to contain the definition of ${his} ripped abs, hinting at a powerful ${his} six pack underneath the industrial plate.`); - } - break; - case "kitty lingerie": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge tremendously.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge tremendously.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silk panties. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge massively.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge massively.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} silk panties. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} silk panties. ${His} children appreciate the space granted by ${his} exposed middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silk panties and takes full advantage of its freedom to bulge hugely.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hides ${his} silk panties and bulges heavily from ${his} body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly hides ${his} silk panties and bulges heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly hides ${his} silk panties and bulges heavily from ${his} body.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hides ${his} silk panties.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly almost hides ${his} silk panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly almost hides ${his} silk panties.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly almost hides ${his} silk panties.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly almost hides ${his} silk panties.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly hides most of ${his} silk panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s big ${slave.inflationType}-filled belly hides most of ${his} silk panties.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly hides most of ${his} silk panties.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly hides most of ${his} silk panties.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hides the top ${his} silk panties.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hides the top of ${his} silk panties.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly obscures ${his} silk panties' fabric cat ears.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly obscures ${his} silk panties' fabric cat ears.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly obscures ${his} silk panties' fabric cat ears.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly obscures ${his} silk panties' fabric cat ears.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties' fabric cat ears.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges above ${his} silk panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silk panties.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges above ${his} silk panties.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges above ${his} silk panties.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly rests above ${his} silk panties.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s silk panties rest just beneath the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); - } - break; - case "a monokini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly protrudes from over the top of ${his} monokini, which has been fully pushed down by the mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly protrudes from over the top of ${his} monokini, which has been fully pushed down by the mass.`); - } else { - r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} monolithic bulging pregnant belly. ${His} monolithic squirming belly protrudes from over the top of the swimsuit, which has been pushed down by the mass.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic ${slave.inflationType}-filled belly, which rests on top of the swimsuit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic implant-filled belly, which rests on top of the swimsuit.`); - } else { - r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic pregnant belly, which rests on top of the swimsuit.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} massive ${slave.inflationType}-filled belly. The swimsuit has been pushed down to well below ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} massive implant-filled belly. The swimsuit has been pushed down to well below ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} massive pregnant belly. The swimsuit has been pushed down to well below ${his} popped navel.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} giant ${slave.inflationType}-filled belly. The swimsuit has been pushed down to below ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} giant implant-filled belly. The swimsuit has been pushed down to below ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} giant pregnant belly. The swimsuit has been pushed down to below ${his} popped navel.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} huge ${slave.inflationType}-filled belly. The swimsuit has been pushed down to just below ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} huge implant-filled belly. The swimsuit has been pushed down to just below ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} huge pregnant belly. The swimsuit has been pushed down to just below ${his} popped navel.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s monokini shows off every wiggle and jiggle within ${his} massively fat belly. The material tightly clings to ${his} deep folds and rolls, which are spilling out over the top of the outfit.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s monokini shows off the curvature of ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini overs less than half of ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini overs less than half of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s monokini tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in its mass.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s monokini tightly clings to ${his} big fat belly, clearly displaying every fold and roll.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s monokini covers most of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini covers most of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini covers most of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s monokini covers most of ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s monokini covers all of ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini covers all of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini covers all of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s monokini covers all of ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s monokini clings to ${his} chubby belly, clearly displaying every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s monokini is slightly rounded out by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s monokini covers much of ${his} powerful abdominal muscles.`); - } - break; - case "an apron": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant pregnant belly.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} implant-filled belly.`); - } else { - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s apron is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s apron is filled out by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s apron is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s apron is filled out by ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s apron is filled out by ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s apron bulges with ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s apron is rounded out by ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s apron is rounded out by ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s apron is rounded out by ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s apron is rounded out by ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s apron is rounded out by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s apron is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s apron fully covers ${his} muscular abs.`); - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic ${slave.inflationType}-filled belly with major extensions to the material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic implant-filled belly with major extensions to the material.`); - } else { - r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic pregnant belly with major extensions to the material.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive pregnant belly is fully covered.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s abaya is filled by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya is filled by ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya is filled by ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya is filled by ${his} pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s abaya bulges with ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s abaya bulges with ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya bulges with ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s abaya bulges with ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s abaya bulges slightly from ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s abaya is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s abaya fully covers ${his} muscular abs.`); - } - break; - case "a klan robe": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic ${slave.inflationType}-swollen belly, it's now ironically much more comfortable to wear.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic implant-filled belly, it's now ironically much more comfortable to wear.`); - } else { - r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic pregnant belly, it's now ironically much more comfortable to wear.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic bulging pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant pregnant belly.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s robes are greatly pushed out by ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s robes are filled out by ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes are filled out by ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes are filled out by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s robes are filled out by ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly pushes out ${his} robes.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly slightly pushes out ${his} robes.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} implant-filled belly.`); - } else { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} robes.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s robes bulge with ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s robes show no sign of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s robes show no sign of ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s robes show no sign of ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s robes totally conceal ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s robes totally conceal ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s robes totally conceal ${his} abdominal muscles.`); - } - break; - case "a burqa": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic ${slave.inflationType}-swollen belly, it's now ironically much more comfortable to wear.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic implant-filled belly, it's now ironically much more comfortable to wear.`); - } else { - r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic pregnant belly, it's now ironically much more comfortable to wear.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic bulging pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant pregnant belly.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s burqa is greatly pushed out by ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly pushes out ${his} burqa.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly slightly pushes out ${his} burqa.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} implant-filled belly.`); - } else { - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s abaya bulges with ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burqa shows no sign of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burqa shows no sign of ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s burqa shows no sign of ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s burqa totally conceals ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s burqa totally conceals ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s burqa totally conceals ${his} abdominal muscles.`); - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else { - r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s outfit is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s outfit is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s outfit is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s outfit bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s outfit gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s outfit gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s outfit is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s outfit is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s outfit barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a tube top and thong": - case "a bra": - case "a thong": - case "a tube top": - case "a striped bra": - case "striped underwear": - case "a skimpy loincloth": - case "a slutty klan robe": - case "a sports bra": - case "boyshorts": - case "cutoffs": - case "leather pants and pasties": - case "leather pants": - case "panties": - case "panties and pasties": - case "pasties": - case "sport shorts and a sports bra": - case "jeans": - case "leather pants and a tube top": - case "sport shorts": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic implant-filled belly.`); - } else { - r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} outfit completely bares ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} outfit completely bares ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} outfit completely bares ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant ${slave.inflationType}-filled belly is fully visible.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant implant-filled belly is fully visible.`); - } else { - r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant pregnant belly is fully visible.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s outfit is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s outfit completely bares ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s outfit completely bares ${his} abdominal muscles.`); - } - break; - case "a one-piece swimsuit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} swimsuit has been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} swimsuit has been widened to pick up the slack.`); - } else { - r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} swimsuit has been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s swimsuit is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s swimsuit is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s swimsuit is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s swimsuit bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s swimsuit is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s swimsuit is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s swimsuit barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} sweater has been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} sweater has been widened to pick up the slack.`); - } else { - r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} sweater has been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s sweater is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s sweater is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s sweater is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s sweater bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s sweater gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s sweater gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s sweater gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s sweater gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s sweater is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s sweater is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s sweater barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a police uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else { - r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s uniform is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s uniform is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s uniform is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s uniform bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s uniform gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s uniform gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s uniform gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s uniform gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s uniform is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s uniform is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s uniform barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a hanbok": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} hanbok has been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} hanbok has been widened to pick up the slack.`); - } else { - r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} hanbok has been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s hanbok is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hanbok is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s hanbok is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s hanbok bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s hanbok is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s hanbok is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s hanbok barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a gothic lolita dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} dress has been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} dress has been widened to pick up the slack.`); - } else { - r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} dress has been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s dress is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s dress is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s dress is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s dress bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s dress bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s dress gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s dress gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s dress barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a tank-top": - case "a tank-top and panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else { - r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName} tank-top is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName} tank-top is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName} tank-top is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName} tank-top bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} tank-top bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} tank-top bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName} tank-top bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName} tank-top bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName} tank-top gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} tank-top gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} tank-top gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName} tank-top gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName} tank-top is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName} tank-top is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName} tank-top barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a button-up shirt and panties": - case "a button-up shirt": - case "a t-shirt": - case "a t-shirt and thong": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "sport shorts and a t-shirt": - case "a t-shirt and jeans": - case "a t-shirt and panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else { - r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s shirt is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s shirt is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s shirt is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s shirt bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s shirt gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirt gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirt gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s shirt gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s shirt is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s shirt is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s shirt barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a burkini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else if (slave.bellyImplant > 0) { - r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); - } else { - r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); - } else { - r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s burkini is straining to contain ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} huge implant-filled belly.`); - } else { - r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s burkini is filled out by ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s burkini is filled out by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s burkini gently bulges from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s burkini gently bulges from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s burkini gently bulges from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s burkini gently bulges from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s burkini is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s burkini is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s burkini barely shows the contours of ${his} abdominal muscles.`); - } - break; - case "a hijab and blouse": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic pregnant belly.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic bulging pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`Thanks to ${his} giant ${slave.inflationType}-swollen belly, ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`Thanks to ${his} giant implant-filled belly, ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); - } else { - r.push(`Thanks to ${his} giant pregnant belly ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly spills over the sides of ${his} skirt.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly obscures the top of ${his} skirt.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly nearly obscures the top of ${his} skirt.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s blouse and skirt bulge slightly from ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s blouse and skirt are slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s blouse and skirt fully cover ${his} muscular abs.`); - } - break; - case "attractive lingerie": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} lacy g-string. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge massively.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge massively.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} lacy g-string. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} lacy g-string. ${His} children appreciate the space granted by ${his} exposed middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} lacy g-string and takes full advantage of its freedom to bulge hugely.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly completely hides ${his} lacy g-string.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} lacy g-string.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly completely hides ${his} lacy g-string.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} lacy g-string.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} lacy g-string.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly hides ${his} lacy g-string.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly hides ${his} lacy g-string.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly hides ${his} lacy g-string.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hides ${his} lacy g-string.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hides ${his} lacy g-string.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} lacy g-string.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges above ${his} lacy g-string.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} lacy g-string.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges above ${his} lacy g-string.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges above ${his} lacy g-string.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly rests above ${his} lacy g-string, concealing the top of it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s lacy g-string rests just beneath the slight swell of ${his} lower belly making it completely obvious.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); - } - break; - case "a succubus outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic pregnant belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together under the ever increasing pressure.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together from the sheer size of ${him}.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together under the ever increasing pressure.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hangs out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hangs out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hangs out of ${his} corset, which is laced above and below it allowing it to hang free.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly sticks out of ${his} corset, which is laced above and below it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above and below it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly sticks out of ${his} corset, which is laced above and below it.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly sticks out of ${his} corset, which is laced above and below it.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly peeks out of ${his} corset, which is laced above and below it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly peeks out of ${his} corset, which is laced above and below it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly peeks out of ${his} corset, which is laced above and below it.`); - } else { - r.push(`${slave.slaveName}'s growing pregnant belly peeks out of ${his} corset, which is laced above and below it.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly peeks out of ${his} corset, which is laced above and below it to allow it to hang free.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s lower belly slightly bulges out from under ${his} corset, which is only laced above it to avoid discomfort.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} corset.`); - } - break; - case "a slutty maid outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} straining stomach.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} bulging stomach.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} squirming stomach.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant pregnant belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that also fails to cover anything. It rests meekly on top of ${his} stomach, accomplishing little.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that also fails to cover anything. It rests meekly on top of ${his} stomach, accomplishing little.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that has also been completely outgrown. It rests meekly on top of ${his} stomach, accomplishing little.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massively fat belly, but the outfit includes a thin white blouse that, when stretched, barely manages to conceal the upper part of ${his} gut, leaving the rest to jiggle freely and frequently escape the confines of its cloth prison.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big pregnant belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} hugely swollen belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} swollen stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big implant-filled belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big pregnant belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach. ${He} can do little to stop it from frequently riding up, however.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} hugely fat belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} gut. ${He} can do little to stop it from riding up the fleshy mass as ${he} moves.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big fat belly, but the outfit includes a thin white blouse that, when stretched, manages to wrangle ${his} gut. It does little to stiffle the jiggle, however.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} pregnant belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} jiggling ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that tightly hugs ${his} bloated stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} implant-filled belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); - } else { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} pregnant belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that manages to wrangle ${his} gut.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s maid dress is tight enough to show the slight curve to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s maid dress completely covers ${his} ripped abs, but is tight enough to give a hint of a six pack.`); - } - break; - case "a nice maid outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel and bulging brood, nor how large ${he} has become. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel and bulging brood, nor how large ${he} has become. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant seam splitting ${slave.inflationType}-filled belly, though it cannot hide ${his} popped navel, poking through the front.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant seam splitting implant-filled belly, though it cannot hide ${his} popped navel, poking through the front.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant pregnant belly, though it cannot hide ${his} popped navel, poking through the front. If ${he} grows any larger, ${he} will risk tearing ${his} outfit at the seams.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s maid dress is almost conservative, it barely contains ${his} massively fat belly. Its seams strain against ${his} wobbling mass.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge ${slave.inflationType}-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge implant-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} hugely swollen belly completely, but does nothing to hide its size and shape.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big implant-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} hugely fat belly completely, but does nothing to hide how big and jiggly it is.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} big fat belly completely, but does nothing to hide how big and jiggly it is.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} pregnant belly completely, but does nothing to hide just how large it is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} jiggling ${slave.inflationType}-filled belly completely, but does nothing to hide its size and motion.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} implant-filled belly completely, but does nothing to hide just how large it is.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} pregnant belly completely, but does nothing to hide just how large it has gotten.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} fat belly completely, but does nothing to hide how big it is.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} small belly completely.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} ${slave.inflationType}-swollen belly completely.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} implant-rounded belly completely.`); - } else { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} growing belly completely.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} chubby belly completely.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} growing belly completely.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} ripped abs completely.`); - } - break; - case "a fallen nuns habit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic pregnant belly. ${His} children greatly appreciate the freedom, even though its still quite cramped.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic pregnant belly. ${His} children appreciate the freedom.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} massively fat belly to hang free.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} hugely fat belly to hang free.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} big fat belly to hang free.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s latex habit's corset is barely holding together over ${his} fat belly, causing flab to spill out from every opening.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s latex habit's corset compresses ${his} chubby belly forcing pudge to spill out from under it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s latex habit's corset uncomfortably compresses the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s latex habit's corset tightly hugs ${his} ripped abs.`); - } - break; - case "a penitent nuns habit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin; doubly so, as ${his} distress causes ${his} babies to squirm as much as they can in ${his} cramped womb.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin; doubly so, as ${his} distress causes ${his} babies to begin squirming.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin; doubly so, as ${his} distress causes ${his} babies to begin squirming.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant implant-filled belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant implant-filled belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); - } else { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant pregnant belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly completely fills ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating and entirely relentless.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge jiggling ${slave.inflationType}-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a hugely swollen belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly fills ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly fills out ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a jiggling ${slave.inflationType}-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } else { - r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s habit gently bulges from ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s habit gently bulges from ${his} ${slave.inflationType}-swollen belly. The coarse cloth aggravates ${his} sensitive skin.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s habit gently bulges from ${his} implant-rounded belly. The coarse cloth aggravates ${his} sensitive skin.`); - } else { - r.push(`${slave.slaveName}'s habit gently bulges from ${his} growing belly. The coarse cloth aggravates ${his} sensitive skin.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s habit gently bulges from ${his} chubby belly. The coarse cloth takes advantage of the extra surface area.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s habit may hide the slight swell to ${his} habit, but the coarse cloth keeps ${him} fully aware of it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs rub uncomfortably against ${his} habit.`); - } - break; - case "a Santa dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic ${slave.inflationType}-filled belly, let alone ${his} whole body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic implant-filled belly, let alone ${his} whole body.`); - } else { - r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic pregnant belly, let alone ${his} whole body.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic implant-filled belly.`); - } else { - r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive implant-filled belly.`); - } else { - r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant pregnant belly.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`The bottom of ${slave.slaveName}'s huge ${slave.inflationType}-filled belly is stretching ${his} dress's belt to its breaking point.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s huge implant-filled belly is stretching ${his} dress's belt to its breaking point.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s huge pregnant belly is stretching ${his} dress's belt to its breaking point.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly emphasizes the design of and strains ${his} festive dress.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} hugely ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly accentuates the design of and badly stretches out ${his} festive dress.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly stretches out the leather belt around ${his} waist.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} implant-filled belly.`); - } else { - r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} implant-rounded belly.`); - } else { - r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`The fabric of ${slave.slaveName}'s dress is thick enough to cover the contours of ${his} abdominal muscles.`); - } - break; - case "overalls": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); - } else { - r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen, implant-filled belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); - } else { - r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen, implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen pregnant belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); - } else { - r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen pregnant belly.`); - } - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic implant-filled belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic pregnant belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic pregnant belly.`); - } - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic ${slave.inflationType}-filled belly but do little to hide its size as it spills out from behind the stretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic implant-filled belly but do little to hide its size as it spills out from behind the stretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic pregnant belly but do little to hide its size and shape as it spills out from behind the stretched garment.`); - } else { - r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); - } - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic ${slave.inflationType}-filled belly but do little to hide its size as it bulges out from behind the taut garment.`); - } else { - r.push(`${slave.slaveName}'s overalls push against ${his} gigantic ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic implant-filled belly but do little to hide its size as it bulges out from behind the taut garment.`); - } else { - r.push(`${slave.slaveName}'s overalls push against ${his} gigantic implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic pregnant belly but do little to hide its size as it bulges out from behind the taut garment.`); - } else { - r.push(`${slave.slaveName}'s overalls push against ${his} gigantic pregnant belly .`); - } - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive ${slave.inflationType}-filled belly but do little to hide its size.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive ${slave.inflationType}-filled belly.`); - } - r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive implant-filled belly but do little to hide its size.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive pregnant belly but do little to hide its size.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive pregnant belly.`); - } - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant ${slave.inflationType}-filled belly is left slightly uncovered.`); - } else { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains the fabric of ${his} overalls.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant implant-filled belly is left slightly uncovered.`); - } else { - r.push(`${slave.slaveName}'s giant implant-filled belly strains the fabric of ${his} overalls.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant pregnant belly is left slightly uncovered.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly strains the fabric of ${his} overalls.`); - } - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant ${slave.inflationType}-filled belly is left partially uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant implant-filled belly is left partially uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant pregnant belly is left partially uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant pregnant belly.`); - } - r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); - } - } else if (slave.belly >= 45000) { - if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge ${slave.inflationType}-filled belly is left halfway uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge ${slave.inflationType}-filled pregnant belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left halfway uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge pregnant belly is left halfway uncovered.`); - } else { - r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge pregnant belly.`); - } - } - } else if (slave.weight > 190) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} massively fat belly is left mostly uncovered.`); - } else { - r.push(`${slave.slaveName}'s massively fat belly spills out over the sides of ${his} overalls.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge pregnant belly is left mostly uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge pregnant belly.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge ${slave.inflationType}-filled belly is left mostly uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left mostly uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge pregnant belly is left mostly uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge pregnant belly.`); - } - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big pregnant belly is left almost entirely uncovered.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly stretches out the fabric of ${his} overalls.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`); - } else { - r.push(`${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big implant-filled belly is left almost entirely uncovered.`); - } else { - r.push(`${slave.slaveName}'s big implant-filled belly stretches out the fabric of ${his} overalls.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big pregnant belly is left almost entirely uncovered.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly stretches out the fabric of ${his} overalls.`); - } - } - } else if (slave.weight > 160) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`); - } - } else if (slave.weight > 130) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} big fat belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s big fat belly spills out from behind ${his} overalls.`); - } - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} pregnant belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} jiggling ${slave.inflationType}-filled belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} jiggling ${slave.inflationType}-filled belly.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} implant-filled belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} implant-filled belly.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} pregnant belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); - } - } - } else if (slave.weight > 95) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`); - } - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} small pregnant belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s small pregnant belly rounds out the front of ${his} overalls.`); - } - } else if (isBellyFluidLargest) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} ${slave.inflationType}-swollen belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rounds out the front of ${his} overalls.`); - } - } else if (slave.bellyImplant > 0) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} implant-rounded belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s implant-rounded belly rounds out the front of ${his} overalls.`); - } - } else { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} growing belly is left uncovered.`); - } else { - r.push(`${slave.slaveName}'s growing belly rounds out the front of ${his} overalls.`); - } - } - } else if (slave.weight > 30) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} chubby belly is left uncovered.`); - } else { - r.push(`The sides of ${slave.slaveName}'s chubby belly peek out from behind ${his} overalls.`); - } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} rounded belly is left uncovered.`); - } else { - r.push(`There is a slight curve to ${slave.slaveName}'s from ${his} belly.`); - } - } else if (slave.muscles > 30) { - if (slave.boobs > (slave.belly + 250)) { - r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} ripped abs are left uncovered.`); - } else { - r.push(`The sides of ${slave.slaveName}'s ripped abs peek out from behind ${his} overalls.`); - } - } - break; - case "a string bikini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so monolithic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is so monolithic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is so monolithic that most of ${his} string bikini is completely eclipsed by the straining mass.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so titanic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is so titanic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is so titanic that most of ${his} string bikini is completely eclipsed by the life stuffed mass.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so gigantic that most of ${his} string bikini is completely eclipsed by its bulk.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is so gigantic that most of ${his} string bikini is completely eclipsed by its bulk.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is so gigantic that most of ${his} string bikini is completely eclipsed by the life filled mass.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so massive that most of ${his} string bikini is completely eclipsed by its bulk.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is so massive that most of ${his} string bikini is completely eclipsed by its bulk.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is so massive that most of ${his} string bikini is completely eclipsed by the life swollen mass.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hides most ${his} string bikini. What can be seen of it risks being swallowed up by ${his} folds.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly parts ${his} string bikini to either side.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly parts ${his} string bikini to either side.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} string bikini to either side.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly parts ${his} string bikini to either side.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly parts ${his} string bikini to either side.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly parts ${his} string bikini to either side.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly parts ${his} string bikini to either side.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly parts ${his} string bikini to either side.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly parts ${his} string bikini to either side and threatens to hide ${his} bikini bottom.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly parts ${his} string bikini to either side.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly parts ${his} string bikini to either side.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly parts ${his} string bikini to either side.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly parts ${his} string bikini to either side.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly parts ${his} string bikini to either side.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly juts out between the strings of ${his} bikini.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly juts out between the strings of ${his} bikini.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly juts out between the strings of ${his} bikini.`); - } else { - r.push(`${slave.slaveName}'s growing belly juts out between the strings of ${his} bikini.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly bulges between the strings of ${his} bikini.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s string bikini parts just barely around the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s string bikini clings to ${his} ripped abs.`); - } - break; - case "a scalemail bikini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge tremendously.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge tremendously.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} scalemail bikini. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing. They frequently squirm from the chafing, only to cause ${him} rub against the scales more.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge massively.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge massively.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} scalemail bikini. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines, save for when they squirm angrily over the chafing.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} scalemail bikini. ${His} children appreciate the space granted by ${his} exposed middle, but could do without the occasional chafing.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to bulge hugely.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and bulges heavily from ${his} body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} scalemail bikini and bulges heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} lacy scalemail bikini and bulges heavily from ${his} body.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} scalemail bikini to be fastened beneath it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled forces ${his} scalemail bikini to be fastened beneath it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled forces ${his} scalemail bikini to be fastened beneath it.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} scalemail bikini to be fastened beneath it.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} scalemail bikini.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} scalemail bikini down and rests heavily above it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly greatly pushes out ${his} scalemail bikini.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} scalemail bikini.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} scalemail bikini.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly forces ${his} scalemail bikini down and juts out above it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly pushes out ${his} scalemail bikini.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} scalemail bikini.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges underneath ${his} bikini.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges underneath ${his} tight bikini.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges underneath ${his} bikini.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges underneath ${his} bikini.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly rests above ${his} bikini, concealing the top of it and scraping against the scalemail.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s scalemail bikini scrapes uncomfortably against ${his} lower belly and draws attention to the slight swell to it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see and perfectly suit ${his} scalemail bikini.`); - } - break; - case "striped panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge tremendously.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge tremendously.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} cute panties. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing. They frequently squirm from the chafing, only to cause ${him} rub against the fabric more.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge massively.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge massively.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} cute panties. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines, save for when they squirm angrily against the fabric.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} cute panties. ${His} children appreciate the space granted by ${his} exposed middle, but could do without the occasional chafing.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} cute panties and takes full advantage of its freedom to bulge hugely.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hides ${his} cute panties, but the constant chafing reminds ${him} it's there.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} cute panties to stretch beneath it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly forces ${his} cute panties to stretch beneath it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly forces ${his} cute panties to stretch beneath it.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} cute panties to stretch beneath it.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} cute panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} cute panties down and rests heavily above it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly greatly pushes out ${his} cute panties.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} cute panties.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} cute panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly forces ${his} cute panties down and juts out above it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly pushes out ${his} cute panties.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} cute panties.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges underneath ${his} panties.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges underneath ${his} panties.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges underneath ${his} panties.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges underneath ${his} panties.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly rests above ${his} panties, concealing the top of it and scraping against the fabric.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s cute panties rub uncomfortably against ${his} lower belly and draws attention to the slight swell to it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see and perfectly suit ${his} cute panties.`); - } - break; - case "clubslut netting": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly is so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly has grown so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle and every bump and gully that ${his} unborn children cause along its surface.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit trying to contain ${his} bulging middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit trying to contain ${his} bulging middle.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit by ${his} excessive gravidity and the bulges of ${his} unborn slipping through the mesh.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} bulging middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} bulging middle.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} excessive gravidity.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} bulging middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} bulging middle.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} excessive gravidity.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to the rounded curve of ${his} middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to the rounded curve of ${his} middle.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly has grown so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to ${his} excessive gravidity.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant ${slave.inflationType}-filled belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant implant-filled belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); - } else { - r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant pregnant belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} massively fat belly's desire for more room. Flab juts massively through the mesh and entire folds are hugged tightly by the straining material.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} hugely fat belly, forcing flab to poke through the mesh in a desperate search for more room.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} big fat belly, forcing flab to poke through the mesh.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} fat belly causing flab to poke through the mesh.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} chubby belly, gently forcing pudge through the mesh.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} figure leaving the slight swell to ${his} lower belly quite noticeable.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs peek through the gaps in ${his} clubslut netting.`); - } - break; - case "a cheerleader outfit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly bare. ${He}'s so expansive that ${he} alone is needed for the base of the pyramid.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen, implant-filled belly bare. ${He}'s so expansive that ${he} alone is needed for the base of the pyramid.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen pregnant belly bare, clearly displaying that this cheerleader is not only ready to burst with school spirit, but preparing to bring a class of ${his} own into the world.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic ${slave.inflationType}-filled belly bare. ${He}'s so large, it's expected that ${he}'d make a fantastic base for the pyramid all on ${his} own.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic implant-filled belly bare. ${He}'s so large, it's expected that ${he}'d make a fantastic base for the pyramid all on ${his} own.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic pregnant belly bare, clearly displaying that this cheerleader is ready to burst with school spirit.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic ${slave.inflationType}-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic implant-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic pregnant belly bare, clearly displaying that this cheerleader is thoroughly filled with school spirit.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic ${slave.inflationType}-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic implant-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic pregnant belly bare, clearly displaying that this cheerleader has been cheering on the entirety of both teams.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive ${slave.inflationType}-filled belly bare leaving spectators to wonder just how such a gravid ${girl} has managed to stay on the squad.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive implant-filled belly bare leaving spectators to wonder just how such a gravid ${girl} has managed to stay on the squad.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive pregnant belly bare, clearly displaying that this cheerleader has been bred by the entire team.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant ${slave.inflationType}-filled belly, leaving spectators to wonder just how such a gravid ${girl} is supposed to perform.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant implant-filled belly, leaving spectators to wonder just how such a gravid ${girl} is supposed to perform.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant pregnant belly, leaving a rumor to spread that ${he}'s making a team of ${his} own.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant ${slave.inflationType}-filled belly, leaving spectators to pity the girls lower on the pyramid.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant implant-filled belly, leaving spectators to pity the girls lower on the pyramid.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant pregnant belly, leaving spectators to pity the girls that have to lift ${his} gravid bulk.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge ${slave.inflationType}-filled belly, leaving spectators to question how ${he} can even perform.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge implant-filled belly, leaving spectators to question how ${he} can even perform.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge pregnant belly, leaving it obvious how ${he} is still on the cheer squad.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} massively fat belly, completely incapable of handling the jiggly, soft mass and clearly displaying that this cheerleader has ${himself} go.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge pregnant belly, barely covering the top of it while leaving it obvious how such a slut is still on the squad.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge ${slave.inflationType}-filled belly, barely covering the top of it while leaving spectators to assume ${he}'s a slut.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge implant-filled belly, barely covering the top of it while leaving spectators to assume ${he}'s a slut.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge pregnant belly, barely covering the top of it while leaving it obvious how such a slut is still on the squad.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big pregnant belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} hugely swollen belly, covering only the top of it while leaving the rest on display to bring wonder to how many loads ${he} took last night.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big implant-filled belly, covering only the top of it while leaving the rest on display to make this cheerleader look like a giant slut.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big pregnant belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s cheerleader top covers barely covers any of ${his} hugely fat belly. The rest is free to hang and jiggle with every motion, obscuring ${his} skirt and letting everyone know how badly this cheerleader needs to diet.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s cheerleader top covers the top half of ${his} big fat belly. However, the bottom half is free to hang and jiggle with every motion, obscuring ${his} skirt and letting everyone know how badly this cheerleader needs to diet.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} pregnant belly, the bottom of which peeks out showing how slutty this cheerleader is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} jiggling ${slave.inflationType}-filled belly, the bottom of which peeks to make this cheerleader look like a slut.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} implant-filled belly, the bottom of which peeks out to make this cheerleader look like a slut.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} pregnant belly, the bottom of which peeks out showing how slutty this cheerleader is.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} fat belly. However, the bottom of it peeks out, obscuring ${his} skirt and a letting everyone know how badly this cheerleader needs to diet.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} small pregnant belly displaying how slutty this cheerleader is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} ${slave.inflationType}-swollen belly making ${him} look slutty.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} implant-rounded belly making ${him} look slutty.`); - } else { - r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} growing belly displaying how slutty this cheerleader is.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s cheerleader top frequently rides up ${his} chubby belly, letting it hang loose and hide the waist of ${his} skirt.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s cheerleader top is tight enough to draw attention to the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs can be seen through ${his} cheerleader top.`); - } - break; - case "cutoffs and a t-shirt": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic, ${slave.inflationType}-filled belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic, implant-filled belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); - } else { - r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic pregnant belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to hang heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to hang heavily from ${his} body.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly dominates ${his} exposed midriff and thwarts any efforts to zip up ${his} fly.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly dominates ${his} exposed midriff and thwarts any efforts to zip up ${his} fly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly is left to jiggle freely and spill from ${his} unfastened jeans.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} huge pregnancy.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans prominently display ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} ripe pregnancy.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} big pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} advanced pregnancy.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly is left to jiggle freely and hang over ${his} unfastened jeans.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly is left to jiggle freely and spill from ${his} unfastened jeans.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} pregnancy.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is left to hang free and cover ${his} jeans.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} small pregnant belly room.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} ${slave.inflationType}-swollen belly room.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} implant-rounded belly room.`); - } else { - r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} growing belly room.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is left free to hang over the waist of ${his} jeans.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s jeans are left unfastened and display a slight swell to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} ripped abs.`); - } - break; - case "a slutty outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly adds tremendously to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly makes it abundantly clear that ${he} is a boundless slut.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly really adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly makes it abundantly clear that ${he} is a massive slut.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly really adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly makes it abundantly clear that this slut puts out.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly really adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly makes it abundantly clear that this slut puts out.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly makes it clear that this slut puts out.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName} lets ${his} massively fat belly hang free to jiggle with every subtle motion, leaving ${him} looking like a massive slut.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly adds to ${his} slutty appearance.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s huge pregnancy adds to ${his} slutty appearance.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly adds to ${his} slutty appearance.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly adds to ${his} slutty appearance.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly adds to ${his} slutty appearance.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName} lets ${his} hugely fat belly hang free to jiggle as ${he} moves, leaving ${him} looking like a massive slut.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName} lets ${his} big fat belly hang free to jiggle as ${he} moves, leaving ${him} looking particularly slutty.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnancy adds to ${his} slutty appearance.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly adds to ${his} slutty appearance.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s pregnancy adds to ${his} slutty appearance.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly adds to ${his} slutty appearance.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly adds to ${his} slutty appearance.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly adds to ${his} slutty appearance.`); - } else { - r.push(`${slave.slaveName}'s growing pregnancy adds to ${his} slutty appearance.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is allowed to openly jiggle, making ${him} look particularly slutty.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s slutty outfit highlights the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s slutty outfit shows off ${his} slutty abs.`); - } - break; - case "a bimbo outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo will happily fuck until ${he} explodes.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo considers sex far above anything else.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo doesn't understand limits.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly eclipses ${his} miniskirt and thong from the front and leaves it abundantly clear that this bimbo doesn't understand contraception.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly forces ${his} thong strings to tightly hug its curvature as it hangs low enough to obscure ${his} miniskirt completely.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly forces ${his} thong strings to tightly hug its curvature as it hangs low enough to obscure ${his} miniskirt completely.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s thong strings and miniskirt are buried under ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge implant-filled belly and ${his} thong strings forced to caress its curves.`); - } else { - r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge pregnant belly and ${his} thong strings forced to caress its curves.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} miniskirt out of the way as it hangs ponderously from ${his} midriff.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s thong strings are buried in ${his} hugely fat belly as it hangs lewdly over ${his} miniskirt.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s thong strings dig deep into ${his} big fat belly as it lewdly spills over ${his} miniskirt.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s miniskirt digs into ${his} jiggling ${slave.inflationType}-filled belly as the top half spills over its egde.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly drapes over ${his} miniskirt.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s miniskirt pushes into ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly bulges between the strings of ${his} thong and sticks out over ${his} miniskirt.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s miniskirt is obviously bulged out by the slight swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s thong strings perfectly frame ${his} abs.`); - } - break; - case "a courtesan dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} monolithic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thinning cloth beneath.`); - } else { - r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} monolithic pregnant belly, but the sheer size of ${his} overstuffed womb forces the ribs wide, giving the many writhing bulges coating ${his} stomach room to spill out against the thinning material of ${his} dress.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} titanic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); - } else { - r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} titanic pregnant belly, but the sheer size of ${his} overfilled womb forces the ribs wide, giving the bulges of ${his} children room to spill out against the thin material of ${his} dress.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} gigantic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); - } else { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} gigantic pregnant belly, but the sheer size of ${his} filled womb forces the ribs wide, exposing the thin cloth and uneven skin beneath.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massive implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); - } else { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massive pregnant belly, but the sheer size of ${his} fecund orb forces the ribs wide, exposing the thin cloth beneath.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} giant pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massively fat belly, though the ribs still create deep ravines of succulent flesh.`); - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly strains the ribs of ${his} corset.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly strains the ribs of ${his} corset.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly strains the ribs of ${his} corset.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is carefully gripped by the ribs of ${his} corset.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly strains under the ribs of ${his} corset.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is carefully gripped by the ribs of ${his} corset.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is carefully gripped by the ribs of ${his} corset.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly strains the ribs of ${his} corset, creating deep ravines of bountiful, soft flesh.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly strains the ribs of ${his} corset, creating deep valleys of soft flesh.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is carefully caressed by the ribs of ${his} corset.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly gripped by the ribs of ${his} corset, forcing it to bulge angrily between the gaps.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is carefully caressed by the ribs of ${his} corset.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is carefully caressed by the ribs of ${his} corset.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s corset bulges with ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges between the ribs of ${his} corset.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset bulges with ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s corset bulges with ${his} growing pregnant belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly bulges between the ribs of ${his} corset.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s swollen lower belly slightly bulges the lower rib of ${his} corset.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} corset.`); - } - break; - case "a slave gown": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material. When not worn, it looks more like a circus tent than something meant to be worn by a human being. On the slave, it gives ${him} a sensual, motherly look as it caresses ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it caresses ${his} unfathomable, hyper-swollen, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it caresses and supports ${his} unfathomable, hyper-swollen pregnant belly. Despite it's size, it still has enough give to allow ${his} unborn children to bulge and squirm as desired.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material. When not worn, it looks more like a couch cover than something meant to be worn by a human being. On ${him}, it gives ${him} a sensual, motherly look as it carefully caresses ${his} monolithic, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it carefully caresses ${his} monolithic, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored using a huge quantity of material, and gives ${him} a sensual, motherly look as it carefully caresses and supports ${his} monolithic pregnant belly. It has enough give to allow ${his} unborn children to bulge and squirm as desired.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} titanic, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} titanic bulging pregnant belly.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} gigantic, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} gigantic pregnant belly.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} massive, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} massive pregnant belly.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} giant, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses and supports ${his} giant pregnant belly.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} massively fat belly. Every motion in ${his} impressive gut is elegantly embraced by ${his} gown.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} huge pregnant belly.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, almost motherly look, as it carefully caresses ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve and fold of ${his} big fat belly.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} pregnant belly.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`); - } else if (((slave.belly >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual, motherly look as it carefully caresses ${his} small belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging even the slight bulge to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging ${his} ripped abs.`); - } - break; - case "slutty business attire": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic, implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} middle. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} cramped womb. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, not that ${his} rowdy brood would tolerate that. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} gravid swell more than covers for it.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${He}'s so bulbous, ${his} skirt is forced scandalously low beneath ${his} inflated middle.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${He}'s grown so large, ${his} skirt is forced scandalously low beneath ${his} gravid mound.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could ever come close to closing them.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else { - r.push(`${slave.slaveName}'s big pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly strains the buttons of ${his} suit jacket and blouse as it struggle to contain even the upper half of it. The rest hangs free over ${his} skirt.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant stomach strains the buttons of ${his} suit jacket and blouse.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled stomach strains the buttons of ${his} suit jacket and blouse.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly strains the buttons of ${his} suit jacket and blouse.`); - } else { - r.push(`${slave.slaveName}'s pregnant stomach strains the buttons of ${his} suit jacket and blouse.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly strains the buttons of ${his} suit jacket and blouse. The bottom of which just barely peeks out from under them.`); - } else if (((slave.belly >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly fills out ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s suit jacket and blouse are tight around ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName} has left the bottom few buttons of ${his} suit jacket and blouse undone to allow ${his} ripped abs to stand out.`); - } - break; - case "nice business attire": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} inflated middle to cover ${his} shame.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} inflated middle to cover ${his} shame.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} gravid mound to cover ${his} shame.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment. ${His} skirt is left open, but ${his} inflated middle draws attention away from the fact.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic, implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} middle. ${His} skirt is left open, but ${his} inflated middle draws attention away from the fact.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} cramped womb. ${His} skirt is left open, but ${his} gravid mound draws attention away from the fact.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by strained straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, not that ${his} rowdy brood would tolerate that. ${His} skirt is loosely held together by strained straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${He}'s so bulbous, ${his} maternity skirt has stretched to its limit.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${He}'s grown so large, ${his} maternity skirt has stretched to its limit.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly strains ${his} specially tailored blouse and jacket.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly strains ${his} specially tailored blouse and jacket.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly strains ${his} specially tailored blouse and jacket.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly strains ${his} specially tailored blouse and jacket.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly strains ${his} specially tailored blouse and jacket.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} big fat belly surprisingly well, though they do nothing to hide how huge ${his} gut is.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly looks good in ${his} specially tailored blouse and jacket.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly looks good in ${his} specially tailored blouse and jacket.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly looks good in ${his} specially tailored blouse and jacket.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly looks good in ${his} specially tailored blouse and jacket.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} fat belly well, though they do nothing to hide how big ${his} gut is.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly bulges under ${his} tailored blouse and jacket.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges under ${his} tailored blouse and jacket.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly bulges under ${his} tailored blouse and jacket.`); - } else { - r.push(`${slave.slaveName}'s growing belly bulges under ${his} tailored blouse and jacket.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly fills out ${his} tailored blouse and jacket.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s suit jacket and blouse are a little tight around ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} suit jacket.`); - } - break; - case "harem gauze": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly and accentuate its size and shape.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen, implant-filled belly and accentuate its size and shape.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen pregnancy and accentuate its size and the oceanic movement as ${his} belly is rocked by the actions of ${his} brood of innumerable children.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic, ${slave.inflationType}-filled belly and accentuate its size and shape.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic, implant-filled belly and sensually accentuate its size and shape.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic pregnancy and sensually accentuate its size and the movement of ${his} many unborn children.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} titanic, implant-filled belly and sensually accentuate its size and shape.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} titanic pregnancy and sensually accentuate its size and the movement of ${his} many unborn children.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} gigantic implant-filled belly and sensually accentuate its size and shape.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} gigantic pregnancy and sensually accentuate its size and shape.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive implant-filled belly and the unique motions it takes to move it.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive pregnancy and the unique motions it takes to move it.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} giant implant-filled belly and the wide movements ${he} makes with it.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} giant pregnancy and the wide movements ${he} makes with it.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly and the wide movements ${he} makes with it.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge pregnancy and the wide movements ${he} makes with it.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massively fat belly and makes every jiggle of ${his} expansive flesh surprisingly alluring.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} heavy pregnancy.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} hugely swollen stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} advanced pregnancy.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} hugely fat belly and makes every jiggle of ${his} extra flesh surprisingly alluring.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big fat belly and makes every jiggle of ${his} flesh surprisingly alluring.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} jiggling ${slave.inflationType}-filled.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} pregnancy.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-rounded middle.`); - } else { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} growing pregnancy.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates the slight swell to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} ripped abs.`); - } else if (slave.muscles > 5) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} toned belly.`); - } - break; - case "a comfortable bodysuit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled smooth over ${his} pressure flattened navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled smooth over ${his} pressure flattened navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled smooth over ${his} pressure flattened navel and all the movement of ${his} many squirming children.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches across ${his} titanic implant-filled belly and draws the eye right to the small bump on its smooth surface, ${his} flattening navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches across ${his} titanic pregnant belly, drawing the eye to ${his} flattening navel and the squirming bulges of the life filling ${him}.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches across ${his} gigantic implant-filled belly and draws the eye right to the deminishing bump on its smooth surface, ${his} navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches across ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel and the squirming outlines of the life within ${him}.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} massive implant-filled belly and draws the eye right to the sole bump on its smooth surface, ${his} navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} massive pregnant belly and draws the eye right to each and every bump that appears on its smooth surface.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches over ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively fat belly, displaying every fold, roll and motion in it.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, displaying ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge pregnant belly, displaying ${his} popped navel and any movement ${his} babies make.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely swollen belly, displaying ${his} bloated figure and every jiggle of ${his} full stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big implant-filled belly, prominently displaying ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"} make.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely fat belly, displaying every fold, roll and motion in it.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big fat belly, displaying every fold and roll in it.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} bloating and every motion ${his} contents make.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} flattening navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} flattening navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"}.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} small pregnant belly, displaying ${his} ripening body.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} growing belly, displaying ${his} ripening body.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} chubby belly, displaying every fold and roll in it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "a slutty nurse outfit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen, implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic, ${slave.inflationType}-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic, implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} gravid swell more than covers for it.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gaint implant-filled belly, leaving ${him} with only a single straining button to keep ${his} attire together. ${He}'s so bulbous, ${his} skirt is forced scandalously low beneath ${his} inflated middle.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gaint pregnant belly, leaving ${him} with only a single straining button to keep ${his} attire together. ${He}'s grown so large, ${his} skirt is forced scandalously low beneath ${his} gravid mound.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massively fat belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge implant-filled belly, leaving ${him} with only the button below ${his} breasts done.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} hugely swollen belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big implant-filled belly, leaving ${him} with only the button below ${his} breasts done.`); - } else { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} hugely fat belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big fat belly, leaving ${him} with only the button below ${his} breasts done.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s jacket barely closes over ${his} pregnant belly leaving its buttons threatening to pop.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jacket barely closes over ${his} jiggling ${slave.inflationType}-filled belly leaving its buttons threatening to pop.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket barely closes over ${his} implant-filled belly leaving its buttons threatening to pop.`); - } else { - r.push(`${slave.slaveName}'s jacket barely closes over ${his} pregnant belly leaving its buttons threatening to pop.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s jacket barely closes over ${his} fat belly forcing plenty of flab out from under its bottom and between the straining buttons.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s jacket bulges with ${his} small pregnant belly, which can be seen peeking out from underneath.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jacket bulges with ${his} ${slave.inflationType}-swollen belly, which can be seen peeking out from underneath.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s jacket bulges with ${his} implant-rounded belly, which can be seen peeking out from underneath.`); - } else { - r.push(`${slave.slaveName}'s jacket bulges with ${his} growing belly, which can be seen peeking out from underneath.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s jacket bulges with ${his} chubby belly, which can be seen peeking out from underneath as it hangs over ${his} waist of ${his} skirt.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName} wears ${his} skirt a little lower to due to the slight swell to ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s jacket is so tight around ${his} ripped abs, even the slightest movement threatens to send buttons flying.`); - } - break; - case "a schoolgirl outfit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly. ${His} skirt barely fits around ${him} and ${his} immensity promises to soon rid ${him} of the oppressive garment.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, showing off the mind boggling result of ${his} promiscuity. It's a wonder ${his} straining skirt even manages to hold together with as much movement shoving against it.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, implant-filled belly. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly, showing off the staggering result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} massive implant-filled belly. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); - } else { - r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} massive pregnant belly. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though the result of ${his} promiscuity more than covers for it.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} giant implant-filled belly, while it itself forces ${his} skirt scandalously low.`); - } else { - r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} giant pregnant belly, while it itself forces ${his} skirt scandalously low, showing off the result of ${his} promiscuity.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse can no longer stretch over ${his} huge implant-filled belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); - } else { - r.push(`${slave.slaveName}'s blouse can no longer stretch over ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} massively fat belly, allowing it to hang loose over ${his} skirt.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge implant-filled belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); - } else { - r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse rides up ${his} big implant-filled belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse rides up ${his} hugely swollen belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } else { - r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s blouse rides up ${his} hugely fat belly, leaving it hanging loose and covering ${his} skirt.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s blouse rides up ${his} big fat belly, leaving it hanging loose and covering ${his} skirt.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse rides up ${his} jiggling ${slave.inflationType}-filled belly, leaving ${him} looking particularly slutty as it wobbles over the hem of ${his} skirt.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse rides up ${his} implant-filled belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } else { - r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); - } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly. It peeks out from the bottom as it hangs over the waist of ${his} skirt.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s skirt is a little tight around ${his} middle.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s blouse is just short enough to give tantalizing peeks of the ripped abs beneath.`); - } - break; - case "a kimono": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass, causing ${him} to resemble a geisha in repose due to ${his} immobility.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass, causing ${him} to resemble a geisha in repose due to ${his} immobility.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnancy is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible, brood swollen mass, causing ${him} to resemble nothing more than a geisha in repose, rocking on an ocean of undulating flesh.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic, implant-filled belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} kimono, since it is impossible to fold over such a turbulent swell, leaving it gracefully covering ${his} sides.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} kimono, leaving it gracefully covering its sides.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} kimono, leaving it gracefully covering its sides.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly has triumphed over ${his} kimono; ${he} has become so gravid it is simply no longer possible to properly fold the garment around ${himself}.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly has triumphed over ${his} kimono; ${he} has become so gravid it is simply no longer possible to properly fold the garment around ${himself}.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly tests the limits of ${his} kimono; any larger and ${he} simply won't be capable of folding it over ${his} enormity.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly tests the limits of ${his} kimono; any larger and ${he} simply won't be capable of folding it over ${his} gravidity.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly is barely covered by ${his} kimono; ${his} obi sinks into ${his} soft middle as it struggles to keep ${his} kimono closed.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} kimono; ${his} obi is tied above its swell ${his} for convenience.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} kimono; ${his} obi tied above its swell ${his} for convenience.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} kimono; ${his} obi tied above its swell ${his} for convenience.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly is demurely covered by ${his} kimono, though it can't hide how big it is.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly is demurely covered by ${his} kimono, though it can't hide how big it is.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly is demurely covered by ${his} kimono.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is demurely covered by ${his} kimono.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is demurely covered by ${his} kimono.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly is demurely covered by ${his} kimono.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly is demurely covered by ${his} kimono.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is demurely covered by ${his} kimono.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is demurely covered by ${his} kimono.`); - } else { - r.push(`${slave.slaveName}'s growing belly is demurely covered by ${his} kimono.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is demurely covered by ${his} kimono.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s kimono hides the minor bloating in ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are demurely covered by ${his} kimono.`); - } - break; - case "battledress": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen, ${slave.inflationType}-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to an army.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen, implant-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking , falsely, like someone preparing to give birth to an army.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen pregnant belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking like someone preparing to give birth to an army.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tank top rests atop the monolithic, ${slave.inflationType}-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to a regiment of soldiers.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the monolithic, implant-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to a regiment of soldiers.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the monolithic pregnant belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking like someone preparing to give birth to a regiment of soldiers.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the titanic implant-filled belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled implant the space it needs to hang heavily. ${He} clearly found it more productive to battle ${his} enemies in the bedroom than in the field.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the titanic pregnant belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled womb the space it needs. ${He} clearly found it more productive to battle ${his} enemies in the bedroom than in the field.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the gigantic implant-filled belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled implant more room. ${He} clearly spent more time in bed than out in the field.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the gigantic pregnant belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled womb more room. ${He} clearly spent more time in bed than out in the field.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the massive implant-filled belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who fucked all the locals.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the massive pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who fucked all the locals.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the giant implant-filled belly bulging from ${his} unfastened fatigues, leaving it clear who the favorite recruit of the platoon was.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the giant pregnant belly bulging from ${his} unfastened fatigues, leaving it clear who the favorite recruit of the platoon was.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} massively fat belly, leaving it to hang over ${his} fatigues. There is no way ${he} didn't slut ${his} way through basic.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s tank top rests atop the huge pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rests atop the huge implant-filled belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop the huge pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big pregnant belly, leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tank top barely even covers the top of the hugely swollen belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big implant-filled belly, leaving ${him} looking like someone who had too much fun on shore leave.`); - } else { - r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big pregnant belly, leaving ${him} looking like someone who had too much fun on shore leave.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} hugely fat belly, leading everyone to believe ${he} sucked ${his} way through basic.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} big fat belly, casting doubt on how this recruit passed basic.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s tank top rides up ${his} pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tank top rides up ${his} jiggling ${slave.inflationType}-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top rides up ${his} implant-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else { - r.push(`${slave.slaveName}'s tank top rides up ${his} pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s tank top covers the top of ${his} small pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tank top covers the top of ${his} ${slave.inflationType}-swollen belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tank top covers the top of ${his} implant-rounded belly leaving ${him} looking like someone who had too much fun on shore leave.`); - } else { - r.push(`${slave.slaveName}'s tank top covers the top of ${his} growing belly leaving ${him} looking like someone who had too much fun on shore leave.`); + r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} chubby belly is completely exposed and allowed to hang over the waist of ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} chubby belly completely; though it does hide the top of ${his} trousers.`); + } + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s slightly swollen belly is obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} slightly swollen belly can be clearly seen poking over ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} trousers are fastened a little lower and ${his} scrub top tightly clings to the slight swell of ${his} lower belly.`); + } + } else if (slave.muscles > 30) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s ripped abs are mostly obscured by ${his} massive tits.`); + } else if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ripped abs are completely exposed for all to see.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though you can nearly make out ${his} ripped abs beneath ${his} scrub top.`); + } } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s tank top covers the top of ${his} chubby belly leaving ${him} looking like someone who had has been lazy lately.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s fatigue pants are a little tight around ${his} middle.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s tank top exposes ${his} belly, clearly displaying a fitting six pack.`); - } - break; - case "a halter top dress": - if (slave.belly >= 1000000) { + break; + case "a mini dress": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} monolithic implant-filled belly while offering a diamond window to display ${his} popped navel and a massive expanse of skin around it.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to the bulges of life within ${his} monolithic pregnant belly while offering a diamond window to display ${his} popped navel and the expanse of skin around it, which is now held in place by several of ${his} brood also stuck protruding through the gap.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} titanic implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to the bulges of life within ${his} titanic pregnant belly while offering a diamond window to display ${his} popped navel and the expanse of skin around it, which, given how overfilled ${he} is, is constantly drifting off-center thanks to ${his} rowdy brood.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} gigantic implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to ${his} gigantic pregnant belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it, which tends to drift with the movements of ${his} brood.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly clings to ${his} massive implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to ${his} massive pregnant belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly hugs ${his} giant implant-filled belly while offering a diamond window to display ${his} popped navel and surrounding skin.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly hugs ${his} giant pregnant belly while offering a diamond window to display ${his} popped navel and surrounding skin.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly hugs ${his} huge implant-filled belly while offering a diamond window to display ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly hugs ${his} huge pregnant belly while offering a diamond window to display ${his} popped navel.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} massively fat belly. Every crease, fold, roll and motion is clearly visible within it. Its seams strain to hold back the tide of flesh pushing against them.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge pregnant belly. ${His} popped navel prominently pokes through its front.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through its front.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge pregnant belly. ${His} popped navel prominently pokes through its front.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big pregnant belly. ${His} popped navel prominently pokes through its front.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s beautiful halter top dress bulges obscenely with ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big implant-filled belly. ${His} popped navel prominently pokes through its front.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big pregnant belly. ${His} popped navel prominently pokes through its front.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} hugely fat belly. Every crease, fold, roll and motion is clearly visible within it.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} fat belly. Every crease, fold and roll is clearly visible within it.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} growing belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s mini dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s mini dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress barely clings to ${his} big implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s mini dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} chubby belly. Every crease, fold and roll is clearly visible within it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s beautiful halter top dress bulges slightly with the swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s beautiful halter top dress hugs ${his} ripped abs, clearly displaying the six pack beneath.`); - } - break; - case "a ball gown": - if (slave.belly >= 1000000) { + break; + case "lederhosen": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic, implant-filled belly to both embrace ${his} immensity and to be sure all eyes are locked to it.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic pregnant belly to both embrace ${his} immensity and to make it abundantly clear just how filled with life ${he} truly is.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic implant-filled belly while giving it the attention it demands.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic pregnant belly while drawing attention away from just how overfilled ${he} is.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} gigantic implant-filled belly while still maintaining its beauty.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} gigantic pregnant belly while still maintaining its beauty.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace a bulging middle, but ${his} massive implant-filled belly pushes it to its limit. It strains as it tightly hugs the sizeable mass extending from ${his} front.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace a hugely gravid ${girl}, but ${his} massive pregnancy pushes it to its limit. It strains as it tightly hugs ${his} sizeable baby bump and clearly shows each and every kick and squirm happening inside ${him}.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} giant implant-filled belly, but draw attention to its sheer size.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} giant pregnant belly, but draw attention to its size, shape and subtle motions.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tunic is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s tunic strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} huge implant-filled belly, but draw attention to its size and shape.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} huge pregnant belly, but draw attention to its size and shape.`); + break; + case "a long qipao": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} massively fat belly, but still draws attention to it and all its subtle curves and motions.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge pregnant belly, but draw attention to it.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge implant-filled belly, but draw attention to it.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge pregnant belly, but draw attention to it.`); + break; + case "a biyelgee costume": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big pregnant belly, but draw attention to it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} hugely swollen belly, but draw attention to it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big implant-filled belly, but draw attention to it.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big pregnant belly, but draw attention to it.`); + break; + case "a dirndl": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s dress is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s dress strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s dress tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} hugely fat belly but draw attention to it and all its subtle curves and motions.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big fat belly but draw attention to it and all its subtle curves.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} pregnant belly but draw attention to it.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} jiggling ${slave.inflationType}-filled belly but draw attention to it.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} implant-filled belly but draw attention to it.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} pregnant belly but draw attention to it.`); + break; + case "battlearmor": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized ${slave.inflationType} and special hookups to optimize the value of mobility aids.`); + } else if (slave.bellyImplant > 0) { + r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized implant and special hookups to optimize the value of mobility aids.`); + } else { + r.push(`Traditional battle armor would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly. Instead, ${he} wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized womb and innumerable brood of squirming children, as well as special hookups to optimize the value of mobility aids.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It tightly clings to ${his} monolithic pregnant belly, drawing the eye to ${his} protruding navel, the clear bulges of the life growing within ${him}, and every slight twitch inside ${his} taut middle.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It tightly clings to ${his} titanic pregnant belly, drawing the eye to ${his} protruding navel, the bulges of the life growing within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It tightly clings to ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel, the outlines of the life within ${him}, and every kick and squirm inside ${his} straining middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} massive pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It tightly clings to ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge ${slave.inflationType}-filled belly and draws the eye right to ${his} protruding navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It tightly clings to ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s armor strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge ${slave.inflationType}-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge implant-filled belly and frequently rides up far enough to show off ${his} privates.`); + } else { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge pregnant belly and frequently rides up far enough to show off ${his} privates.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} chubby belly, clearly showing every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s armor tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} rounded middle.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} growing pregnancy.`); + break; + case "Imperial Plate": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized ${slave.inflationType} and special hookups to optimize the value of mobility aids.`); + } else if (slave.bellyImplant > 0) { + r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized implant and special hookups to optimize the value of mobility aids.`); + } else { + r.push(`Regular Imperial Plate would be useless on ${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly. Instead, ${he} wears armor more suited to protecting an industrial vehicle than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from ${his} dangerously pressurized womb and innumerable brood of squirming children, as well as special hookups to optimize the value of mobility aids.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} monolithic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} swollen belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a dangerously gravid ${girl}. It just barely shows a hint of ${his} monolithic pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic pregnant belly ${him} underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a massively gravid ${girl}. It just barely shows a hint of ${his} gigantic pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} massive pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a hugely gravid ${girl}. It just barely shows a hint of ${his} giant pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor is specially tailored to fit such a gravid ${girl}. It just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s armor strains to contain ${his} massively fat belly, clearly showing all ${his} folds and rolls. Flab forces its way through every growing tear in ${his} seams; a growing nuisance, as the outfit must be restitched frequently.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge ${slave.inflationType}-filled belly underneath the ultra-heavy armor.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge implant-filled belly underneath the ultra-heavy armor.`); + } else { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} huge pregnant belly underneath the ultra-heavy armor.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} big fat belly, clearly showing all ${his} folds and rolls.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} fat belly, clearly showing every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s armor just barely shows a hint of ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s ultra-heavy armor just barely indicates ${his} chubby belly underneath.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s ultra-heavy armor just barely indicates the swell of ${his} belly underneath the heavy plate.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ultra-heavy armor fails to contain the definition of ${his} ripped abs, hinting at a powerful ${his} six pack underneath the industrial plate.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} ripped abs.`); - } - break; - case "slutty jewelry": - if (slave.belly >= 1000000) { + break; + case "kitty lingerie": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} jiggling ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); - } else { - r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as the outer most members of ${his} brood move in the tight confines of ${his} womb.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); - } else { - r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they are shifted constantly by ${his} squirming brood.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles are linked by several long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); - } else { - r.push(`${slave.slaveName}'s bangles are linked by several long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they are shifted by ${his} squirming babies.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge tremendously.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge tremendously.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silk panties. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge massively.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silk panties and takes full advantage of its lack of restriction to bulge massively.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} silk panties. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} silk panties. ${His} children appreciate the space granted by ${his} exposed middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} silk panties and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silk panties and takes full advantage of its freedom to bulge hugely.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hides ${his} silk panties and bulges heavily from ${his} body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly hides ${his} silk panties and bulges heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly hides ${his} silk panties and bulges heavily from ${his} body.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hides ${his} silk panties.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly almost hides ${his} silk panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly almost hides ${his} silk panties.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly almost hides ${his} silk panties.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly almost hides ${his} silk panties.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly hides most of ${his} silk panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s big ${slave.inflationType}-filled belly hides most of ${his} silk panties.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly hides most of ${his} silk panties.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly hides most of ${his} silk panties.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hides the top ${his} silk panties.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hides the top of ${his} silk panties.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly obscures ${his} silk panties' fabric cat ears.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly obscures ${his} silk panties' fabric cat ears.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly obscures ${his} silk panties' fabric cat ears.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly obscures ${his} silk panties' fabric cat ears.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties' fabric cat ears.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges above ${his} silk panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silk panties.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges above ${his} silk panties.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges above ${his} silk panties.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly rests above ${his} silk panties.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s silk panties rest just beneath the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} movements.`); - } else { - r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} movements.`); + break; + case "a monokini": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly protrudes from over the top of ${his} monokini, which has been fully pushed down by the mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly protrudes from over the top of ${his} monokini, which has been fully pushed down by the mass.`); + } else { + r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} monolithic bulging pregnant belly. ${His} monolithic squirming belly protrudes from over the top of the swimsuit, which has been pushed down by the mass.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic ${slave.inflationType}-filled belly, which rests on top of the swimsuit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic implant-filled belly, which rests on top of the swimsuit.`); + } else { + r.push(`${slave.slaveName}'s monokini can only cover a fraction of ${his} gigantic pregnant belly, which rests on top of the swimsuit.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} massive ${slave.inflationType}-filled belly. The swimsuit has been pushed down to well below ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} massive implant-filled belly. The swimsuit has been pushed down to well below ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} massive pregnant belly. The swimsuit has been pushed down to well below ${his} popped navel.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} giant ${slave.inflationType}-filled belly. The swimsuit has been pushed down to below ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} giant implant-filled belly. The swimsuit has been pushed down to below ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} giant pregnant belly. The swimsuit has been pushed down to below ${his} popped navel.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} huge ${slave.inflationType}-filled belly. The swimsuit has been pushed down to just below ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} huge implant-filled belly. The swimsuit has been pushed down to just below ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} huge pregnant belly. The swimsuit has been pushed down to just below ${his} popped navel.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s monokini shows off every wiggle and jiggle within ${his} massively fat belly. The material tightly clings to ${his} deep folds and rolls, which are spilling out over the top of the outfit.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s monokini shows off the curvature of ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini overs less than half of ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini overs less than half of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini overs only half of ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini overs only half of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s monokini tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in its mass.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s monokini tightly clings to ${his} big fat belly, clearly displaying every fold and roll.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s monokini covers most of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini covers most of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini covers most of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s monokini covers most of ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s monokini covers all of ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monokini covers all of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monokini covers all of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s monokini covers all of ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s monokini clings to ${his} chubby belly, clearly displaying every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s monokini is slightly rounded out by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s monokini covers much of ${his} powerful abdominal muscles.`); } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} giant implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} giant pregnant belly.`); + break; + case "an apron": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} giant pregnant belly.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} implant-filled belly.`); + } else { + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s apron is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s apron is filled out by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s apron is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s apron is filled out by ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s apron is filled out by ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s apron bulges with ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s apron is rounded out by ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s apron is rounded out by ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s apron is rounded out by ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s apron is rounded out by ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s apron is rounded out by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s apron is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s apron fully covers ${his} muscular abs.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s bangles include multiple long, thin chains running through ${his} deep fat folds to ${his} navel. They struggle to avoid being swallowed up by ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge pregnant belly.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tent-like abaya is still strained from the sheer size of ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic ${slave.inflationType}-filled belly with major extensions to the material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic implant-filled belly with major extensions to the material.`); + } else { + r.push(`${slave.slaveName}'s abaya only manages to cover ${his} titanic pregnant belly with major extensions to the material.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya drapes itself over the sides of ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s abaya has been severely lengthened to ensure that ${his} massive pregnant belly is fully covered.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s abaya has been severely widened to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s abaya is filled by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya is filled by ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya is filled by ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya is filled by ${his} pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s abaya bulges with ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s abaya bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya bulges with ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s abaya bulges with ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s abaya bulges slightly from ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s abaya is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s abaya fully covers ${his} muscular abs.`); } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that frequently bounces along with ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests over ${his} hugely swollen belly.`); + break; + case "a klan robe": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic ${slave.inflationType}-swollen belly, it's now ironically much more comfortable to wear.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic implant-filled belly, it's now ironically much more comfortable to wear.`); + } else { + r.push(`${slave.slaveName}'s robe has been stretched so thin by ${his} monolithic pregnant belly, it's now ironically much more comfortable to wear.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s robes are stretching itself thin to cover ${his} titanic bulging pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s robes are starting to chafe the sensitive skin of ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s robes have been given numerous extensions in order to properly cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s robes are straining to cover ${his} giant pregnant belly.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s robes are greatly pushed out by ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s robes are filled out by ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes are filled out by ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes are filled out by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s robes are filled out by ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s robes are noticeably rounded out by ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly pushes out ${his} robes.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly slightly pushes out ${his} robes.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} implant-filled belly.`); + } else { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robes, thanks to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} robes.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s robes bulge with ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s robes show no sign of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s robes show no sign of ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s robes show no sign of ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s robes totally conceal ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s robes totally conceal ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s robes totally conceal ${his} abdominal muscles.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s bangles include multiple long, thin chains running through ${his} deep fat folds to ${his} navel.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s bangles include long, thin chains running through ${his} fat folds.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that frequently bounces along with ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + break; + case "a burqa": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic ${slave.inflationType}-swollen belly, it's now ironically much more comfortable to wear.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic implant-filled belly, it's now ironically much more comfortable to wear.`); + } else { + r.push(`${slave.slaveName}'s burqa has been stretched so thin by ${his} monolithic pregnant belly, it's now ironically much more comfortable to wear.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burqa is stretching itself thin to cover ${his} titanic bulging pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa is starting to chafe the sensitive skin of ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burqa has been given numerous extensions in order to properly cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burqa is straining to cover ${his} giant pregnant belly.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s burqa is greatly pushed out by ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly pushes out ${his} burqa.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly slightly pushes out ${his} burqa.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} implant-filled belly.`); + } else { + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s abaya bulges with ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burqa shows no sign of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burqa shows no sign of ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s burqa shows no sign of ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s burqa totally conceals ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s burqa totally conceals ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s burqa totally conceals ${his} abdominal muscles.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} growing belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s outfit has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else { + r.push(`The tunic ${slave.slaveName}'s outfit can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} outfit has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s outfit's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s outfit is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s outfit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s outfit is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s outfit is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s outfit is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s outfit bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s outfit bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s outfit gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s outfit gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s outfit is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s outfit is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s outfit barely shows the contours of ${his} abdominal muscles.`); + } + break; + case "a tube top and thong": + case "a bra": + case "a thong": + case "a tube top": + case "a striped bra": + case "striped underwear": + case "a skimpy loincloth": + case "a slutty klan robe": + case "a sports bra": + case "boyshorts": + case "cutoffs": + case "leather pants and pasties": + case "leather pants": + case "panties": + case "panties and pasties": + case "pasties": + case "sport shorts and a sports bra": + case "jeans": + case "leather pants and a tube top": + case "sport shorts": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic implant-filled belly.`); + } else { + r.push(`The tunic ${slave.slaveName}'s outfit completely bares ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} outfit completely bares ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} outfit completely bares ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} outfit completely bares ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant ${slave.inflationType}-filled belly is fully visible.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant implant-filled belly is fully visible.`); + } else { + r.push(`${slave.slaveName}'s outfit completely bares ${his} popped navel, ensuring that ${his} giant pregnant belly is fully visible.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s outfit is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s outfit completely bares ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s outfit completely bares ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s outfit completely bares ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s outfit completely bares ${his} abdominal muscles.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} chubby belly, just over ${his} forming rolls.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across the small swell of ${his} lower belly.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s bangles include a trio of long, thin chains that run across each set of ${his} ab muslces.`); - } - break; - case "a leotard": - if (slave.belly >= 1000000) { + break; + case "a one-piece swimsuit": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight leotard has exploded at the front, showing off ${his} monolithic, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s specially tailored leotard is stretched to its absolute limit trying to contain the swell of ${his} monolithic implant-filled belly, tightly clinging to what it can cover and prominently displaying ${his} popped navel. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); - } else { - r.push(`${slave.slaveName}'s specially tailored leotard is stretched to its absolute limit trying to contain the swell of ${his} monolithic pregnant belly. The material tightly clings to what it can cover, prominently displaying ${his} popped navel, the prominent bulges of the children filling ${his} womb, and each twitch they make. The bulging sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} overfilled middle would threaten to pull the spandex away from ${his} crotch had it not already hidden it itself.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s specially tailored leotard can barely contain the curve of ${his} titanic implant-filled belly, clearly displaying ${his} popped navel. The material tightly clings to the center of ${his} gravidity, leaving ${his} sides completely exposed.`); - } else { - r.push(`${slave.slaveName}'s specially tailored leotard can barely contain the curve of ${his} titanic pregnant belly, displaying every kick and squirm within it. The material tightly clings to ${his} popped navel and bulges of ${his} unborn children, but only covers the center of ${his} gravidity, leaving ${his} rather lumpy sides completely exposed.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} gigantic implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} gigantic pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and the numerous faint outlines pushing against ${his} skin while showing a lot of skin through the sides.`); - } - } else if (slave.bellyPreg >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} massive implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} massive pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } - } else if (slave.belly >= 150000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} giant implant-filled belly. The material tightly clings to ${his} popped navel and now only shows a little skin through the sides.`); - } else { - r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} giant pregnant belly, displaying every kick and movement within. The material tightly clings to ${his} popped navel while now only showing a little skin through the sides.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s leotard is stretched to its absolute limit trying to contain the swell of ${his} giant implant-filled belly, tightly clinging to what it can cover and prominently displaying ${his} popped navel. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); - } else { - r.push(`${slave.slaveName}'s leotard is stretched to its absolute limit trying to contain the swell of ${his} giant pregnant belly. The material tightly clings to what it can cover, prominently displaying ${his} popped navel and every kick and squirm beneath it. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight leotard can barely contain the curve of ${his} huge implant-filled belly, clearly displaying ${his} popped navel. The material tightly clings to the center of ${his} gravidity, leaving ${his} sides completely exposed.`); - } else { - r.push(`${slave.slaveName}'s tight leotard can barely contain the curve of ${his} huge pregnant belly, displaying every kick and squirm within it. The material tightly clings to ${his} popped navel, but only covers the center of ${his} gravidity, leaving ${his} sides completely exposed.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s tight leotard shows off every wiggle and jiggle within ${his} massively fat belly. The material tightly clings to ${his} soft mass, forming a deep cleft in what little it can actually cover, while the rest is allowed to freely spill out its sides.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge pregnant belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big pregnant belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight leotard pushes uncomfortably against ${his} hugely swollen belly, forcing a large amount of it out the sides of the garment.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } else { - r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in what little of its mass it actually holds.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} big fat belly, clearly displaying every fold and roll as it spills out its sides.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} pregnant belly. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight leotard hugs ${his} jiggling ${slave.inflationType}-filled belly, forcing it to be a little flatter than it would be.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} implant-filled belly. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); - } else { - r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} pregnant belly, displaying every kick and movement within. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll as it spills out its sides.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s tight leotard bulges with ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight leotard bulges with ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight leotard bulges with ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s tight leotard bulges with ${his} growing belly.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s swimsuit has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} swimsuit has been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} swimsuit has been widened to pick up the slack.`); + } else { + r.push(`The ${slave.slaveName}'s swimsuit can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} swimsuit has been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} swimsuit has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s swimsuit has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s swimsuit is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s swimsuit is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s swimsuit is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s swimsuit is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s swimsuit bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s swimsuit bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s swimsuit gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s swimsuit is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s swimsuit is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s swimsuit barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s tight leotard clings to ${his} chubby belly, clearly displaying every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s tight leotard clings to ${his} belly, clearly displaying the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s tight leotard hugs ${his} ripped abs, clearly displaying every powerful motion they make.`); - } - break; - case "a cybersuit": - if (slave.belly >= 1000000) { + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled taut over ${his} pressure flattened navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled taut over ${his} pressure flattened navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled taut over ${his} pressure flattened navel, yet bulging with the many squirming children filling ${him}.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} titanic implant-filled belly and draws the eye right to the small bump on its smooth surface, ${his} flattening navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} titanic pregnant belly, drawing the eye to ${his} flattening navel and the squirming bulges of the life filling ${him}.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} gigantic implant-filled belly and draws the eye right to the deminishing bump on its smooth surface, ${his} navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel and the squirming outlines of the life within ${him}.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} massive implant-filled belly and draws the eye right to the sole bump on its smooth surface, ${his} navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} massive pregnant belly and draws the eye right to each and every bump that appears on its smooth surface.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.belly >= 60000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s tight bodysuit shows off every wiggle and jiggle within ${his} massively fat belly.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} huge pregnant belly, displaying ${his} popped navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"}.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} hugely swollen belly, displaying ${his} bloated figure and every jiggle of ${his} full stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} big implant-filled belly, prominently displaying ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} big pregnant belly.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in its mass.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} big fat belly, clearly displaying every fold and roll.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} pregnant belly. The material tightly clings to ${his} popped navel.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} bloating and every motion ${his} contents make.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit shows off every movement within ${his} pregnant belly. The material tightly clings to ${his} flattening navel.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s tight bodysuit shows off ${his} small belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit shows off ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} chubby belly, clearly displaying every fold and roll.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} ripped abs, clearly displaying ${his} six pack.`); - } - break; - case "a tight Imperial bodysuit": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, distending obscenely into a gargantuan, imposing mass of stretched-out flesh under skintight suit.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen, implant-filled belly, distending obscenely into a gargantuan, enormously swollen mass of stretched-out flesh under skintight suit.`); - } else { - r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen pregnant belly, distending obscenely into a gargantuan, bulging mass of stretched-out flesh under skintight suit.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled smooth over ${his} pressure flattened navel.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled smooth over ${his} pressure flattened navel.`); - } else { - r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled smooth over ${his} pressure flattened navel and all the movement of ${his} many squirming children.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic ${slave.inflationType}-filled belly underneath the bodysuit, displaying ${his} popped navel through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly underneath the bodysuit, displaying ${his} popped navel through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic bulging pregnant belly, displaying ${his} popped navel and all the movement ${his} squirming babies make.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s sweater lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s sweater has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} sweater has been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} sweater has been widened to pick up the slack.`); + } else { + r.push(`The ${slave.slaveName}'s sweater can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} sweater has been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} sweater has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s sweater has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s sweater is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s sweater is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s sweater is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s sweater is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s sweater is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s sweater bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s sweater bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s sweater gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s sweater gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s sweater gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s sweater gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s sweater is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s sweater is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s sweater barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic pregnant belly through the skintight material.`); + break; + case "a police uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s uniform's shirt has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else { + r.push(`The shirt ${slave.slaveName}'s uniform can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} uniform's shirt has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s uniform's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s uniform is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The shirt of ${slave.slaveName}'s uniform is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The shirt of ${slave.slaveName}'s uniform is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s uniform is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s uniform is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s uniform bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s uniform bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s uniform gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s uniform gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s uniform gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s uniform gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s uniform is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s uniform is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s uniform barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} massive ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} massive implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massive pregnant belly, displaying ${his} popped navel and any movement ${his} babies make.`); + break; + case "a hanbok": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s hanbok has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} hanbok has been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} hanbok has been widened to pick up the slack.`); + } else { + r.push(`The ${slave.slaveName}'s hanbok can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} hanbok has been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} hanbok has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s hanbok has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s hanbok is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s hanbok is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hanbok is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s hanbok is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s hanbok bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s hanbok bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s hanbok is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s hanbok is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s hanbok barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant pregnant belly through the skintight material.`); + break; + case "a gothic lolita dress": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s dress lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} dress has been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} dress has been widened to pick up the slack.`); + } else { + r.push(`The ${slave.slaveName}'s dress can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} dress has been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} dress has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s dress has been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s dress is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s dress is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s dress is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s dress is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s dress is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s dress bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s dress bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s dress gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s dress gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s dress barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge pregnant belly through the skintight material.`); + break; + case "a tank-top": + case "a tank-top and panties": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName} tank-top lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} tank-top has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else { + r.push(`The ${slave.slaveName} tank-top can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} tank-top has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName} tank-top pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName} tank-top is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName} tank-top is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName} tank-top is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName} tank-top is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName} tank-top is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName} tank-top bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} tank-top bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} tank-top bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName} tank-top bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName} tank-top bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName} tank-top gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} tank-top gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} tank-top gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName} tank-top gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName} tank-top is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName} tank-top is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName} tank-top barely shows the contours of ${his} abdominal muscles.`); + } + break; + case "a button-up shirt and panties": + case "a button-up shirt": + case "a t-shirt": + case "a t-shirt and thong": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "sport shorts and a t-shirt": + case "a t-shirt and jeans": + case "a t-shirt and panties": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s shirt lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s shirt has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else { + r.push(`${slave.slaveName}'s shirt can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} shirt has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s shirt's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s shirt is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s shirt is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s shirt is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s shirt is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s shirt is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s shirt bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s shirt bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s shirt gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirt gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirt gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s shirt gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s shirt is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s shirt is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s shirt barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively fat belly, displaying every fold, roll and motion in it.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge pregnant belly through the skintight material.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge pregnant belly through the skintight material.`); + break; + case "a burkini": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies taut across ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burkini's tunic has been lengthened a great deal just to cover most of ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic ${slave.inflationType}-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else if (slave.bellyImplant > 0) { + r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic implant-filled belly, so ${his} pants have been widened to pick up the slack.`); + } else { + r.push(`The tunic ${slave.slaveName}'s burkini can't possibly cover the underside of ${his} gigantic pregnant belly, so ${his} pants have been widened to pick up the slack.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} burkini's tunic has been let out a great deal to cover ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant ${slave.inflationType}-filled belly is fully covered.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant implant-filled belly is fully covered.`); + } else { + r.push(`${slave.slaveName}'s burkini's pants have been extended to reach ${his} popped navel to ensure that ${his} giant pregnant belly is fully covered.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s burkini is straining to contain ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} huge implant-filled belly.`); + } else { + r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s burkini is filled out by ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s burkini is filled out by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s burkini gently bulges from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s burkini gently bulges from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s burkini gently bulges from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s burkini gently bulges from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s burkini is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s burkini is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s burkini barely shows the contours of ${his} abdominal muscles.`); } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big pregnant belly, leaving it looking much shorter than it really is.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); - } else { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + break; + case "a hijab and blouse": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} monolithic pregnant belly.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} titanic bulging pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName} takes care to ensure ${his} skirt does not slide down ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`Thanks to ${his} giant ${slave.inflationType}-swollen belly, ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`Thanks to ${his} giant implant-filled belly, ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); + } else { + r.push(`Thanks to ${his} giant pregnant belly ${slave.slaveName}'s skirt rests comfortably on top of ${his} popped navel.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly spills over the sides of ${his} skirt.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly obscures the top of ${his} skirt.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly nearly obscures the top of ${his} skirt.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s blouse and skirt bulge slightly from ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s blouse and skirt are slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s blouse and skirt fully cover ${his} muscular abs.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls through the skintight material.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big fat belly, clearly showing all ${his} folds and roll through the skintight material.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} jiggling ${slave.inflationType}-filled belly through the skintight material.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} implant-filled belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} pregnant belly through the skintight material.`); + break; + case "attractive lingerie": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} lacy g-string. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge massively.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge massively.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} lacy g-string. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} lacy g-string. ${His} children appreciate the space granted by ${his} exposed middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} lacy g-string and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} lacy g-string and takes full advantage of its freedom to bulge hugely.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} lacy g-string and bulges heavily from ${his} body.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly completely hides ${his} lacy g-string.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} lacy g-string.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly completely hides ${his} lacy g-string.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} lacy g-string.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} lacy g-string.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly hides ${his} lacy g-string.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly hides ${his} lacy g-string.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly hides ${his} lacy g-string.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hides ${his} lacy g-string.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hides ${his} lacy g-string.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} lacy g-string.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s lacy g-string tightly hugs the base of ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges above ${his} lacy g-string.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} lacy g-string.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges above ${his} lacy g-string.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges above ${his} lacy g-string.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly rests above ${his} lacy g-string, concealing the top of it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s lacy g-string rests just beneath the slight swell of ${his} lower belly making it completely obvious.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} fat belly, clearly showing every fold and roll through the skintight material.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} small pregnant belly through the skintight material.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} implant-rounded belly through the skintight material.`); - } else { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} growing belly through the skintight material.`); + break; + case "a succubus outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic pregnant belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together under the ever increasing pressure.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together from the sheer size of ${him}.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly sticks far out of ${his} corset, which is just barely laced above it and straining to hold together under the ever increasing pressure.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly sticks far out of ${his} corset, which is barely laced above it as best ${he} can manage.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly sticks far out of ${his} corset, which is laced above it as best ${he} can manage.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hangs out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hangs out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hangs out of ${his} corset, which is laced above and below it allowing it to hang free.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly sticks out of ${his} corset, which is laced above and below it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above and below it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly sticks out of ${his} corset, which is laced above and below it.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly sticks out of ${his} corset, which is laced above and below it.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly peeks out of ${his} corset, which is laced above and below it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly peeks out of ${his} corset, which is laced above and below it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly peeks out of ${his} corset, which is laced above and below it.`); + } else { + r.push(`${slave.slaveName}'s growing pregnant belly peeks out of ${his} corset, which is laced above and below it.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly peeks out of ${his} corset, which is laced above and below it to allow it to hang free.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s lower belly slightly bulges out from under ${his} corset, which is only laced above it to avoid discomfort.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} corset.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} chubby belly underneath the skintight material.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s bodysuit just barely clearly displays the swell of ${his} belly through the skintight material.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s bodysuit clearly displays every last line of ${his} powerful core, displaying a gorgeously outlined six-pack through the skintight material.`); - } - break; - case "a chattel habit": - if (slave.belly >= 1000000) { + break; + case "a slutty maid outfit": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through in the hopes of keeping material from slipping to the side of ${his} monolithic implant-filled belly. Since ${his} navel has begun to pull flat, however, the tension does that job instead.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through in the hopes of keeping material from slipping to the side of ${his} monolithic pregnant belly. Since ${his} navel has begun to pull flat, however, the tension and the many bulges of ${his} unborn brood handle that job instead.`); - } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} titanic implant-filled belly, though the tension does a good enough job on its own.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} titanic pregnant belly; it does not stop ${his} brood from trying, however.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} gigantic implant-filled belly, though the tension does a good enough job on its own.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} gigantic pregnant belly; it does not stop ${his} brood from trying, however.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} massive implant-filled belly, though the tension does a good enough job on its own.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} massive pregnant belly; it does not stop ${his} children from trying, however.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} giant implant-filled belly.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} giant pregnant belly; it does not stop ${his} children from trying, however.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} monolithic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} straining stomach.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} bulging stomach.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} squirming stomach.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive ${slave.inflationType}-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive implant-filled belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massive pregnant belly at all, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} giant pregnant belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that also fails to cover anything. It rests meekly on top of ${his} stomach, accomplishing little.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that also fails to cover anything. It rests meekly on top of ${his} stomach, accomplishing little.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that has also been completely outgrown. It rests meekly on top of ${his} stomach, accomplishing little.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} massively fat belly, but the outfit includes a thin white blouse that, when stretched, barely manages to conceal the upper part of ${his} gut, leaving the rest to jiggle freely and frequently escape the confines of its cloth prison.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge pregnant belly, but the outfit includes a thin white blouse that, when stretched, only manages to cover half of ${his} stomach. ${He} can do little to stop it from frequently riding up the rest of the way, however.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big pregnant belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} hugely swollen belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} swollen stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big implant-filled belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big pregnant belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} stomach. ${He} can do little to stop it from frequently riding up, however.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} hugely fat belly, but the outfit includes a thin white blouse that, when stretched, barely manages to contain ${his} gut. ${He} can do little to stop it from riding up the fleshy mass as ${he} moves.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} big fat belly, but the outfit includes a thin white blouse that, when stretched, manages to wrangle ${his} gut. It does little to stiffle the jiggle, however.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} pregnant belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} jiggling ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that tightly hugs ${his} bloated stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} implant-filled belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); + } else { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} pregnant belly, but the outfit includes a thin white blouse that tightly hugs ${his} stomach.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that manages to wrangle ${his} gut.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s maid dress is tight enough to show the slight curve to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s maid dress completely covers ${his} ripped abs, but is tight enough to give a hint of a six pack.`); } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge implant-filled belly.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); + break; + case "a nice maid outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} monolithic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel and bulging brood, nor how large ${he} has become. ${His} apron can't handle its width and barely covers the middle of ${his} swell.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} titanic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel and bulging brood, nor how large ${he} has become. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} gigantic pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown. ${His} apron can't handle its width and only covers the middle of ${his} swell.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} massive pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant ${slave.inflationType}-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant implant-filled belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} is.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative, even though it has been specially tailored to handle a slave as gravid as ${him}. It hugs ${his} giant pregnant belly thoroughly, though it does nothing to hide ${his} popped navel, poking through the front, and draws attention to how large ${he} has grown.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant seam splitting ${slave.inflationType}-filled belly, though it cannot hide ${his} popped navel, poking through the front.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant seam splitting implant-filled belly, though it cannot hide ${his} popped navel, poking through the front.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It barely covers ${his} giant pregnant belly, though it cannot hide ${his} popped navel, poking through the front. If ${he} grows any larger, ${he} will risk tearing ${his} outfit at the seams.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s maid dress is almost conservative, it barely contains ${his} massively fat belly. Its seams strain against ${his} wobbling mass.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge ${slave.inflationType}-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge implant-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} hugely swollen belly completely, but does nothing to hide its size and shape.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big implant-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} big pregnant belly completely, though it cannot hide ${his} popped navel, poking through the front.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} hugely fat belly completely, but does nothing to hide how big and jiggly it is.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} big fat belly completely, but does nothing to hide how big and jiggly it is.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} pregnant belly completely, but does nothing to hide just how large it is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} jiggling ${slave.inflationType}-filled belly completely, but does nothing to hide its size and motion.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} implant-filled belly completely, but does nothing to hide just how large it is.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} pregnant belly completely, but does nothing to hide just how large it has gotten.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} fat belly completely, but does nothing to hide how big it is.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} small belly completely.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} ${slave.inflationType}-swollen belly completely.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} implant-rounded belly completely.`); + } else { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} growing belly completely.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} chubby belly completely.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} growing belly completely.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s maid dress is almost conservative; it covers ${his} ripped abs completely.`); } - } else if (slave.weight > 190) { - r.push(`The strip of cloth running down ${his} front has sunken so deeply into ${his} massively fat belly that is has been swallowed completely. The only hint of its presence is the deep trench of flab spilling around it.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge implant-filled belly.`); - } else { - r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); + break; + case "a fallen nuns habit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} monolithic pregnant belly. ${His} children greatly appreciate the freedom, even though its still quite cramped.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic pregnant belly. ${His} children appreciate the freedom.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} giant pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} massively fat belly to hang free.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} hugely fat belly to hang free.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open allowing ${his} big fat belly to hang free.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s latex habit's corset is barely holding together over ${his} fat belly, causing flab to spill out from every opening.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s latex habit's corset compresses ${his} chubby belly forcing pudge to spill out from under it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s latex habit's corset uncomfortably compresses the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s latex habit's corset tightly hugs ${his} ripped abs.`); } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} hugely swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big implant-filled belly.`); - } else { - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big pregnant belly.`); + break; + case "a penitent nuns habit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly stretches ${his} habit to the limit and looks absolutely blasphemous. The coarse cloth aggravates ${his} straining, very sensitive skin; doubly so, as ${his} distress causes ${his} babies to squirm as much as they can in ${his} cramped womb.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly stretches ${his} habit and looks absolutely blasphemous. The coarse cloth aggravates ${his} overly taut, very sensitive skin; doubly so, as ${his} distress causes ${his} babies to begin squirming.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin; doubly so, as ${his} distress causes ${his} babies to begin squirming.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant implant-filled belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant implant-filled belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); + } else { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit bearing such a giant pregnant belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly completely fills ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating and entirely relentless.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge jiggling ${slave.inflationType}-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a huge pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a hugely swollen belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with such a big pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly fills ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly fills out ${his} habit. Between the extra skin and ${his} excessive jiggling, the coarse cloth is extra aggravating.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a jiggling ${slave.inflationType}-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } else { + r.push(`${slave.slaveName} looks absolutely blasphemous in a habit with a pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s habit gently bulges from ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s habit gently bulges from ${his} ${slave.inflationType}-swollen belly. The coarse cloth aggravates ${his} sensitive skin.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s habit gently bulges from ${his} implant-rounded belly. The coarse cloth aggravates ${his} sensitive skin.`); + } else { + r.push(`${slave.slaveName}'s habit gently bulges from ${his} growing belly. The coarse cloth aggravates ${his} sensitive skin.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s habit gently bulges from ${his} chubby belly. The coarse cloth takes advantage of the extra surface area.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s habit may hide the slight swell to ${his} habit, but the coarse cloth keeps ${him} fully aware of it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs rub uncomfortably against ${his} habit.`); } - } else if (slave.weight > 160) { - r.push(`The strip of cloth running down ${his} front sinks deeply into ${his} hugely fat belly.`); - } else if (slave.weight > 130) { - r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} big fat belly.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} jiggling ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} implant-filled belly.`); - } else { - r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} pregnant belly.`); + break; + case "a Santa dress": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic ${slave.inflationType}-filled belly, let alone ${his} whole body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic implant-filled belly, let alone ${his} whole body.`); + } else { + r.push(`${slave.slaveName}'s dress's belt can no longer cross all of ${his} monolithic pregnant belly, let alone ${his} whole body.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic pregnant belly.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic implant-filled belly.`); + } else { + r.push(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic pregnant belly.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive implant-filled belly.`); + } else { + r.push(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive pregnant belly.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant pregnant belly.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`The bottom of ${slave.slaveName}'s huge ${slave.inflationType}-filled belly is stretching ${his} dress's belt to its breaking point.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s huge implant-filled belly is stretching ${his} dress's belt to its breaking point.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s huge pregnant belly is stretching ${his} dress's belt to its breaking point.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly emphasizes the design of and strains ${his} festive dress.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} hugely ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly accentuates the design of and badly stretches out ${his} festive dress.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly stretches out the leather belt around ${his} waist.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} implant-filled belly.`); + } else { + r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} implant-rounded belly.`); + } else { + r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s dress is slightly rounded by ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`The fabric of ${slave.slaveName}'s dress is thick enough to cover the contours of ${his} abdominal muscles.`); } - } else if (slave.weight > 95) { - r.push(`The strip of cloth running down ${his} front gently sinks into ${his} fat belly.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} small pregnant belly.`); - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} small pregnant belly.`); - } else if (isBellyFluidLargest) { - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} ${slave.inflationType}-swollen belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} implant-rounded belly.`); - } else { - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} growing belly.`); + break; + case "overalls": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); + } else { + r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen, implant-filled belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); + } else { + r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen, implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s megalithic breasts keep ${his} overalls away from ${his} unfathomable, hyper-swollen pregnant belly but do little to hide its imposing mass as it lewdly distends from behind the straining garment.`); + } else { + r.push(`${slave.slaveName}'s overalls can only cover a relatively small strip in the center of ${his} unfathomable, hyper-swollen pregnant belly.`); + } + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic implant-filled belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s immense breasts push out ${his} overalls away from ${his} monolithic pregnant belly but do little to hide its imposing mass as it lewdly distends from behind the overstretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic pregnant belly.`); + } + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic ${slave.inflationType}-filled belly but do little to hide its size as it spills out from behind the stretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic implant-filled belly but do little to hide its size as it spills out from behind the stretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gargantuan breasts push out ${his} overalls away from ${his} titanic pregnant belly but do little to hide its size and shape as it spills out from behind the stretched garment.`); + } else { + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); + } + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic ${slave.inflationType}-filled belly but do little to hide its size as it bulges out from behind the taut garment.`); + } else { + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic implant-filled belly but do little to hide its size as it bulges out from behind the taut garment.`); + } else { + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s tremendous breasts push out ${his} overalls away from ${his} gigantic pregnant belly but do little to hide its size as it bulges out from behind the taut garment.`); + } else { + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic pregnant belly .`); + } + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive ${slave.inflationType}-filled belly but do little to hide its size.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive ${slave.inflationType}-filled belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the hefty globe more room.`); + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive implant-filled belly but do little to hide its size.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s monolithic breasts push out ${his} overalls away from ${his} massive pregnant belly but do little to hide its size.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive pregnant belly.`); + } + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant ${slave.inflationType}-filled belly is left slightly uncovered.`); + } else { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains the fabric of ${his} overalls.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant implant-filled belly is left slightly uncovered.`); + } else { + r.push(`${slave.slaveName}'s giant implant-filled belly strains the fabric of ${his} overalls.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s titanic breasts push out ${his} overalls so far that ${his} giant pregnant belly is left slightly uncovered.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly strains the fabric of ${his} overalls.`); + } + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant ${slave.inflationType}-filled belly is left partially uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant implant-filled belly is left partially uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s colossal breasts push out ${his} overalls so far that ${his} giant pregnant belly is left partially uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant pregnant belly.`); + } + r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); + } + } else if (slave.belly >= 45000) { + if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge ${slave.inflationType}-filled belly is left halfway uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge ${slave.inflationType}-filled pregnant belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left halfway uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge pregnant belly is left halfway uncovered.`); + } else { + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge pregnant belly.`); + } + } + } else if (slave.weight > 190) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} massively fat belly is left mostly uncovered.`); + } else { + r.push(`${slave.slaveName}'s massively fat belly spills out over the sides of ${his} overalls.`); + } + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge pregnant belly is left mostly uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge ${slave.inflationType}-filled belly is left mostly uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left mostly uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge pregnant belly is left mostly uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge pregnant belly.`); + } + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big pregnant belly is left almost entirely uncovered.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly stretches out the fabric of ${his} overalls.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`); + } else { + r.push(`${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big implant-filled belly is left almost entirely uncovered.`); + } else { + r.push(`${slave.slaveName}'s big implant-filled belly stretches out the fabric of ${his} overalls.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} big pregnant belly is left almost entirely uncovered.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly stretches out the fabric of ${his} overalls.`); + } + } + } else if (slave.weight > 160) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`); + } + } else if (slave.weight > 130) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} big fat belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s big fat belly spills out from behind ${his} overalls.`); + } + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} pregnant belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} jiggling ${slave.inflationType}-filled belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} jiggling ${slave.inflationType}-filled belly.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} implant-filled belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} implant-filled belly.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} pregnant belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); + } + } + } else if (slave.weight > 95) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`); + } + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} small pregnant belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s small pregnant belly rounds out the front of ${his} overalls.`); + } + } else if (isBellyFluidLargest) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} ${slave.inflationType}-swollen belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rounds out the front of ${his} overalls.`); + } + } else if (slave.bellyImplant > 0) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} implant-rounded belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s implant-rounded belly rounds out the front of ${his} overalls.`); + } + } else { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} growing belly is left uncovered.`); + } else { + r.push(`${slave.slaveName}'s growing belly rounds out the front of ${his} overalls.`); + } + } + } else if (slave.weight > 30) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} chubby belly is left uncovered.`); + } else { + r.push(`The sides of ${slave.slaveName}'s chubby belly peek out from behind ${his} overalls.`); + } + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} rounded belly is left uncovered.`); + } else { + r.push(`There is a slight curve to ${slave.slaveName}'s from ${his} belly.`); + } + } else if (slave.muscles > 30) { + if (slave.boobs > (slave.belly + 250)) { + r.push(`${slave.slaveName}'s big breasts push out ${his} overalls so far that ${his} ripped abs are left uncovered.`); + } else { + r.push(`The sides of ${slave.slaveName}'s ripped abs peek out from behind ${his} overalls.`); + } } - } else if (slave.weight > 30) { - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} chubby belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`The strip of cloth running down ${his} front demurely rests over the slight swell below ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`The strip of cloth running down ${his} front prominently displays ${his} ripped abs.`); - } - break; - case "a bunny outfit": // WIP belly overhaul point - if (slave.belly >= 1000000) { + break; + case "a string bikini": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} monolithic, ${slave.inflationType}-filled belly, leaving it hanging out the hole it made.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a ridiculously swollen ${girl} and comes with a gap in the front for ${his} monolithic implant-filled belly to expand out of.`); - } else { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a ridiculously gravig ${girl} and comes with a gap in the front for ${his} monolithic pregnant belly to uncontrollably billow out of.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a absurdly swollen ${girl} and comes with a gap in the front for ${his} titanic implant-filled belly to bulge through.`); - } else { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a absurdly gravid ${girl} and comes with a gap in the front for ${his} titanic pregnant belly to spill out of.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a massively swollen ${girl} and comes with a gap in the front for ${his} gigantic implant-filled belly to bulge through.`); - } else { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a massively gravid ${girl} and comes with a gap in the front for ${his} gigantic pregnant belly to bulge through.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a hugely swollen ${girl} and comes with a gap in the front for ${his} massive implant-filled belly to bulge through.`); - } else { - r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a hugely gravid ${girl} and comes with a gap in the front for ${his} massive pregnant belly to bulge through.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is specially designed with a gap in the front for ${his} giant implant-filled belly to bulge through.`); - } else { - r.push(`${slave.slaveName}'s teddy is specially designed with a gap in the front for ${his} giant pregnant belly to bulge through.`); - } - } else if (slave.belly >= 30000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is carefully fitted to contain ${his} huge implant-filled belly, but only emphasizes just how large ${he} has gotten.`); - } else { - r.push(`${slave.slaveName}'s teddy is carefully fitted to contain ${his} huge pregnant belly, but only emphasizes just how large and ripe ${he} is.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s tailored teddy is strained to capacity by ${his} massively fat belly. ${His} flab juts out around its edges while drawing it focuses on drawing attention to ${his} folds, rolls and assorted jiggling.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge pregnant belly. ${His} popped navel prominently pokes through the taut material.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through the taut material.`); - } else { - r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge pregnant belly. ${His} popped navel prominently pokes through the taut material.`); - } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s teddy is filled out by ${his} big pregnant belly. ${His} popped navel prominently pokes through the material.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s teddy is filled with ${his} hugely swollen belly, forcing it to bulge prominently.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is filled out by ${his} big implant-filled belly. ${His} popped navel prominently pokes through the material.`); - } else { - r.push(`${slave.slaveName}'s teddy is filled out by ${his} big pregnant belly. ${His} popped navel prominently pokes through the material.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s tailored teddy is stretched out by ${his} hugely fat belly. It barely contains the mass while drawing attention to ${his} folds, rolls and subtle motions.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName} has recently begun wearing a teddy that can accommodate ${his} big fat belly. It completely contains the mass while drawing attention to ${his} folds and rolls.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s teddy is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the material.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s teddy is uncomfortably tight around ${his} jiggling ${slave.inflationType}-filled belly, forcing the material to bulge around the sloshing bulge.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy is filled by ${his} implant-filled belly. ${His} popped navel prominently pokes through the material.`); - } else { - r.push(`${slave.slaveName}'s teddy is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the material.`); - } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s teddy is stretched out by ${his} fat belly. ${His} flab juts out around its edges and it does nothing to hide ${his} folds and rolls.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s teddy bulges with ${his} small pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s teddy bulges with ${his} ${slave.inflationType}-bloated belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s teddy bulges with ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s teddy bulges with ${his} growing belly.`); - } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s teddy is stretched by ${his} chubby belly. It does nothing to hide ${his} folds and rolls.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s teddy bulges over ${his} lower belly, making ${him} look a little bloated.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s teddy is carefully fitted to highlight ${his} six pack and fully display ${his} ripped abs.`); - } - break; - case "attractive lingerie for a pregnant woman": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge tremendously in every direction. ${His} silken vest sensually frames what little it can of ${his} boundless middle.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulging mass.`); - } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge tremendously. ${His} silken vest sensually frames what little it can of ${his} boundless middle.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulge-coated mass. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); - } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge massively. ${His} silken vest sensually frames what little it can of ${his} immense middle.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulging mass. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); - } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silken panties and takes full advantage of its freedom to hang heavily. ${His} silken vest sensually frames what little it can of ${his} immense middle.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can. ${His} children appreciate the space granted by ${his} exposed middle.`); - } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} silken panties and takes full advantage of its freedom to hang heavily. ${His} silken vest sensually frames what it can of ${his} immense middle.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silken panties and takes full advantage of its freedom to bulge hugely. ${His} silken vest sensually frames what it can of ${his} immense middle.`); - } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} silken panties and bulges heavily from ${his} body. ${His} silken vest sensually frames ${his} ponderous middle.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} silken panties and bulges heavily from ${his} body. ${His} silken vest sensually frames ${his} ponderous middle.`); - } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly completely hides ${his} silken panties. ${His} silken vest struggles to sensually frame ${his} immense, jiggly gut while dwarfed by it.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} ponderous stomach.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} ponderous stomach.`); - } - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heaving stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); - } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy, constantly jiggling gut.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} hefty, jiggling gut.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so monolithic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is so monolithic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is so monolithic that most of ${his} string bikini is completely eclipsed by the straining mass.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so titanic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is so titanic that most of ${his} string bikini is completely eclipsed by its immense bulk.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is so titanic that most of ${his} string bikini is completely eclipsed by the life stuffed mass.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so gigantic that most of ${his} string bikini is completely eclipsed by its bulk.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is so gigantic that most of ${his} string bikini is completely eclipsed by its bulk.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is so gigantic that most of ${his} string bikini is completely eclipsed by the life filled mass.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-filled belly is so massive that most of ${his} string bikini is completely eclipsed by its bulk.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is so massive that most of ${his} string bikini is completely eclipsed by its bulk.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is so massive that most of ${his} string bikini is completely eclipsed by the life swollen mass.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly forces ${his} string bikini to either side and hangs low enough to hide ${his} crotch.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hides most ${his} string bikini. What can be seen of it risks being swallowed up by ${his} folds.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly parts ${his} string bikini to either side.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly parts ${his} string bikini to either side.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} string bikini to either side.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly parts ${his} string bikini to either side.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly parts ${his} string bikini to either side.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly parts ${his} string bikini to either side.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly parts ${his} string bikini to either side.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly parts ${his} string bikini to either side.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly parts ${his} string bikini to either side and threatens to hide ${his} bikini bottom.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly parts ${his} string bikini to either side.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly parts ${his} string bikini to either side.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly parts ${his} string bikini to either side.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly parts ${his} string bikini to either side.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly parts ${his} string bikini to either side.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly juts out between the strings of ${his} bikini.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly juts out between the strings of ${his} bikini.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly juts out between the strings of ${his} bikini.`); + } else { + r.push(`${slave.slaveName}'s growing belly juts out between the strings of ${his} bikini.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly bulges between the strings of ${his} bikini.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s string bikini parts just barely around the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s string bikini clings to ${his} ripped abs.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} motherly figure.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} rounded middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swollen figure.`); - } else { - r.push(`${slave.slaveName}'s growing belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swelling form.`); + break; + case "a scalemail bikini": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge tremendously.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge tremendously.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} scalemail bikini. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing. They frequently squirm from the chafing, only to cause ${him} rub against the scales more.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge massively.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its lack of restriction to bulge massively.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} scalemail bikini. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines, save for when they squirm angrily over the chafing.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} scalemail bikini. ${His} children appreciate the space granted by ${his} exposed middle, but could do without the occasional chafing.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} scalemail bikini and takes full advantage of its freedom to bulge hugely.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} scalemail bikini and bulges heavily from ${his} body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} scalemail bikini and bulges heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} lacy scalemail bikini and bulges heavily from ${his} body.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} scalemail bikini to be fastened beneath it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled forces ${his} scalemail bikini to be fastened beneath it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled forces ${his} scalemail bikini to be fastened beneath it.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} scalemail bikini to be fastened beneath it.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} scalemail bikini.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} scalemail bikini down and rests heavily above it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly greatly pushes out ${his} scalemail bikini.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} scalemail bikini.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} scalemail bikini.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly forces ${his} scalemail bikini down and juts out above it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly pushes out ${his} scalemail bikini.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} scalemail bikini.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly hides ${his} scalemail bikini, but the constant chafing reminds ${him} it's there.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges underneath ${his} bikini.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges underneath ${his} tight bikini.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges underneath ${his} bikini.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges underneath ${his} bikini.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly rests above ${his} bikini, concealing the top of it and scraping against the scalemail.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s scalemail bikini scrapes uncomfortably against ${his} lower belly and draws attention to the slight swell to it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see and perfectly suit ${his} scalemail bikini.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly rests above ${his} silken panties, barely hanging over the top of them. ${His} silken vest sensually frames ${his} soft stomach.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s silken panties rest just beneath the slight swell of ${his} lower belly, but ${his} matching vest draws attention away from it.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are sensually framed by ${his} sliken vest.`); - } - break; - case "a maternity dress": - if (slave.belly >= 1000000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} squirming belly.`); + break; + case "striped panties": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge tremendously.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge tremendously.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} cute panties. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing. They frequently squirm from the chafing, only to cause ${him} rub against the fabric more.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge massively.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} cute panties and takes full advantage of its lack of restriction to bulge massively.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} cute panties. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines, save for when they squirm angrily against the fabric.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} cute panties. ${His} children appreciate the space granted by ${his} exposed middle, but could do without the occasional chafing.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} cute panties and takes full advantage of its freedom to hang heavily.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} cute panties and takes full advantage of its freedom to bulge hugely.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} cute panties and bulges heavily from ${his} body.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hides ${his} cute panties, but the constant chafing reminds ${him} it's there.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} cute panties to stretch beneath it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly forces ${his} cute panties to stretch beneath it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly forces ${his} cute panties to stretch beneath it.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly forces ${his} cute panties to stretch beneath it.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} cute panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} cute panties down and rests heavily above it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly greatly pushes out ${his} cute panties.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly greatly pushes out ${his} cute panties.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} cute panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly forces ${his} cute panties down and juts out above it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly pushes out ${his} cute panties.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly pushes out ${his} cute panties.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly hides ${his} cute panties, but the constant chafing of the fabric reminds ${him} it's there.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges underneath ${his} panties.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges underneath ${his} panties.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges underneath ${his} panties.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges underneath ${his} panties.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly rests above ${his} panties, concealing the top of it and scraping against the fabric.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s cute panties rub uncomfortably against ${his} lower belly and draws attention to the slight swell to it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see and perfectly suit ${his} cute panties.`); } - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} once loose dress to its limit. It is specially tailored to be modest yet draw attention to sizeable middles, but ${he} has managed to render it inadequate; ${he} can't actually manage to pull it all the way over ${his} sheer mass. The dress often ends up bunched atop ${his} belly unless someone is kind enough to lend a pair of hands to tug it down the rest of the way.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly stretches ${his} once loose dress to its limit. It is specially tailored to be modest yet flatter pregnancies, but ${he} has managed to render it inadequate; ${he} can't actually manage to pull it all the way over ${his} sheer gravidity. The dress often ends up bunched atop ${his} belly unless someone is kind enough to lend a pair of hands to tug it down the rest of the way.`); + break; + case "clubslut netting": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly is so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly is so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly has grown so vast that it requires a special clubslut netting with an expanse of extra mesh designed to accommodate a ${girl} of ${his} girth. The excessive garment tightly hugs the curve of ${his} middle and every bump and gully that ${his} unborn children cause along its surface.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit trying to contain ${his} bulging middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit trying to contain ${his} bulging middle.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is stretched to its limit by ${his} excessive gravidity and the bulges of ${his} unborn slipping through the mesh.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} bulging middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} bulging middle.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment is completely filled out by ${his} excessive gravidity.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} bulging middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} bulging middle.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly has grown so large that it requires a special clubslut netting with an expanse of extra mesh attached to its front. The extended garment stretches around ${his} excessive gravidity.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to the rounded curve of ${his} middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to the rounded curve of ${his} middle.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly has grown so large that it requires ${his} clubslut netting to have an expanse of extra mesh added to its front. The newly extended garment clings to ${his} excessive gravidity.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant ${slave.inflationType}-filled belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant implant-filled belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); + } else { + r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} giant pregnant belly. It is so tight around ${his} middle that flesh bulges through the mesh.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} massively fat belly's desire for more room. Flab juts massively through the mesh and entire folds are hugged tightly by the straining material.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s clubslut netting clings tightly to the curve of ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s clubslut netting is greatly stretched out by ${his} hugely fat belly, forcing flab to poke through the mesh in a desperate search for more room.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} big fat belly, forcing flab to poke through the mesh.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s clubslut netting is stretched by ${his} fat belly causing flab to poke through the mesh.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} chubby belly, gently forcing pudge through the mesh.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} figure leaving the slight swell to ${his} lower belly quite noticeable.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs peek through the gaps in ${his} clubslut netting.`); } - } else if (slave.belly >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} once loose dress into a more form fitting attire. It is specially tailored to be modest yet draw attention to ${his} abnormaly large middle.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly stretches ${his} once loose dress into a more form fitting attire, showing off ${his} protruding navel and the many bulges of life filling ${him}. Even at ${his} abnormal size, its special tailoring allows it to retain its modesty.`); + break; + case "a cheerleader outfit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly bare. ${He}'s so expansive that ${he} alone is needed for the base of the pyramid.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen, implant-filled belly bare. ${He}'s so expansive that ${he} alone is needed for the base of the pyramid.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} unfathomable, hyper-swollen pregnant belly bare, clearly displaying that this cheerleader is not only ready to burst with school spirit, but preparing to bring a class of ${his} own into the world.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic ${slave.inflationType}-filled belly bare. ${He}'s so large, it's expected that ${he}'d make a fantastic base for the pyramid all on ${his} own.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic implant-filled belly bare. ${He}'s so large, it's expected that ${he}'d make a fantastic base for the pyramid all on ${his} own.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} monolithic pregnant belly bare, clearly displaying that this cheerleader is ready to burst with school spirit.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic ${slave.inflationType}-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic implant-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} titanic pregnant belly bare, clearly displaying that this cheerleader is thoroughly filled with school spirit.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic ${slave.inflationType}-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic implant-filled belly bare leaving spectators in awe at just what ${his} cheers must look like.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} gigantic pregnant belly bare, clearly displaying that this cheerleader has been cheering on the entirety of both teams.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive ${slave.inflationType}-filled belly bare leaving spectators to wonder just how such a gravid ${girl} has managed to stay on the squad.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive implant-filled belly bare leaving spectators to wonder just how such a gravid ${girl} has managed to stay on the squad.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top leaves ${his} massive pregnant belly bare, clearly displaying that this cheerleader has been bred by the entire team.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant ${slave.inflationType}-filled belly, leaving spectators to wonder just how such a gravid ${girl} is supposed to perform.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant implant-filled belly, leaving spectators to wonder just how such a gravid ${girl} is supposed to perform.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant pregnant belly, leaving a rumor to spread that ${he}'s making a team of ${his} own.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant ${slave.inflationType}-filled belly, leaving spectators to pity the girls lower on the pyramid.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant implant-filled belly, leaving spectators to pity the girls lower on the pyramid.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} giant pregnant belly, leaving spectators to pity the girls that have to lift ${his} gravid bulk.`); + } + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge ${slave.inflationType}-filled belly, leaving spectators to question how ${he} can even perform.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge implant-filled belly, leaving spectators to question how ${he} can even perform.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top can't be pulled over ${his} huge pregnant belly, leaving it obvious how ${he} is still on the cheer squad.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} massively fat belly, completely incapable of handling the jiggly, soft mass and clearly displaying that this cheerleader has ${himself} go.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge pregnant belly, barely covering the top of it while leaving it obvious how such a slut is still on the squad.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge ${slave.inflationType}-filled belly, barely covering the top of it while leaving spectators to assume ${he}'s a slut.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge implant-filled belly, barely covering the top of it while leaving spectators to assume ${he}'s a slut.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge pregnant belly, barely covering the top of it while leaving it obvious how such a slut is still on the squad.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big pregnant belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} hugely swollen belly, covering only the top of it while leaving the rest on display to bring wonder to how many loads ${he} took last night.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big implant-filled belly, covering only the top of it while leaving the rest on display to make this cheerleader look like a giant slut.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} big pregnant belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s cheerleader top covers barely covers any of ${his} hugely fat belly. The rest is free to hang and jiggle with every motion, obscuring ${his} skirt and letting everyone know how badly this cheerleader needs to diet.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s cheerleader top covers the top half of ${his} big fat belly. However, the bottom half is free to hang and jiggle with every motion, obscuring ${his} skirt and letting everyone know how badly this cheerleader needs to diet.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} pregnant belly, the bottom of which peeks out showing how slutty this cheerleader is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} jiggling ${slave.inflationType}-filled belly, the bottom of which peeks to make this cheerleader look like a slut.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} implant-filled belly, the bottom of which peeks out to make this cheerleader look like a slut.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} pregnant belly, the bottom of which peeks out showing how slutty this cheerleader is.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} fat belly. However, the bottom of it peeks out, obscuring ${his} skirt and a letting everyone know how badly this cheerleader needs to diet.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} small pregnant belly displaying how slutty this cheerleader is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} ${slave.inflationType}-swollen belly making ${him} look slutty.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} implant-rounded belly making ${him} look slutty.`); + } else { + r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} growing belly displaying how slutty this cheerleader is.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s cheerleader top frequently rides up ${his} chubby belly, letting it hang loose and hide the waist of ${his} skirt.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s cheerleader top is tight enough to draw attention to the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs can be seen through ${his} cheerleader top.`); } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} abnormaly large middle.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly completely fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} abnormal pregnancy.`); + break; + case "cutoffs and a t-shirt": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic, ${slave.inflationType}-filled belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic, implant-filled belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); + } else { + r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} monolithic pregnant belly. The button for ${his} cutoffs have exploded, though the size of ${his} belly makes it impossible to tell.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to massively jut out from ${his} body.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly takes advantage ${his} exposed midriff and unfastened jeans to hang heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly takes advantage ${his} exposed midriff and unfastened jeans to hang heavily from ${his} body.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly dominates ${his} exposed midriff and thwarts any efforts to zip up ${his} fly.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly dominates ${his} exposed midriff and thwarts any efforts to zip up ${his} fly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly is left to jiggle freely and spill from ${his} unfastened jeans.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} huge pregnancy.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans prominently display ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} ripe pregnancy.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} big pregnancy.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} advanced pregnancy.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly is left to jiggle freely and hang over ${his} unfastened jeans.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly is left to jiggle freely and spill from ${his} unfastened jeans.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} pregnancy.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s exposed midriff and unfastened jeans fully display ${his} pregnancy.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly is left to hang free and cover ${his} jeans.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} small pregnant belly room.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} ${slave.inflationType}-swollen belly room.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} implant-rounded belly room.`); + } else { + r.push(`${slave.slaveName}'s jeans are left unfastened to give ${his} growing belly room.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is left free to hang over the waist of ${his} jeans.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s jeans are left unfastened and display a slight swell to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s exposed midriff fully exposes ${his} ripped abs.`); } - } else if (slave.belly >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} spectacular middle.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} spectacular pregnancy.`); + break; + case "a slutty outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly adds tremendously to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly makes it abundantly clear that ${he} is a boundless slut.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly really adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly makes it abundantly clear that ${he} is a massive slut.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly really adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly makes it abundantly clear that this slut puts out.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly really adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly makes it abundantly clear that this slut puts out.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly makes it clear that this slut puts out.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName} lets ${his} massively fat belly hang free to jiggle with every subtle motion, leaving ${him} looking like a massive slut.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly adds to ${his} slutty appearance.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s huge pregnancy adds to ${his} slutty appearance.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly adds to ${his} slutty appearance.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly adds to ${his} slutty appearance.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly adds to ${his} slutty appearance.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName} lets ${his} hugely fat belly hang free to jiggle as ${he} moves, leaving ${him} looking like a massive slut.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName} lets ${his} big fat belly hang free to jiggle as ${he} moves, leaving ${him} looking particularly slutty.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnancy adds to ${his} slutty appearance.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly adds to ${his} slutty appearance.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s pregnancy adds to ${his} slutty appearance.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly adds to ${his} slutty appearance.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly adds to ${his} slutty appearance.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly adds to ${his} slutty appearance.`); + } else { + r.push(`${slave.slaveName}'s growing pregnancy adds to ${his} slutty appearance.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is allowed to openly jiggle, making ${him} look particularly slutty.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s slutty outfit highlights the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s slutty outfit shows off ${his} slutty abs.`); } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} full pregnancy.`); + break; + case "a bimbo outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo will happily fuck until ${he} explodes.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo considers sex far above anything else.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly eclipses ${his} miniskirt and thong and leaves it abundantly clear that this bimbo doesn't understand limits.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly eclipses ${his} miniskirt and thong from the front and leaves it abundantly clear that this bimbo doesn't understand contraception.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly forces ${his} thong strings to tightly hug its curvature as it hangs low enough to obscure ${his} miniskirt completely.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly forces ${his} thong strings to tightly hug its curvature as it hangs low enough to obscure ${his} miniskirt completely.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s thong strings and miniskirt are buried under ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge implant-filled belly and ${his} thong strings forced to caress its curves.`); + } else { + r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge pregnant belly and ${his} thong strings forced to caress its curves.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} miniskirt out of the way as it hangs ponderously from ${his} midriff.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s thong strings are buried in ${his} hugely fat belly as it hangs lewdly over ${his} miniskirt.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s thong strings dig deep into ${his} big fat belly as it lewdly spills over ${his} miniskirt.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s miniskirt digs into ${his} jiggling ${slave.inflationType}-filled belly as the top half spills over its egde.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly drapes over ${his} miniskirt.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s miniskirt pushes into ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly bulges between the strings of ${his} thong and sticks out over ${his} miniskirt.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s miniskirt is obviously bulged out by the slight swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s thong strings perfectly frame ${his} abs.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly stretches ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on massive, jiggly guts all the same.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} advanced pregnancy.`); + break; + case "a courtesan dress": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} monolithic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thinning cloth beneath.`); + } else { + r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} monolithic pregnant belly, but the sheer size of ${his} overstuffed womb forces the ribs wide, giving the many writhing bulges coating ${his} stomach room to spill out against the thinning material of ${his} dress.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} titanic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); + } else { + r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} titanic pregnant belly, but the sheer size of ${his} overfilled womb forces the ribs wide, giving the bulges of ${his} children room to spill out against the thin material of ${his} dress.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} gigantic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); + } else { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} gigantic pregnant belly, but the sheer size of ${his} filled womb forces the ribs wide, exposing the thin cloth and uneven skin beneath.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massive implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`); + } else { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massive pregnant belly, but the sheer size of ${his} fecund orb forces the ribs wide, exposing the thin cloth beneath.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} giant pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} massively fat belly, though the ribs still create deep ravines of succulent flesh.`); + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly strains the ribs of ${his} corset.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly strains the ribs of ${his} corset.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly strains the ribs of ${his} corset.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is carefully gripped by the ribs of ${his} corset.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly strains under the ribs of ${his} corset.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is carefully gripped by the ribs of ${his} corset.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly is carefully gripped by the ribs of ${his} corset.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly strains the ribs of ${his} corset, creating deep ravines of bountiful, soft flesh.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly strains the ribs of ${his} corset, creating deep valleys of soft flesh.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is carefully caressed by the ribs of ${his} corset.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly gripped by the ribs of ${his} corset, forcing it to bulge angrily between the gaps.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is carefully caressed by the ribs of ${his} corset.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is carefully caressed by the ribs of ${his} corset.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s corset bulges with ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges between the ribs of ${his} corset.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset bulges with ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s corset bulges with ${his} growing pregnant belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly bulges between the ribs of ${his} corset.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s swollen lower belly slightly bulges the lower rib of ${his} corset.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} corset.`); } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} rounded stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} advanced pregnancy.`); + break; + case "slutty business attire": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is held together by strained straps, as ${his} immensity promises to soon rid ${him} of the oppressive garment.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic, implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} middle. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} cramped womb. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them, not that ${his} rowdy brood would tolerate that. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} gravid swell more than covers for it.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${He}'s so bulbous, ${his} skirt is forced scandalously low beneath ${his} inflated middle.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${He}'s grown so large, ${his} skirt is forced scandalously low beneath ${his} gravid mound.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could ever come close to closing them.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else { + r.push(`${slave.slaveName}'s big pregnant stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly strains the buttons of ${his} suit jacket and blouse as it struggle to contain even the upper half of it. The rest hangs free over ${his} skirt.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant stomach strains the buttons of ${his} suit jacket and blouse.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled stomach strains the buttons of ${his} suit jacket and blouse.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly strains the buttons of ${his} suit jacket and blouse.`); + } else { + r.push(`${slave.slaveName}'s pregnant stomach strains the buttons of ${his} suit jacket and blouse.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly strains the buttons of ${his} suit jacket and blouse. The bottom of which just barely peeks out from under them.`); + } else if (((slave.belly >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly fills out ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s suit jacket and blouse are tight around ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName} has left the bottom few buttons of ${his} suit jacket and blouse undone to allow ${his} ripped abs to stand out.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on giant, jiggly guts all the same.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on large, jiggly guts all the same.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} swollen middle.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} rounded middle.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); + break; + case "nice business attire": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} inflated middle to cover ${his} shame.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} inflated middle to cover ${his} shame.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is left open to give ${him} as much space as possible, leaving ${his} gravid mound to cover ${his} shame.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment. ${His} skirt is left open, but ${his} inflated middle draws attention away from the fact.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic, implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} middle. ${His} skirt is left open, but ${his} inflated middle draws attention away from the fact.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, even more so with the amount of pressure inside ${his} cramped womb. ${His} skirt is left open, but ${his} gravid mound draws attention away from the fact.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by strained straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them, not that ${his} rowdy brood would tolerate that. ${His} skirt is loosely held together by strained straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way ${he} could ever come close to closing them. ${His} skirt is loosely held together by straps, as ${his} immensity guarantees ${he}'ll burst any seams on a proper garment.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${He}'s so bulbous, ${his} maternity skirt has stretched to its limit.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${He}'s grown so large, ${his} maternity skirt has stretched to its limit.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant stomach hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them. ${His} maternity skirt fits ${him} quite well, though.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly strains ${his} specially tailored blouse and jacket.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly strains ${his} specially tailored blouse and jacket.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly strains ${his} specially tailored blouse and jacket.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly strains ${his} specially tailored blouse and jacket.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly strains ${his} specially tailored blouse and jacket.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} big fat belly surprisingly well, though they do nothing to hide how huge ${his} gut is.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly looks good in ${his} specially tailored blouse and jacket.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly looks good in ${his} specially tailored blouse and jacket.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly looks good in ${his} specially tailored blouse and jacket.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly looks good in ${his} specially tailored blouse and jacket.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} fat belly well, though they do nothing to hide how big ${his} gut is.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly bulges under ${his} tailored blouse and jacket.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges under ${his} tailored blouse and jacket.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly bulges under ${his} tailored blouse and jacket.`); + } else { + r.push(`${slave.slaveName}'s growing belly bulges under ${his} tailored blouse and jacket.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly fills out ${his} tailored blouse and jacket.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s suit jacket and blouse are a little tight around ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are completely hidden by ${his} suit jacket.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} distended stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} swollen middle.`); - } else { - r.push(`${slave.slaveName}'s growing belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} early pregnancy.`); + break; + case "harem gauze": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly and accentuate its size and shape.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen, implant-filled belly and accentuate its size and shape.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over ${his} unfathomable, hyper-swollen pregnancy and accentuate its size and the oceanic movement as ${his} belly is rocked by the actions of ${his} brood of innumerable children.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic, ${slave.inflationType}-filled belly and accentuate its size and shape.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic, implant-filled belly and sensually accentuate its size and shape.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} monolithic pregnancy and sensually accentuate its size and the movement of ${his} many unborn children.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} titanic, implant-filled belly and sensually accentuate its size and shape.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} titanic pregnancy and sensually accentuate its size and the movement of ${his} many unborn children.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} gigantic implant-filled belly and sensually accentuate its size and shape.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit has been specially tailored to drape over ${his} gigantic pregnancy and sensually accentuate its size and shape.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive implant-filled belly and the unique motions it takes to move it.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive pregnancy and the unique motions it takes to move it.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} giant implant-filled belly and the wide movements ${he} makes with it.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} giant pregnancy and the wide movements ${he} makes with it.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly and the wide movements ${he} makes with it.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge pregnancy and the wide movements ${he} makes with it.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massively fat belly and makes every jiggle of ${his} expansive flesh surprisingly alluring.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} heavy pregnancy.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} hugely swollen stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} advanced pregnancy.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} hugely fat belly and makes every jiggle of ${his} extra flesh surprisingly alluring.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} big fat belly and makes every jiggle of ${his} flesh surprisingly alluring.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} jiggling ${slave.inflationType}-filled.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} pregnancy.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-rounded middle.`); + } else { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} growing pregnancy.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates the slight swell to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} ripped abs.`); + } else if (slave.muscles > 5) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} toned belly.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pudgy belly.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s loose dress completely hides the slight swell beneath ${his} navel.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s loose dress totally hides ${his} ripped abs.`); - } - break; - case "stretch pants and a crop-top": - if (slave.belly >= 1000000) { + break; + case "a comfortable bodysuit": + if (slave.belly >= 1000000) { // WIP// - } else if (slave.belly >= 750000) { - if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly takes full advantage of ${his} exposed midriff to bulge tremendously from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly takes full advantage of ${his} exposed midriff to bulge tremendously from ${his} body. ${His} children constantly squirm in an effort to take advantage of reduced restrictions on ${his} body.`); + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled smooth over ${his} pressure flattened navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled smooth over ${his} pressure flattened navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled smooth over ${his} pressure flattened navel and all the movement of ${his} many squirming children.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches across ${his} titanic implant-filled belly and draws the eye right to the small bump on its smooth surface, ${his} flattening navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches across ${his} titanic pregnant belly, drawing the eye to ${his} flattening navel and the squirming bulges of the life filling ${him}.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches across ${his} gigantic implant-filled belly and draws the eye right to the deminishing bump on its smooth surface, ${his} navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches across ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel and the squirming outlines of the life within ${him}.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} massive implant-filled belly and draws the eye right to the sole bump on its smooth surface, ${his} navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} massive pregnant belly and draws the eye right to each and every bump that appears on its smooth surface.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches over ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively fat belly, displaying every fold, roll and motion in it.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, displaying ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge pregnant belly, displaying ${his} popped navel and any movement ${his} babies make.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely swollen belly, displaying ${his} bloated figure and every jiggle of ${his} full stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big implant-filled belly, prominently displaying ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"} make.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely fat belly, displaying every fold, roll and motion in it.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big fat belly, displaying every fold and roll in it.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} bloating and every motion ${his} contents make.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} flattening navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} flattening navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"}.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} small pregnant belly, displaying ${his} ripening body.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} growing belly, displaying ${his} ripening body.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} chubby belly, displaying every fold and roll in it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ripped abs, clearly displaying ${his} six pack.`); + } + break; + case "a slutty nurse outfit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen, implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} unfathomable, hyper-swollen pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, though ${his} immensity threaten to disrupt even that strategy.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic, ${slave.inflationType}-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic, implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} monolithic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. An additional ribbon completes ${his} skirt, as ${his} immensity guarantees ${he}'ll burst any seams on the poor garment.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved down by the ponderous mass, but ${his} overfilled womb draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive implant-filled belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive pregnant belly, requiring ${him} to hold ${his} nurse's jacket together under ${his} breasts with a length of red silk ribbon. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} gravid swell more than covers for it.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gaint implant-filled belly, leaving ${him} with only a single straining button to keep ${his} attire together. ${He}'s so bulbous, ${his} skirt is forced scandalously low beneath ${his} inflated middle.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gaint pregnant belly, leaving ${him} with only a single straining button to keep ${his} attire together. ${He}'s grown so large, ${his} skirt is forced scandalously low beneath ${his} gravid mound.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massively fat belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge implant-filled belly, leaving ${him} with only the button below ${his} breasts done.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} hugely swollen belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big implant-filled belly, leaving ${him} with only the button below ${his} breasts done.`); + } else { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big pregnant belly, leaving ${him} with only the button below ${his} breasts done.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} hugely fat belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} big fat belly, leaving ${him} with only the button below ${his} breasts done.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s jacket barely closes over ${his} pregnant belly leaving its buttons threatening to pop.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jacket barely closes over ${his} jiggling ${slave.inflationType}-filled belly leaving its buttons threatening to pop.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket barely closes over ${his} implant-filled belly leaving its buttons threatening to pop.`); + } else { + r.push(`${slave.slaveName}'s jacket barely closes over ${his} pregnant belly leaving its buttons threatening to pop.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s jacket barely closes over ${his} fat belly forcing plenty of flab out from under its bottom and between the straining buttons.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s jacket bulges with ${his} small pregnant belly, which can be seen peeking out from underneath.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jacket bulges with ${his} ${slave.inflationType}-swollen belly, which can be seen peeking out from underneath.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s jacket bulges with ${his} implant-rounded belly, which can be seen peeking out from underneath.`); + } else { + r.push(`${slave.slaveName}'s jacket bulges with ${his} growing belly, which can be seen peeking out from underneath.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s jacket bulges with ${his} chubby belly, which can be seen peeking out from underneath as it hangs over ${his} waist of ${his} skirt.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName} wears ${his} skirt a little lower to due to the slight swell to ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s jacket is so tight around ${his} ripped abs, even the slightest movement threatens to send buttons flying.`); + } + break; + case "a schoolgirl outfit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly. ${His} skirt barely fits around ${him} and ${his} immensity promises to soon rid ${him} of the oppressive garment.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, showing off the mind boggling result of ${his} promiscuity. It's a wonder ${his} straining skirt even manages to hold together with as much movement shoving against it.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, implant-filled belly. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly, showing off the staggering result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could ever come close to closing them. ${His} skirt is shoved down by the heavy mass, but ${his} overfilled middle draws attention away from ${his} exposed nethers.`); + } else { + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly, showing off the result of ${his} promiscuity. ${His} skirt is shoved down by the ponderous mass, but the class-to-be draws attention away from ${his} exposed nethers.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} massive implant-filled belly. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though ${his} inflated middle more than covers for it.`); + } else { + r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} massive pregnant belly. ${His} skirt is shoved so low by the ponderous mass it barely hides ${his} crotch, though the result of ${his} promiscuity more than covers for it.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} giant implant-filled belly, while it itself forces ${his} skirt scandalously low.`); + } else { + r.push(`${slave.slaveName}'s blouse meekly rests atop ${his} giant pregnant belly, while it itself forces ${his} skirt scandalously low, showing off the result of ${his} promiscuity.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse can no longer stretch over ${his} huge implant-filled belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); + } else { + r.push(`${slave.slaveName}'s blouse can no longer stretch over ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s blouse rests atop ${his} massively fat belly, allowing it to hang loose over ${his} skirt.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge implant-filled belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); + } else { + r.push(`${slave.slaveName}'s blouse barely covers the top of ${his} huge pregnant belly, while it itself forces ${his} skirt dangerously low, leaving ${him} looking the part of a school slut.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse rides up ${his} big implant-filled belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse rides up ${his} hugely swollen belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } else { + r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s blouse rides up ${his} hugely fat belly, leaving it hanging loose and covering ${his} skirt.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s blouse rides up ${his} big fat belly, leaving it hanging loose and covering ${his} skirt.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse rides up ${his} jiggling ${slave.inflationType}-filled belly, leaving ${him} looking particularly slutty as it wobbles over the hem of ${his} skirt.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse rides up ${his} implant-filled belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } else { + r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly while it forces ${his} skirt down, leaving ${him} looking particularly slutty.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); + } else { + r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly. It peeks out from the bottom as it hangs over the waist of ${his} skirt.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s skirt is a little tight around ${his} middle.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s blouse is just short enough to give tantalizing peeks of the ripped abs beneath.`); } - } else if (slave.bellyPreg >= 600000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s titanic pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); + break; + case "a kimono": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass, causing ${him} to resemble a geisha in repose due to ${his} immobility.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass, causing ${him} to resemble a geisha in repose due to ${his} immobility.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnancy is so enormous that the largest obi in the world could never wrap around it. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests atop ${his} belly's incredible, brood swollen mass, causing ${him} to resemble nothing more than a geisha in repose, rocking on an ocean of undulating flesh.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic, implant-filled belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly is so enormous that there is no way for ${his} obi to ever wrap around it to tie ${his} kimono. As a result, ${he} leaves ${his} kimono open; not that ${he} could realistically fold it. It pools around ${him} when ${he} rests against ${his} belly's incredible mass.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} kimono, since it is impossible to fold over such a turbulent swell, leaving it gracefully covering ${his} sides.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} kimono, since it is impossible to fold over such a bulging swell, leaving it gracefully covering ${his} sides.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} kimono, leaving it gracefully covering its sides.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} kimono, leaving it gracefully covering its sides.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly has triumphed over ${his} kimono; ${he} has become so gravid it is simply no longer possible to properly fold the garment around ${himself}.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly has triumphed over ${his} kimono; ${he} has become so gravid it is simply no longer possible to properly fold the garment around ${himself}.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly tests the limits of ${his} kimono; any larger and ${he} simply won't be capable of folding it over ${his} enormity.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly tests the limits of ${his} kimono; any larger and ${he} simply won't be capable of folding it over ${his} gravidity.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly is barely covered by ${his} kimono; ${his} obi sinks into ${his} soft middle as it struggles to keep ${his} kimono closed.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} kimono; ${his} obi is tied above its swell ${his} for convenience.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} kimono; ${his} obi tied above its swell ${his} for convenience.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} kimono; ${his} obi tied above its swell ${his} for convenience.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly is demurely covered by ${his} kimono, though it can't hide how large it is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly is demurely covered by ${his} kimono, though it can't hide how big it is.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly is demurely covered by ${his} kimono, though it can't hide how big it is.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly is demurely covered by ${his} kimono.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is demurely covered by ${his} kimono.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is demurely covered by ${his} kimono.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly is demurely covered by ${his} kimono.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly is demurely covered by ${his} kimono.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is demurely covered by ${his} kimono.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is demurely covered by ${his} kimono.`); + } else { + r.push(`${slave.slaveName}'s growing belly is demurely covered by ${his} kimono.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is demurely covered by ${his} kimono.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s kimono hides the minor bloating in ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are demurely covered by ${his} kimono.`); } - } else if (slave.belly >= 450000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s gigantic pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body. ${His} children appreciate the lack of restraint around their cramped home.`); + break; + case "battledress": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen, ${slave.inflationType}-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to an army.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen, implant-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking , falsely, like someone preparing to give birth to an army.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the unfathomable, hyper-swollen pregnant belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking like someone preparing to give birth to an army.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tank top rests atop the monolithic, ${slave.inflationType}-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to a regiment of soldiers.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the monolithic, implant-filled belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking, falsely, like someone preparing to give birth to a regiment of soldiers.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the monolithic pregnant belly bulging from ${his} overwhelmed fatigues, leaving ${him} looking like someone preparing to give birth to a regiment of soldiers.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the titanic implant-filled belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled implant the space it needs to hang heavily. ${He} clearly found it more productive to battle ${his} enemies in the bedroom than in the field.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the titanic pregnant belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled womb the space it needs. ${He} clearly found it more productive to battle ${his} enemies in the bedroom than in the field.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the gigantic implant-filled belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled implant more room. ${He} clearly spent more time in bed than out in the field.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the gigantic pregnant belly bulging from ${his} fatigues, which are left unfastened to give ${his} overfilled womb more room. ${He} clearly spent more time in bed than out in the field.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the massive implant-filled belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who fucked all the locals.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the massive pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who fucked all the locals.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the giant implant-filled belly bulging from ${his} unfastened fatigues, leaving it clear who the favorite recruit of the platoon was.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the giant pregnant belly bulging from ${his} unfastened fatigues, leaving it clear who the favorite recruit of the platoon was.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} massively fat belly, leaving it to hang over ${his} fatigues. There is no way ${he} didn't slut ${his} way through basic.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s tank top rests atop the huge pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rests atop the huge implant-filled belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); + } else { + r.push(`${slave.slaveName}'s tank top rests atop the huge pregnant belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big pregnant belly, leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tank top barely even covers the top of the hugely swollen belly bulging from ${his} unfastened fatigues, leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big implant-filled belly, leaving ${him} looking like someone who had too much fun on shore leave.`); + } else { + r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} big pregnant belly, leaving ${him} looking like someone who had too much fun on shore leave.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} hugely fat belly, leading everyone to believe ${he} sucked ${his} way through basic.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} big fat belly, casting doubt on how this recruit passed basic.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s tank top rides up ${his} pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tank top rides up ${his} jiggling ${slave.inflationType}-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top rides up ${his} implant-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else { + r.push(`${slave.slaveName}'s tank top rides up ${his} pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s tank top covers the top of ${his} small pregnant belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tank top covers the top of ${his} ${slave.inflationType}-swollen belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tank top covers the top of ${his} implant-rounded belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } else { + r.push(`${slave.slaveName}'s tank top covers the top of ${his} growing belly leaving ${him} looking like someone who had too much fun on shore leave.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s tank top covers the top of ${his} chubby belly leaving ${him} looking like someone who had has been lazy lately.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s fatigue pants are a little tight around ${his} middle.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s tank top exposes ${his} belly, clearly displaying a fitting six pack.`); } - } else if (slave.bellyPreg >= 300000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); - } else { - r.push(`${slave.slaveName}'s massive pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body, giving ${his} children plenty of room to keep growing.`); + break; + case "a halter top dress": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} monolithic implant-filled belly while offering a diamond window to display ${his} popped navel and a massive expanse of skin around it.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to the bulges of life within ${his} monolithic pregnant belly while offering a diamond window to display ${his} popped navel and the expanse of skin around it, which is now held in place by several of ${his} brood also stuck protruding through the gap.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} titanic implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to the bulges of life within ${his} titanic pregnant belly while offering a diamond window to display ${his} popped navel and the expanse of skin around it, which, given how overfilled ${he} is, is constantly drifting off-center thanks to ${his} rowdy brood.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the massively gravid, even if they are just pretending. Its material tightly clings to ${his} gigantic implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to ${his} gigantic pregnant belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it, which tends to drift with the movements of ${his} brood.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly clings to ${his} massive implant-filled belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly clings to ${his} massive pregnant belly while offering a diamond window to display ${his} popped navel and an expanse of skin around it.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly hugs ${his} giant implant-filled belly while offering a diamond window to display ${his} popped navel and surrounding skin.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly hugs ${his} giant pregnant belly while offering a diamond window to display ${his} popped navel and surrounding skin.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid, even if they are just pretending. Its material tightly hugs ${his} huge implant-filled belly while offering a diamond window to display ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is specially designed to flatter the hugely gravid. Its material tightly hugs ${his} huge pregnant belly while offering a diamond window to display ${his} popped navel.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} massively fat belly. Every crease, fold, roll and motion is clearly visible within it. Its seams strain to hold back the tide of flesh pushing against them.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge pregnant belly. ${His} popped navel prominently pokes through its front.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through its front.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} huge pregnant belly. ${His} popped navel prominently pokes through its front.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big pregnant belly. ${His} popped navel prominently pokes through its front.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s beautiful halter top dress bulges obscenely with ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big implant-filled belly. ${His} popped navel prominently pokes through its front.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big pregnant belly. ${His} popped navel prominently pokes through its front.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} hugely fat belly. Every crease, fold, roll and motion is clearly visible within it.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} fat belly. Every crease, fold and roll is clearly visible within it.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled out by ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} chubby belly. Every crease, fold and roll is clearly visible within it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s beautiful halter top dress bulges slightly with the swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s beautiful halter top dress hugs ${his} ripped abs, clearly displaying the six pack beneath.`); } - } else if (slave.belly >= 120000) { - if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly takes full advantage of ${his} exposed midriff to bulge heavily out from ${his} body while pushing ${his} stretch pants low.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly takes full advantage of ${his} exposed midriff to bulge heavily out from ${his} body while pushing ${his} stretch pants low.`); + break; + case "a ball gown": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic, implant-filled belly to both embrace ${his} immensity and to be sure all eyes are locked to it.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored around ${his} monolithic pregnant belly to both embrace ${his} immensity and to make it abundantly clear just how filled with life ${he} truly is.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic implant-filled belly while giving it the attention it demands.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic pregnant belly while drawing attention away from just how overfilled ${he} is.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} gigantic implant-filled belly while still maintaining its beauty.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} gigantic pregnant belly while still maintaining its beauty.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace a bulging middle, but ${his} massive implant-filled belly pushes it to its limit. It strains as it tightly hugs the sizeable mass extending from ${his} front.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace a hugely gravid ${girl}, but ${his} massive pregnancy pushes it to its limit. It strains as it tightly hugs ${his} sizeable baby bump and clearly shows each and every kick and squirm happening inside ${him}.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} giant implant-filled belly, but draw attention to its sheer size.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} giant pregnant belly, but draw attention to its size, shape and subtle motions.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} huge implant-filled belly, but draw attention to its size and shape.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only embrace ${his} huge pregnant belly, but draw attention to its size and shape.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} massively fat belly, but still draws attention to it and all its subtle curves and motions.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge pregnant belly, but draw attention to it.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge implant-filled belly, but draw attention to it.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge pregnant belly, but draw attention to it.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big pregnant belly, but draw attention to it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} hugely swollen belly, but draw attention to it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big implant-filled belly, but draw attention to it.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big pregnant belly, but draw attention to it.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} hugely fat belly but draw attention to it and all its subtle curves and motions.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} big fat belly but draw attention to it and all its subtle curves.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} pregnant belly but draw attention to it.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} jiggling ${slave.inflationType}-filled belly but draw attention to it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} implant-filled belly but draw attention to it.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} pregnant belly but draw attention to it.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} rounded middle.`); + } else { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} growing pregnancy.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to embrace the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} ripped abs.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massively fat belly takes full advantage of ${his} exposed midriff to hang and jiggle freely while obscuring ${his} stretch pants.`); - } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { - if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s huge pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else if (isBellyFluidLargest) { - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else { - r.push(`${slave.slaveName}'s huge pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); + break; + case "slutty jewelry": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} jiggling ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); + } else { + r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as the outer most members of ${his} brood move in the tight confines of ${his} womb.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); + } else { + r.push(`${slave.slaveName}'s bangles are linked by a dozen long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they are shifted constantly by ${his} squirming brood.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles are linked by several long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they shift with ${his} movements.`); + } else { + r.push(`${slave.slaveName}'s bangles are linked by several long golden chains to a ring around ${his} popped out belly button. The chains tinkle metallically as they are shifted by ${his} squirming babies.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} movements.`); + } else { + r.push(`${slave.slaveName}'s bangles are linked by a long golden chain to a ring around ${his} popped out belly button. The chain tinkles metallically as it shifts with ${his} movements.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} giant implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} giant pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s bangles include multiple long, thin chains running through ${his} deep fat folds to ${his} navel. They struggle to avoid being swallowed up by ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s bangles include several long thin chains that drape across ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that frequently bounces along with ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests over ${his} hugely swollen belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s bangles include multiple long, thin chains running through ${his} deep fat folds to ${his} navel.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s bangles include long, thin chains running through ${his} fat folds.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that frequently bounces along with ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} chubby belly, just over ${his} forming rolls.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across the small swell of ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s bangles include a trio of long, thin chains that run across each set of ${his} ab muslces.`); } - } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { - if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s big pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s hugely swollen belly takes full advantage of ${his} exposed midriff to bulge freely and obscure ${his} stretch pants.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else { - r.push(`${slave.slaveName}'s big pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); + break; + case "a leotard": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight leotard has exploded at the front, showing off ${his} monolithic, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s specially tailored leotard is stretched to its absolute limit trying to contain the swell of ${his} monolithic implant-filled belly, tightly clinging to what it can cover and prominently displaying ${his} popped navel. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); + } else { + r.push(`${slave.slaveName}'s specially tailored leotard is stretched to its absolute limit trying to contain the swell of ${his} monolithic pregnant belly. The material tightly clings to what it can cover, prominently displaying ${his} popped navel, the prominent bulges of the children filling ${his} womb, and each twitch they make. The bulging sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} overfilled middle would threaten to pull the spandex away from ${his} crotch had it not already hidden it itself.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s specially tailored leotard can barely contain the curve of ${his} titanic implant-filled belly, clearly displaying ${his} popped navel. The material tightly clings to the center of ${his} gravidity, leaving ${his} sides completely exposed.`); + } else { + r.push(`${slave.slaveName}'s specially tailored leotard can barely contain the curve of ${his} titanic pregnant belly, displaying every kick and squirm within it. The material tightly clings to ${his} popped navel and bulges of ${his} unborn children, but only covers the center of ${his} gravidity, leaving ${his} rather lumpy sides completely exposed.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} gigantic implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} gigantic pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and the numerous faint outlines pushing against ${his} skin while showing a lot of skin through the sides.`); + } + } else if (slave.bellyPreg >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} massive implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} massive pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } + } else if (slave.belly >= 150000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} giant implant-filled belly. The material tightly clings to ${his} popped navel and now only shows a little skin through the sides.`); + } else { + r.push(`${slave.slaveName}'s specially tailored leotard highlights the curvature of ${his} giant pregnant belly, displaying every kick and movement within. The material tightly clings to ${his} popped navel while now only showing a little skin through the sides.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s leotard is stretched to its absolute limit trying to contain the swell of ${his} giant implant-filled belly, tightly clinging to what it can cover and prominently displaying ${his} popped navel. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); + } else { + r.push(`${slave.slaveName}'s leotard is stretched to its absolute limit trying to contain the swell of ${his} giant pregnant belly. The material tightly clings to what it can cover, prominently displaying ${his} popped navel and every kick and squirm beneath it. The sides of ${his} gravidity are completely exposed by the overwhelmed garment, and the sheer size of ${his} bulging middle threatens to pull the thin spandex away from ${his} crotch.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight leotard can barely contain the curve of ${his} huge implant-filled belly, clearly displaying ${his} popped navel. The material tightly clings to the center of ${his} gravidity, leaving ${his} sides completely exposed.`); + } else { + r.push(`${slave.slaveName}'s tight leotard can barely contain the curve of ${his} huge pregnant belly, displaying every kick and squirm within it. The material tightly clings to ${his} popped navel, but only covers the center of ${his} gravidity, leaving ${his} sides completely exposed.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s tight leotard shows off every wiggle and jiggle within ${his} massively fat belly. The material tightly clings to ${his} soft mass, forming a deep cleft in what little it can actually cover, while the rest is allowed to freely spill out its sides.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge pregnant belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} huge pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big pregnant belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight leotard pushes uncomfortably against ${his} hugely swollen belly, forcing a large amount of it out the sides of the garment.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big implant-filled belly. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } else { + r.push(`${slave.slaveName}'s tight leotard highlights the curvature of ${his} big pregnant belly, while displaying every kick and movement within. The material tightly clings to ${his} popped navel and shows a lot of skin through the sides.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in what little of its mass it actually holds.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} big fat belly, clearly displaying every fold and roll as it spills out its sides.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} pregnant belly. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight leotard hugs ${his} jiggling ${slave.inflationType}-filled belly, forcing it to be a little flatter than it would be.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} implant-filled belly. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); + } else { + r.push(`${slave.slaveName}'s tight leotard shows off the curvature of ${his} pregnant belly, displaying every kick and movement within. The material tightly clings to ${his} popped navel while revealing a hint of skin through the widening gaps.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll as it spills out its sides.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s tight leotard bulges with ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight leotard bulges with ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight leotard bulges with ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s tight leotard bulges with ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s tight leotard clings to ${his} chubby belly, clearly displaying every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s tight leotard clings to ${his} belly, clearly displaying the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s tight leotard hugs ${his} ripped abs, clearly displaying every powerful motion they make.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly takes full advantage of ${his} exposed midriff to hang and jiggle freely while obscuring ${his} stretch pants.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s big fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { - if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s pregnant belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); - } else { - r.push(`${slave.slaveName}'s pregnant belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); + break; + case "a cybersuit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled taut over ${his} pressure flattened navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled taut over ${his} pressure flattened navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled taut over ${his} pressure flattened navel, yet bulging with the many squirming children filling ${him}.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} titanic implant-filled belly and draws the eye right to the small bump on its smooth surface, ${his} flattening navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} titanic pregnant belly, drawing the eye to ${his} flattening navel and the squirming bulges of the life filling ${him}.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} gigantic implant-filled belly and draws the eye right to the deminishing bump on its smooth surface, ${his} navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit stretches across ${his} gigantic pregnant belly, drawing the eye to ${his} protruding navel and the squirming outlines of the life within ${him}.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} massive implant-filled belly and draws the eye right to the sole bump on its smooth surface, ${his} navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} massive pregnant belly and draws the eye right to each and every bump that appears on its smooth surface.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} giant implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} giant pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.belly >= 60000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} huge implant-filled belly and draws the eye right to ${his} protruding navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit stretches over ${his} huge pregnant belly, drawing the eye to ${his} protruding navel and clearly showing every kick and squirm inside ${his} bulging middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s tight bodysuit shows off every wiggle and jiggle within ${his} massively fat belly.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} huge pregnant belly, displaying ${his} popped navel and any movement ${his} bab${slave.pregType > 1 ? "ies make" : "y makes"}.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} hugely swollen belly, displaying ${his} bloated figure and every jiggle of ${his} full stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} big implant-filled belly, prominently displaying ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in its mass.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} big fat belly, clearly displaying every fold and roll.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s tight bodysuit shows off the curvature of ${his} pregnant belly. The material tightly clings to ${his} popped navel.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} bloating and every motion ${his} contents make.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit shows off every movement within ${his} pregnant belly. The material tightly clings to ${his} flattening navel.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tight bodysuit tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s tight bodysuit shows off ${his} small belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); + } else { + r.push(`${slave.slaveName}'s tight bodysuit shows off ${his} growing belly.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} chubby belly, clearly displaying every fold and roll.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} belly, clearly showing the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s tight bodysuit clings to ${his} ripped abs, clearly displaying ${his} six pack.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s small pregnant belly takes full advantage of ${his} exposed midriff to bulge freely.`); - } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly takes full advantage of ${his} exposed midriff to bulge freely.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly takes full advantage of ${his} exposed midriff to bulge freely.`); - } else { - r.push(`${slave.slaveName}'s growing belly takes full advantage of ${his} exposed midriff to bulge freely.`); + break; + case "a tight Imperial bodysuit": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, distending obscenely into a gargantuan, imposing mass of stretched-out flesh under skintight suit.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen, implant-filled belly, distending obscenely into a gargantuan, enormously swollen mass of stretched-out flesh under skintight suit.`); + } else { + r.push(`${slave.slaveName}'s bodysuit stretches out obscenely on ${his} unfathomable, hyper-swollen pregnant belly, distending obscenely into a gargantuan, bulging mass of stretched-out flesh under skintight suit.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, ${slave.inflationType}-filled belly, pulled smooth over ${his} pressure flattened navel.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic, implant-filled belly, pulled smooth over ${his} pressure flattened navel.`); + } else { + r.push(`${slave.slaveName}'s bodysuit somehow manages to barely stretch over ${his} monolithic pregnant belly, pulled smooth over ${his} pressure flattened navel and all the movement of ${his} many squirming children.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic ${slave.inflationType}-filled belly underneath the bodysuit, displaying ${his} popped navel through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly underneath the bodysuit, displaying ${his} popped navel through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic bulging pregnant belly, displaying ${his} popped navel and all the movement ${his} squirming babies make.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively gravid stomach. It clearly displays ${his} gigantic pregnant belly through the skintight material.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} massive ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} massive implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massive pregnant belly, displaying ${his} popped navel and any movement ${his} babies make.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant pregnant belly through the skintight material.`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gravid stomach. It clearly displays ${his} huge pregnant belly through the skintight material.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} massively fat belly, displaying every fold, roll and motion in it.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge pregnant belly through the skintight material.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} huge pregnant belly through the skintight material.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} hugely swollen belly, leaving it looking much shorter than it really is.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} huge implant-filled belly, leaving it looking much shorter than it really is.`); + } else { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big pregnant belly, leaving it looking much shorter than it really is.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s bodysuit barely clings to ${his} hugely fat belly, clearly showing all ${his} folds and rolls through the skintight material.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} big fat belly, clearly showing all ${his} folds and roll through the skintight material.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} jiggling ${slave.inflationType}-filled belly through the skintight material.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} implant-filled belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} pregnant belly through the skintight material.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} fat belly, clearly showing every fold and roll through the skintight material.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} small pregnant belly through the skintight material.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} implant-rounded belly through the skintight material.`); + } else { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} growing belly through the skintight material.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} chubby belly underneath the skintight material.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s bodysuit just barely clearly displays the swell of ${his} belly through the skintight material.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s bodysuit clearly displays every last line of ${his} powerful core, displaying a gorgeously outlined six-pack through the skintight material.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly takes full advantage of ${his} exposed midriff to hang freely and obscure the top of ${his} stretch pants.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s stretch pants are fastened just beneath the slight swell of ${his} lower belly rendering it completely obvious.`); - } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); - } - break; - case "spats and a tank top": - if (slave.boobs > 1200) { - r.push(`${slave.slaveName}'s top is currently prevented from trying to cover ${his}`); + break; + case "a chattel habit": if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through in the hopes of keeping material from slipping to the side of ${his} monolithic implant-filled belly. Since ${his} navel has begun to pull flat, however, the tension does that job instead.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through in the hopes of keeping material from slipping to the side of ${his} monolithic pregnant belly. Since ${his} navel has begun to pull flat, however, the tension and the many bulges of ${his} unborn brood handle that job instead.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} titanic implant-filled belly, though the tension does a good enough job on its own.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} titanic pregnant belly; it does not stop ${his} brood from trying, however.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} gigantic implant-filled belly, though the tension does a good enough job on its own.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} gigantic pregnant belly; it does not stop ${his} brood from trying, however.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} massive implant-filled belly, though the tension does a good enough job on its own.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} massive pregnant belly; it does not stop ${his} children from trying, however.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} giant implant-filled belly.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} giant pregnant belly; it does not stop ${his} children from trying, however.`); + } + } else if (slave.belly >= 30000) { if (isBellyFluidLargest) { - r.push(`unfathomable huge, hyper-swollen, ${slave.inflationType}-filled belly`); } else if (slave.bellyImplant > 0) { - r.push(`unfathomable huge, hyper-swollen, implant-filled belly`); + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge implant-filled belly.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); + } + } else if (slave.weight > 190) { + r.push(`The strip of cloth running down ${his} front has sunken so deeply into ${his} massively fat belly that is has been swallowed completely. The only hint of its presence is the deep trench of flab spilling around it.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge implant-filled belly.`); + } else { + r.push(`The strip of cloth running down ${his} front has a diamond-shaped hole for ${his} navel to poke through, keeping the material from slipping to the side of ${his} huge pregnant belly.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} hugely swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big implant-filled belly.`); + } else { + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} big pregnant belly.`); + } + } else if (slave.weight > 160) { + r.push(`The strip of cloth running down ${his} front sinks deeply into ${his} hugely fat belly.`); + } else if (slave.weight > 130) { + r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} big fat belly.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} jiggling ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} implant-filled belly.`); + } else { + r.push(`The strip of cloth running down ${his} front is often forced to the side by ${his} pregnant belly.`); + } + } else if (slave.weight > 95) { + r.push(`The strip of cloth running down ${his} front gently sinks into ${his} fat belly.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} small pregnant belly.`); + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} small pregnant belly.`); + } else if (isBellyFluidLargest) { + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} ${slave.inflationType}-swollen belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} implant-rounded belly.`); } else { - r.push(`unfathomable, hyper-swollen pregnant belly`); + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} growing belly.`); } + } else if (slave.weight > 30) { + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} chubby belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`The strip of cloth running down ${his} front demurely rests over the slight swell below ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`The strip of cloth running down ${his} front prominently displays ${his} ripped abs.`); + } + break; + case "a bunny outfit": // WIP belly overhaul point + if (slave.belly >= 1000000) { + // WIP// } else if (slave.belly >= 750000) { if (isBellyFluidLargest) { - r.push(`monolithic ${slave.inflationType}-filled belly`); + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} monolithic, ${slave.inflationType}-filled belly, leaving it hanging out the hole it made.`); } else if (slave.bellyImplant > 0) { - r.push(`monolithic implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a ridiculously swollen ${girl} and comes with a gap in the front for ${his} monolithic implant-filled belly to expand out of.`); } else { - r.push(`monolithic pregnant belly`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a ridiculously gravig ${girl} and comes with a gap in the front for ${his} monolithic pregnant belly to uncontrollably billow out of.`); } } else if (slave.bellyPreg >= 600000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`titanic implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a absurdly swollen ${girl} and comes with a gap in the front for ${his} titanic implant-filled belly to bulge through.`); } else { - r.push(`titanic pregnancy`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a absurdly gravid ${girl} and comes with a gap in the front for ${his} titanic pregnant belly to spill out of.`); } - } else if (slave.bellyPreg >= 450000) { + } else if (slave.belly >= 450000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`gigantic implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a massively swollen ${girl} and comes with a gap in the front for ${his} gigantic implant-filled belly to bulge through.`); } else { - r.push(`gigantic pregnancy`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a massively gravid ${girl} and comes with a gap in the front for ${his} gigantic pregnant belly to bulge through.`); } - } else if (slave.bellyPreg >= 300000) { + } else if (slave.belly >= 300000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`massive implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a hugely swollen ${girl} and comes with a gap in the front for ${his} massive implant-filled belly to bulge through.`); } else { - r.push(`massive pregnancy`); + r.push(`${slave.slaveName}'s teddy is specially designed to accommodate such a hugely gravid ${girl} and comes with a gap in the front for ${his} massive pregnant belly to bulge through.`); } } else if (slave.belly >= 120000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`giant implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is specially designed with a gap in the front for ${his} giant implant-filled belly to bulge through.`); } else { - r.push(`giant pregnancy`); + r.push(`${slave.slaveName}'s teddy is specially designed with a gap in the front for ${his} giant pregnant belly to bulge through.`); } } else if (slave.belly >= 30000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`huge implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is carefully fitted to contain ${his} huge implant-filled belly, but only emphasizes just how large ${he} has gotten.`); } else { - r.push(`huge pregnancy`); + r.push(`${slave.slaveName}'s teddy is carefully fitted to contain ${his} huge pregnant belly, but only emphasizes just how large and ripe ${he} is.`); } } else if (slave.weight > 190) { - r.push(`massively fat belly`); + r.push(`${slave.slaveName}'s tailored teddy is strained to capacity by ${his} massively fat belly. ${His} flab juts out around its edges while drawing it focuses on drawing attention to ${his} folds, rolls and assorted jiggling.`); } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`huge pregnancy`); + r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge pregnant belly. ${His} popped navel prominently pokes through the taut material.`); } else if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`huge implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through the taut material.`); } else { - r.push(`huge pregnancy`); + r.push(`${slave.slaveName}'s teddy is filled to its limit by ${his} huge pregnant belly. ${His} popped navel prominently pokes through the taut material.`); } } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { if (slave.bellyAccessory === "a large empathy belly") { - r.push(`big pregnancy`); + r.push(`${slave.slaveName}'s teddy is filled out by ${his} big pregnant belly. ${His} popped navel prominently pokes through the material.`); } else if (isBellyFluidLargest) { - r.push(`hugely swollen belly`); + r.push(`${slave.slaveName}'s teddy is filled with ${his} hugely swollen belly, forcing it to bulge prominently.`); } else if (slave.bellyImplant > 0) { - r.push(`big implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is filled out by ${his} big implant-filled belly. ${His} popped navel prominently pokes through the material.`); } else { - r.push(`big pregnancy`); + r.push(`${slave.slaveName}'s teddy is filled out by ${his} big pregnant belly. ${His} popped navel prominently pokes through the material.`); } } else if (slave.weight > 160) { - r.push(`hugely fat belly`); + r.push(`${slave.slaveName}'s tailored teddy is stretched out by ${his} hugely fat belly. It barely contains the mass while drawing attention to ${his} folds, rolls and subtle motions.`); } else if (slave.weight > 130) { - r.push(`big fat belly`); + r.push(`${slave.slaveName} has recently begun wearing a teddy that can accommodate ${his} big fat belly. It completely contains the mass while drawing attention to ${his} folds and rolls.`); } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`pregnant belly`); + r.push(`${slave.slaveName}'s teddy is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the material.`); } else if (isBellyFluidLargest) { - r.push(`jiggling ${slave.inflationType}-filled belly`); + r.push(`${slave.slaveName}'s teddy is uncomfortably tight around ${his} jiggling ${slave.inflationType}-filled belly, forcing the material to bulge around the sloshing bulge.`); } else if (slave.bellyImplant > 0) { - r.push(`implant-filled belly`); + r.push(`${slave.slaveName}'s teddy is filled by ${his} implant-filled belly. ${His} popped navel prominently pokes through the material.`); } else { - r.push(`pregnant belly`); + r.push(`${slave.slaveName}'s teddy is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the material.`); } } else if (slave.weight > 95) { - r.push(`fat belly`); + r.push(`${slave.slaveName}'s teddy is stretched out by ${his} fat belly. ${His} flab juts out around its edges and it does nothing to hide ${his} folds and rolls.`); } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { if (slave.bellyAccessory === "a small empathy belly") { - r.push(`small pregnant belly`); + r.push(`${slave.slaveName}'s teddy bulges with ${his} small pregnancy.`); } else if (isBellyFluidLargest) { - r.push(`${slave.inflationType}-swollen belly`); + r.push(`${slave.slaveName}'s teddy bulges with ${his} ${slave.inflationType}-bloated belly.`); } else if (slave.bellyImplant > 0) { - r.push(`implant-rounded belly`); + r.push(`${slave.slaveName}'s teddy bulges with ${his} implant-rounded belly.`); } else { - r.push(`growing pregnancy`); + r.push(`${slave.slaveName}'s teddy bulges with ${his} growing belly.`); } } else if (slave.weight > 30) { - r.push(`chubby belly`); + r.push(`${slave.slaveName}'s teddy is stretched by ${his} chubby belly. It does nothing to hide ${his} folds and rolls.`); } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`slightly swollen belly`); + r.push(`${slave.slaveName}'s teddy bulges over ${his} lower belly, making ${him} look a little bloated.`); } else if (slave.muscles > 30) { - r.push(`ripped abs`); + r.push(`${slave.slaveName}'s teddy is carefully fitted to highlight ${his} six pack and fully display ${his} ripped abs.`); } - if (slave.boobs > 4000) { - r.push(`by ${his} huge tits, leaving them to rest on it instead.`); - } else { - r.push(`by ${his} big tits, leaving it completely exposed to view.`); - } - if (slave.belly >= 30000) { - r.push(`It's hard to tell from the front, but there is a pair of spats fighting valiantly to hug the base of ${his} gravidity.`); + break; + case "attractive lingerie for a pregnant woman": + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge tremendously in every direction. ${His} silken vest sensually frames what little it can of ${his} boundless middle.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulging mass.`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly completely hides ${his} lacy g-string and takes full advantage of its lack of restriction to bulge tremendously.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge tremendously. ${His} silken vest sensually frames what little it can of ${his} boundless middle.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulge-coated mass. ${His} exposed middle gives ${his} children the room they so desperately need to keep growing.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silken panties and takes full advantage of its lack of restriction to bulge massively. ${His} silken vest sensually frames what little it can of ${his} immense middle.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can of the bulging mass. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silken panties and takes full advantage of its freedom to hang heavily. ${His} silken vest sensually frames what little it can of ${his} immense middle.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely hides ${his} silken panties while ${his} silken vest sensually frames what little it can. ${His} children appreciate the space granted by ${his} exposed middle.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly completely hides ${his} silken panties and takes full advantage of its freedom to hang heavily. ${His} silken vest sensually frames what it can of ${his} immense middle.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silken panties and takes full advantage of its freedom to bulge hugely. ${His} silken vest sensually frames what it can of ${his} immense middle.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly completely hides ${his} silken panties and bulges heavily from ${his} body. ${His} silken vest sensually frames ${his} ponderous middle.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly completely hides ${his} silken panties and bulges heavily from ${his} body. ${His} silken vest sensually frames ${his} ponderous middle.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly completely hides ${his} silken panties. ${His} silken vest struggles to sensually frame ${his} immense, jiggly gut while dwarfed by it.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} ponderous stomach.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} ponderous stomach.`); + } + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heaving stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy, constantly jiggling gut.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} hefty, jiggling gut.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy middle.`); + } } else if (slave.weight > 95) { - r.push(`It's hard to tell from the front, but there is a pair of spats hidden beneath that shelf of flab.`); + r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} motherly figure.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} rounded middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swollen figure.`); + } else { + r.push(`${slave.slaveName}'s growing belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swelling form.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly rests above ${his} silken panties, barely hanging over the top of them. ${His} silken vest sensually frames ${his} soft stomach.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s silken panties rest just beneath the slight swell of ${his} lower belly, but ${his} matching vest draws attention away from it.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs are sensually framed by ${his} sliken vest.`); } - } else { + break; + case "a maternity dress": if (slave.belly >= 1000000) { - // wip + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); + } else { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} squirming belly.`); + } } else if (slave.belly >= 750000) { if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly is so large that ${his} dress, despite being designed to flatter pregnancies, is inadequate to contain it due to sheer size. The dress bunches up as it rests atop ${his} belly.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} monolithic belly, only rest atop it, while ${his} spats struggle to stay up beneath the boundless mass.`); + r.push(`${slave.slaveName}'s monolithic, implant-filled belly stretches ${his} once loose dress to its limit. It is specially tailored to be modest yet draw attention to sizeable middles, but ${he} has managed to render it inadequate; ${he} can't actually manage to pull it all the way over ${his} sheer mass. The dress often ends up bunched atop ${his} belly unless someone is kind enough to lend a pair of hands to tug it down the rest of the way.`); } else { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} monolithic pregnancy, only rest atop it, while ${his} spats struggle to stay up with so many shifting bulges threatening to unseat them.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly stretches ${his} once loose dress to its limit. It is specially tailored to be modest yet flatter pregnancies, but ${he} has managed to render it inadequate; ${he} can't actually manage to pull it all the way over ${his} sheer gravidity. The dress often ends up bunched atop ${his} belly unless someone is kind enough to lend a pair of hands to tug it down the rest of the way.`); } } else if (slave.belly >= 600000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} once loose dress into a more form fitting attire. It is specially tailored to be modest yet draw attention to ${his} abnormaly large middle.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly stretches ${his} once loose dress into a more form fitting attire, showing off ${his} protruding navel and the many bulges of life filling ${him}. Even at ${his} abnormal size, its special tailoring allows it to retain its modesty.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} abnormaly large middle.`); + } else { + r.push(`${slave.slaveName}'s gigantic pregnant belly completely fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} abnormal pregnancy.`); + } + } else if (slave.belly >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} spectacular middle.`); + } else { + r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} once loose dress. It is specially tailored to be modest yet draw attention to ${his} spectacular pregnancy.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); + } else { + r.push(`${slave.slaveName}'s giant pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} full pregnancy.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massively fat belly stretches ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on massive, jiggly guts all the same.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); + } else { + r.push(`${slave.slaveName}'s huge pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} advanced pregnancy.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s hugely swollen belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} rounded stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} expanded middle.`); + } else { + r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} advanced pregnancy.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on giant, jiggly guts all the same.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s big fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on large, jiggly guts all the same.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} swollen middle.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} rounded middle.`); + } else { + r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. It is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s small pregnant belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pregnancy.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} distended stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} swollen middle.`); + } else { + r.push(`${slave.slaveName}'s growing belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} early pregnancy.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is noticeable under ${his} loose dress. It is specially tailored to be modest yet draw attention to ${his} pudgy belly.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s loose dress completely hides the slight swell beneath ${his} navel.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s loose dress totally hides ${his} ripped abs.`); + } + break; + case "stretch pants and a crop-top": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s monolithic, ${slave.inflationType}-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly takes full advantage of ${his} exposed midriff to bulge tremendously from ${his} body.`); } else { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic pregnancy, only rest atop it, while ${his} spats are left to fend for themselves against the onslaught of squirming life within.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly takes full advantage of ${his} exposed midriff to bulge tremendously from ${his} body. ${His} children constantly squirm in an effort to take advantage of reduced restrictions on ${his} body.`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); + } else { + r.push(`${slave.slaveName}'s titanic pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body. ${His} children greatly appreciate the space granted by ${his} exposed middle and squirm happily in their cramped confines.`); } } else if (slave.belly >= 450000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} gigantic belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + r.push(`${slave.slaveName}'s gigantic implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); } else { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} gigantic pregnancy, only rest atop it, while ${his} spats are left to fend for themselves against the onslaught of squirming life within.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body. ${His} children appreciate the lack of restraint around their cramped home.`); } } else if (slave.bellyPreg >= 300000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + r.push(`${slave.slaveName}'s massive implant-filled belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body.`); } else { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive pregnancy, only rest atop it, while ${his} spats are left to fend for themselves beneath the restless mass.`); + r.push(`${slave.slaveName}'s massive pregnant belly takes full advantage of ${his} exposed midriff to hang heavily from ${his} body, giving ${his} children plenty of room to keep growing.`); } } else if (slave.belly >= 120000) { if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly. ${His} spats struggle to manage any of ${his} impressive bulk.`); + r.push(`${slave.slaveName}'s giant implant-filled belly takes full advantage of ${his} exposed midriff to bulge heavily out from ${his} body while pushing ${his} stretch pants low.`); } else { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering any of ${his} lewd, bulging pregnancy. ${His} spats struggle to manage any of ${his} impressive bulk.`); + r.push(`${slave.slaveName}'s giant pregnant belly takes full advantage of ${his} exposed midriff to bulge heavily out from ${his} body while pushing ${his} stretch pants low.`); } } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s top is incapable of covering ${his} massively fat belly, so it merely rests atop it.`); + r.push(`${slave.slaveName}'s massively fat belly takes full advantage of ${his} exposed midriff to hang and jiggle freely while obscuring ${his} stretch pants.`); } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { if (slave.bellyAccessory === "a huge empathy belly") { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s huge pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else if (isBellyFluidLargest) { } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s huge implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s huge pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s big pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s top and spats cannot even attempt to cover ${his} hugely swollen belly, leaving it lewdly jutting out.`); + r.push(`${slave.slaveName}'s hugely swollen belly takes full advantage of ${his} exposed midriff to bulge freely and obscure ${his} stretch pants.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s big implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else { - r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + r.push(`${slave.slaveName}'s big pregnant belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s top fails to contain ${his} hugely fat belly, leaving it hanging loose and covering ${his} spats from view.`); + r.push(`${slave.slaveName}'s hugely fat belly takes full advantage of ${his} exposed midriff to hang and jiggle freely while obscuring ${his} stretch pants.`); } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s top fails to contain ${his} big fat belly, leaving it hanging loose and covering ${his} spats from view.`); + r.push(`${slave.slaveName}'s big fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { if (slave.bellyAccessory === "a medium empathy belly") { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty with ${his} spats pulled up only to its base.`); + r.push(`${slave.slaveName}'s pregnant belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s top only slightly covers ${his} jiggling ${slave.inflationType}-filled belly. ${His} spats only come up to the base of it.`); + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to bulge out ${his} spats.`); + r.push(`${slave.slaveName}'s implant-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); } else { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty with ${his} spats pulled up only to its base.`); + r.push(`${slave.slaveName}'s pregnant belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); } } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s top can't entirely contain ${his} fat belly, leaving a bit of it hanging loose and covering ${his} spats from view.`); + r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s top bulges with ${his} small pregnancy, leaving some of it exposed to view at the bottom.`); + r.push(`${slave.slaveName}'s small pregnant belly takes full advantage of ${his} exposed midriff to bulge freely.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} ${slave.inflationType}-swollen belly, allowing it to hang loose and slightly push ${his} spats downwards.`); + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly takes full advantage of ${his} exposed midriff to bulge freely.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`); + r.push(`${slave.slaveName}'s implant-rounded belly takes full advantage of ${his} exposed midriff to bulge freely.`); } else { - r.push(`${slave.slaveName}'s top bulges with ${his} growing pregnancy, leaving some of it exposed to view at the bottom.`); + r.push(`${slave.slaveName}'s growing belly takes full advantage of ${his} exposed midriff to bulge freely.`); } } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s top bulges with ${his} chubby belly, leaving some of it exposed to view.`); + r.push(`${slave.slaveName}'s chubby belly takes full advantage of ${his} exposed midriff to hang freely and obscure the top of ${his} stretch pants.`); } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s spats are a bit tight around ${his} lower belly.`); + r.push(`${slave.slaveName}'s stretch pants are fastened just beneath the slight swell of ${his} lower belly rendering it completely obvious.`); } else if (slave.muscles > 30) { - r.push(`${slave.slaveName}'s ripped abs frequently peek out from beneath ${his} top.`); + r.push(`${slave.slaveName}'s ripped abs are prominently displayed for all to see.`); + } + break; + case "spats and a tank top": + if (slave.boobs > 1200) { + r.push(`${slave.slaveName}'s top is currently prevented from trying to cover ${his}`); + if (slave.belly >= 1000000) { + if (isBellyFluidLargest) { + r.push(`unfathomable huge, hyper-swollen, ${slave.inflationType}-filled belly`); + } else if (slave.bellyImplant > 0) { + r.push(`unfathomable huge, hyper-swollen, implant-filled belly`); + } else { + r.push(`unfathomable, hyper-swollen pregnant belly`); + } + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + r.push(`monolithic ${slave.inflationType}-filled belly`); + } else if (slave.bellyImplant > 0) { + r.push(`monolithic implant-filled belly`); + } else { + r.push(`monolithic pregnant belly`); + } + } else if (slave.bellyPreg >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`titanic implant-filled belly`); + } else { + r.push(`titanic pregnancy`); + } + } else if (slave.bellyPreg >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`gigantic implant-filled belly`); + } else { + r.push(`gigantic pregnancy`); + } + } else if (slave.bellyPreg >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`massive implant-filled belly`); + } else { + r.push(`massive pregnancy`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`giant implant-filled belly`); + } else { + r.push(`giant pregnancy`); + } + } else if (slave.belly >= 30000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`huge implant-filled belly`); + } else { + r.push(`huge pregnancy`); + } + } else if (slave.weight > 190) { + r.push(`massively fat belly`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`huge pregnancy`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`huge implant-filled belly`); + } else { + r.push(`huge pregnancy`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`big pregnancy`); + } else if (isBellyFluidLargest) { + r.push(`hugely swollen belly`); + } else if (slave.bellyImplant > 0) { + r.push(`big implant-filled belly`); + } else { + r.push(`big pregnancy`); + } + } else if (slave.weight > 160) { + r.push(`hugely fat belly`); + } else if (slave.weight > 130) { + r.push(`big fat belly`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`pregnant belly`); + } else if (isBellyFluidLargest) { + r.push(`jiggling ${slave.inflationType}-filled belly`); + } else if (slave.bellyImplant > 0) { + r.push(`implant-filled belly`); + } else { + r.push(`pregnant belly`); + } + } else if (slave.weight > 95) { + r.push(`fat belly`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`small pregnant belly`); + } else if (isBellyFluidLargest) { + r.push(`${slave.inflationType}-swollen belly`); + } else if (slave.bellyImplant > 0) { + r.push(`implant-rounded belly`); + } else { + r.push(`growing pregnancy`); + } + } else if (slave.weight > 30) { + r.push(`chubby belly`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`slightly swollen belly`); + } else if (slave.muscles > 30) { + r.push(`ripped abs`); + } + if (slave.boobs > 4000) { + r.push(`by ${his} huge tits, leaving them to rest on it instead.`); + } else { + r.push(`by ${his} big tits, leaving it completely exposed to view.`); + } + if (slave.belly >= 30000) { + r.push(`It's hard to tell from the front, but there is a pair of spats fighting valiantly to hug the base of ${his} gravidity.`); + } else if (slave.weight > 95) { + r.push(`It's hard to tell from the front, but there is a pair of spats hidden beneath that shelf of flab.`); + } + } else { + if (slave.belly >= 1000000) { + // wip + } else if (slave.belly >= 750000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} monolithic belly, only rest atop it, while ${his} spats struggle to stay up beneath the boundless mass.`); + } else { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} monolithic pregnancy, only rest atop it, while ${his} spats struggle to stay up with so many shifting bulges threatening to unseat them.`); + } + } else if (slave.belly >= 600000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + } else { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic pregnancy, only rest atop it, while ${his} spats are left to fend for themselves against the onslaught of squirming life within.`); + } + } else if (slave.belly >= 450000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} gigantic belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + } else { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} gigantic pregnancy, only rest atop it, while ${his} spats are left to fend for themselves against the onslaught of squirming life within.`); + } + } else if (slave.bellyPreg >= 300000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive belly, only rest atop it, while ${his} spats are left to fend for themselves beneath the oppressive mass.`); + } else { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive pregnancy, only rest atop it, while ${his} spats are left to fend for themselves beneath the restless mass.`); + } + } else if (slave.belly >= 120000) { + if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly. ${His} spats struggle to manage any of ${his} impressive bulk.`); + } else { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering any of ${his} lewd, bulging pregnancy. ${His} spats struggle to manage any of ${his} impressive bulk.`); + } + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s top is incapable of covering ${his} massively fat belly, so it merely rests atop it.`); + } else if (slave.belly >= 15000 || slave.bellyAccessory === "a huge empathy belly") { + if (slave.bellyAccessory === "a huge empathy belly") { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + } else if (isBellyFluidLargest) { + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + } else { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering a fourth of its bulk while ${his} spats are stuck only coming up to its base.`); + } + } else if (slave.belly >= 10000 || slave.bellyAccessory === "a large empathy belly") { + if (slave.bellyAccessory === "a large empathy belly") { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s top and spats cannot even attempt to cover ${his} hugely swollen belly, leaving it lewdly jutting out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging belly, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + } else { + r.push(`${slave.slaveName}'s top is currently making a laughable attempt at covering ${his} lewd, bulging pregnancy, barely covering half its bulk while ${his} spats are stuck only coming up to its base.`); + } + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s top fails to contain ${his} hugely fat belly, leaving it hanging loose and covering ${his} spats from view.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s top fails to contain ${his} big fat belly, leaving it hanging loose and covering ${his} spats from view.`); + } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { + if (slave.bellyAccessory === "a medium empathy belly") { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty with ${his} spats pulled up only to its base.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s top only slightly covers ${his} jiggling ${slave.inflationType}-filled belly. ${His} spats only come up to the base of it.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to bulge out ${his} spats.`); + } else { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty with ${his} spats pulled up only to its base.`); + } + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s top can't entirely contain ${his} fat belly, leaving a bit of it hanging loose and covering ${his} spats from view.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyAccessory === "a small empathy belly") { + r.push(`${slave.slaveName}'s top bulges with ${his} small pregnancy, leaving some of it exposed to view at the bottom.`); + } else if (isBellyFluidLargest) { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} ${slave.inflationType}-swollen belly, allowing it to hang loose and slightly push ${his} spats downwards.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`); + } else { + r.push(`${slave.slaveName}'s top bulges with ${his} growing pregnancy, leaving some of it exposed to view at the bottom.`); + } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s top bulges with ${his} chubby belly, leaving some of it exposed to view.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s spats are a bit tight around ${his} lower belly.`); + } else if (slave.muscles > 30) { + r.push(`${slave.slaveName}'s ripped abs frequently peek out from beneath ${his} top.`); + } } - } + } } return r.join(" "); diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js index fc1386201eaae5134a4f807768e4ac784ab36a3f..0754af60b45c3271fe554f65c6d747177b11be7e 100644 --- a/src/npc/descriptions/boobs/boobs.js +++ b/src/npc/descriptions/boobs/boobs.js @@ -261,1068 +261,1058 @@ App.Desc.boobs = function() { const adjNoun = App.Desc.boobBits.noun(slave.boobs, false, true); let r = ''; const {he, his, him, His, girl} = getPronouns(slave); - - switch (slave.clothes) { - case "a Fuckdoll suit": - r += `${slave.slaveName}'s Fuckdoll suit `; - if (slave.boobs > 300) { - r += `fits each of ${his} ${adjNoun} `; + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "boobs" in clothing.desc) { + r += clothing.desc.boobs(slave); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + r += `${slave.slaveName}'s Fuckdoll suit `; + if (slave.boobs > 300) { + r += `fits each of ${his} ${adjNoun} `; + if (slave.boobs > 12000) { + r += 'perfectly.'; + } else if (slave.boobs > 300) { + r += 'individually.'; + } + } else { + r += `is flat across ${his} chest.`; + } + break; + case "conservative clothing": + if (slave.boobs > 24000) { + r += `${slave.slaveName} is wearing a tent-like sweater tailored to cover ${his} ${adjNoun}.`; + } else if (slave.boobs > 12000) { + r += `${slave.slaveName} is wearing a massively oversized custom sweater since nothing else comes close to modestly covering ${his} ${adjNoun}. Even so, it's stretched taut struggling to contain their immense mass.`; + } else if (slave.boobs > 8000) { + r += `${slave.slaveName} is wearing an oversized sweater, since that's the only top that will come close to covering ${his} ${adjNoun}. Even so, it's stretched taut just struggling to cover ${his} nipples.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName} is wearing an oversized sweater, since that's the only top that will cover ${his} ${adjNoun}. Even so, it's stretched taut over them.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s blouse is professional, but can't conceal the gigantic dimensions of ${his} ${adjNoun}.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s blouse is professional, but can't conceal how big ${his} ${noun} are.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s blouse is professional and includes a pleated front over ${his} flat chest.`; + } else { + r += `${slave.slaveName}'s blouse is professional and includes a pleated front over ${his} ${adjNoun}.`; + } + break; + case "chains": + r += `${slave.slaveName} has a length of chain painfully `; + if (slave.boobs > 800) { + r += 'tightened around the base of each breast, forcing them out.'; + } else if (slave.boobs < 300) { + switch (slave.nipples) { + case "huge": + r += `wrapped around each of ${his} huge nipples, since they are the only things protruding from ${his} chest.`; + break; + case "inverted": + r += `wrapped tightly across ${his} flat chest, through the cleft of ${his} inverted nipples.`; + break; + default: + r += `wrapped tightly across ${his} flat chest, directly over ${his} ${slave.nipples} nipples.`; + } + } else { + r += `looped under ${his} chest, forcing ${his} breasts up.`; + } + break; + case "Western clothing": + r += `${slave.slaveName}'s flannel shirt `; + if (slave.boobs > 2000) { + r += `can't begin to contain ${his} ${adjNoun}, so ${he}'s just tied it under them for support.`; + } else if (slave.boobs > 800) { + r += `can't close over ${his} ${adjNoun}, so ${he}'s just buttoned it up to where they start and let them fill it out above that.`; + } else if (slave.boobs < 300) { + r += `tightly hugs ${his} flat chest.`; + } else { + r += `rests comfortably over ${his} ${adjNoun}.`; + } + break; + case "body oil": + if (slave.boobs < 300) { + r += `${slave.slaveName}'s flat chest is covered in a sexy sheen of body oil.`; + } else { + r += `${slave.slaveName}'s ${adjNoun} are covered in a sexy sheen of body oil.`; + } + break; + case "a toga": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s ${adjNoun} are too big to cover with ${his} toga, so ${he} leaves them hanging free.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName} is wearing ${his} toga so as to leave one ${slave.nipples} nipple bare.`; + } else { + r += `${slave.slaveName} is wearing ${his} toga so as to leave one breast bare.`; + } + break; + case "a huipil": + if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${noun} are so big that they pull up ${his} huipil uncomfortably high, so ${he} needs to fold it between them.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s huipil rests on ${his} flat chest.`; + } else { + r += `${slave.slaveName} is wearing ${his} huipil which accentuates ${his} ${adjNoun}.`; + } + break; + case "a slutty qipao": + r += `${slave.slaveName}'s qipao `; + if (slave.boobs > 12000) { + r += `can't contain the immense size of ${his} ${adjNoun}, so ${he} wears a modified variant that lets ${his} ${noun} hang free.`; + } else if (slave.boobs > 4000) { + r += `barely covers ${his} ${adjNoun}, it strains to contain their absurd size. Breast flesh spills from any gap it can find.`; + } else if (slave.boobs > 2000) { + r += `demurely covers ${his} ${adjNoun}, though it cannot conceal their absurd size.`; + } else if (slave.boobs < 300) { + r += `demurely hugs ${his} flat chest.`; + } else { + r += `demurely covers ${his} ${adjNoun}.`; + } + break; + case "uncomfortable straps": + r += `${slave.slaveName}'s slave `; + if (slave.boobs > 12000) { + r += `outfit includes a network of straps to support ${his} ${adjNoun}, radiating outwards from the steel rings around ${his} nipples.`; + } else if (slave.boobs > 2000) { + r += `outfit has special straps for ${his} ${adjNoun}: one strap down the front of each with steel rings to let ${his} nipples through, and a strap around the base of each, painfully squeezing ${his} ${noun} out to make them seem even bigger.`; + } else if (slave.boobs > 800) { + r += `outfit's straining straps restrain the flesh of ${his} ${adjNoun} like a string bikini, with steel rings to let ${his} nipples through.`; + } else if (slave.boobs < 300) { + r += `outfit's straps pass over ${his} flat chest like a string bikini, with steel rings to let ${his} ${slave.nipples} nipples through.`; + } else { + r += `outfit's straps pass over ${his} ${adjNoun} like a string bikini, with steel rings to let ${his} nipples through.`; + } + break; + case "shibari ropes": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} are restrained by ${V.showInches === 2 ? 'yards and yards' : 'meters and meters'} of rope.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} are tightly bound with rope, soft flesh pushing out from between them.`; + } else if (slave.boobs < 300) { + r += `flat chest is tightly bound with rope, drawing attention to ${his} flat chest.`; + } else { + r += `chest is tightly bound with rope.`; + } + break; + case "restrictive latex": + r += `${slave.slaveName}'s `; + if (slave.boobs > 2000) { + r += `${adjNoun} protrude through holes in ${his} latex suit, which are too small for them, painfully constricting ${him} and making them seem even bigger.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} protrude through holes in ${his} latex suit.`; + } else if (slave.boobs < 300) { + r += `${slave.nipples} nipples poke through holes in ${his} latex suit, since ${he} has nothing else protruding from ${his} chest.`; + } else { + r += `latex suit leaves ${his} chest bare.`; + } + break; + case "attractive lingerie": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them. They have disappeared completely under the immense quantity of breast flesh.`; + } else if (slave.boobs > 4000) { + r += `lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them.`; + } else if (slave.boobs > 800) { + r += `sturdy lace bra supports ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `pretty lace bra hugs ${his} flat chest.`; + } else { + r += `pretty lace bra accentuates ${his} ${adjNoun}.`; + } + break; + case "kitty lingerie": + r += `${slave.slaveName}'s lacy bra features a hole shaped liked a cat's head in the center of ${his} chest;`; if (slave.boobs > 12000) { - r += 'perfectly.'; + r += `${his} ${adjNoun} have stretched ${his} bra to the point that the hole is unrecognizable as anything feline.`; + } else if (slave.boobs > 4000) { + r += `the size of ${his} ${adjNoun} severely stretches out the hole's shape.`; + } else if (slave.boobs > 800) { + r += `the size of ${his} ${adjNoun} stretches out the hole's shape.`; + } else if (slave.boobs < 300) { + r += `it lies flat against ${his} body.`; + } else { + r += `the hole lies directly over ${his} cleavage.`; + } + break; + case "a succubus outfit": + r += `${slave.slaveName}'s corset ends just below ${his} ${slave.boobs < 300 ? 'non-existent' : ''} breasts, leaving them bare.`; + if (slave.boobs > 2000) { + r += ` It hugs ${his} tightly and comes up to right under where they start, forcing them to spill over and hide its upper half.`; + } else if (slave.boobs > 400) { + r += ` It hugs ${his} tightly and comes up to right under where they start, presenting them like a push-up bra.`; + } + break; + case "a slutty maid outfit": + r += `${slave.slaveName}'s maid dress stops below ${his} ${slave.boobs < 300 ? 'non-existent' : ''} breasts, but the outfit includes a thin white blouse`; + if (slave.boobs > 4000) { + r += ` that fails to even come close to covering ${his} ${adjNoun}.`; + } else if (slave.boobs > 2000) { + r += ` that covers them to just over ${his} nipples when ${he} pulls it up over them. It's pulled down by ${his} ${adjNoun} whenever ${he} moves.`; + } else if (slave.boobs > 800) { + r += ` that covers them to just over ${his} nipples, leaving a large area of deliciously unsupported and jiggling cleavage.`; + } else if (slave.boobs < 300) { + r += ` that hugs ${his} flat chest and lets ${his} ${slave.nipples} nipples protrude through the fabric.`; + } else { + r += ' to cover them.'; + } + break; + case "a nice maid outfit": + r += `${slave.slaveName}'s maid dress front is almost conservative, covering ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ' with a tent-like billow of white fabric.'; + } else if (slave.boobs > 6000) { + r += ' as best it can; it barely succeeds at its task, straining at the seams and allowing breast flesh to spill out of every available gap.'; + } else if (slave.boobs > 2000) { + r += ', though it cannot conceal their enormous mass.'; + } else if (slave.boobs < 300) { + r += `, though it does nothing to hide how flat ${he} is.`; + } else { + r += '.'; + } + break; + case "a fallen nuns habit": + r += `${slave.slaveName}'s latex habit includes a half-corset`; + if (slave.boobs > 20000) { + r += `, but it's completely invisible, being hidden under ${his} ${adjNoun}.`; + } else if (slave.boobs > 4000) { + r += `, but only the bottom edge is visible: the rest is swallowed up under ${his} ${adjNoun}.`; + } else if (slave.boobs > 800) { + r += ` to force ${his} ${adjNoun} up and forward, forming a lot of cleavage even though they're bare.`; + } else if (slave.boobs < 300) { + r += ` that tightly hugs ${his} ${adjNoun}.`; + } else { + r += ` to force ${his} ${adjNoun} up and forward.`; + } + break; + case "a chattel habit": + r += `${slave.slaveName}'s chattel habit's scapular covers ${his} shoulders`; + if (hasAnyArms(slave)) { + r += ` and arm`; + if (hasBothArms(slave)) { + r += `s`; + } + } + r += `, but is open in front, leaving ${his} `; + if (slave.boobs > 4000) { + r += `${noun} completely bare. It tucks into a golden belt, though this is buried under ${his} breasts.`; } else if (slave.boobs > 300) { - r += 'individually.'; + r += `boobs completely bare. It tucks into a golden belt, which is cinched up right under ${his} ${adjNoun}.`; + } else { + r += `${adjNoun} completely bare. It tucks into a golden belt cinched around ${his} middle torso.`; } - } else { - r += `is flat across ${his} chest.`; - } - break; - case "conservative clothing": - if (slave.boobs > 24000) { - r += `${slave.slaveName} is wearing a tent-like sweater tailored to cover ${his} ${adjNoun}.`; - } else if (slave.boobs > 12000) { - r += `${slave.slaveName} is wearing a massively oversized custom sweater since nothing else comes close to modestly covering ${his} ${adjNoun}. Even so, it's stretched taut struggling to contain their immense mass.`; - } else if (slave.boobs > 8000) { - r += `${slave.slaveName} is wearing an oversized sweater, since that's the only top that will come close to covering ${his} ${adjNoun}. Even so, it's stretched taut just struggling to cover ${his} nipples.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName} is wearing an oversized sweater, since that's the only top that will cover ${his} ${adjNoun}. Even so, it's stretched taut over them.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s blouse is professional, but can't conceal the gigantic dimensions of ${his} ${adjNoun}.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s blouse is professional, but can't conceal how big ${his} ${noun} are.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s blouse is professional and includes a pleated front over ${his} flat chest.`; - } else { - r += `${slave.slaveName}'s blouse is professional and includes a pleated front over ${his} ${adjNoun}.`; - } - break; - case "chains": - r += `${slave.slaveName} has a length of chain painfully `; - if (slave.boobs > 800) { - r += 'tightened around the base of each breast, forcing them out.'; - } else if (slave.boobs < 300) { - switch (slave.nipples) { - case "huge": - r += `wrapped around each of ${his} huge nipples, since they are the only things protruding from ${his} chest.`; + break; + case "a penitent nuns habit": + r += `If ${he} fails to hold ${his} torso totally still, the coarse cloth of ${his} top agonizingly scrapes across ${his} nipples, bare under ${his} habit.`; + break; + case "a string bikini": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s ${adjNoun} are so large that the little scraps of cloth intended for ${his} nipples can't really stay centered over them.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${adjNoun} constantly pull ${his} nipples out from under the tiny scrap of cloth that ${his} string bikini affords them.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} threaten to break out of ${his} straining string bikini top.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s string bikini top barely covers anything, affording only a tiny scrap of cloth for each nipple; not that there is much else to cover on ${his} ${adjNoun}.`; + } else { + r += `${slave.slaveName}'s string bikini top barely covers anything, affording only a tiny scrap of cloth for each nipple.`; + } + break; + case "a scalemail bikini": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s ${noun} are so large that it's a testament to ${his} scalemail top that it hasn't broken yet.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${adjNoun} constantly strain ${his} scalemail top.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s scalemail top contains ${his} ${adjNoun} well.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s scalemail bikini top easily covers everything, as there is not much to cover on ${his} ${adjNoun}.`; + } else { + r += `${slave.slaveName}'s scalemail bikini top covers everything, while still flaunting it.`; + } + break; + case "striped panties": + if (slave.boobs < 300) { + r += `${slave.slaveName}'s ${adjNoun} is completely bare.`; + } else { + r += `${slave.slaveName}'s ${adjNoun} are completely bare.`; + } + break; + case "clubslut netting": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} hang out the holes they tore in ${his} clubslut netting.`; + } else if (slave.boobs > 800) { + r += `clubslut netting is stretched ${slave.boobs > 4000 ? 'to the breaking point' : ''} by ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `clubslut netting hugs ${his} ${adjNoun}.`; + } else { + r += `clubslut netting hugs ${his} ${adjNoun} tightly.`; + } + break; + case "a cheerleader outfit": + r += `${slave.slaveName}'s cheerleader top `; + if (slave.boobs > 12000) { + r += `can't support ${his} giant bust and is lost beneath ${his} ${adjNoun}.`; + } else if (slave.boobs > 4000) { + r += `is strongly engineered, but it can barely support ${his} ${adjNoun}.`; + } else if (slave.boobs > 800) { + r += `gives ${him} an acre of cleavage.`; + } else if (slave.boobs < 300) { + r += `tightly clings to ${his} flat chest, prominently displaying ${his} ${slave.nipples} nipples.`; + } else { + r += `does its best to make ${his} ${adjNoun} look bigger than they are.`; + } + break; + case "cutoffs and a t-shirt": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${noun} are so huge that ${his} t-shirt rests pathetically atop their mass.`; + } else if (slave.boobs > 4000) { + r += `${noun} are so big that ${his} t-shirt barely comes down over ${his} nipples, leaving a lot of underboob hanging out.`; + } else if (slave.boobs > 1200) { + r += `t-shirt is held out and away from ${his} midriff by ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `t-shirt is tied across ${his} flat chest to bare ${his} midriff.`; + } else { + r += `t-shirt is tied up to bare ${his} midriff.`; + } + break; + case "spats and a tank top": + r += `${slave.slaveName}'s `; + if (slave.boobs > 20000) { + r += `tank top lies atop ${his} massive rack.`; + } else if (slave.boobs > 12000) { + r += `tank top just barely covers ${his} nipples despite its fairly large size.`; + } else if (slave.boobs > 4000) { + r += `tank top can never completely cover ${his} ${adjNoun}, giving varying amounts of underboob as ${he} moves about.`; + } else if (slave.boobs > 1200) { + r += `midriff is open to see as ${his} ${adjNoun} makes ${his} tank top ride up.`; + } else { + r += `tank top is tight against ${his} ${slave.boobs < 300 ? 'flat' : ''} chest.`; + } + break; + case "a slutty outfit": + r += `${slave.slaveName} `; + if (slave.boobs > 12000) { + r += `has given up trying to contain ${his} immense bust and is now choosing outfits that allow ${his} breasts to hang free.`; + } else if (slave.boobs > 4000) { + r += `has to be careful choosing slutty outfits that can restrain ${his} ${adjNoun}.`; + } else if (slave.boobs > 800) { + r += `has to be careful choosing slutty outfits that can handle ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `chooses slutty outfits that go well on a ${girl} with no tits.`; + } else { + r += `chooses slutty outfits that accentuate ${his} ${noun}.`; + } + break; + case "a halter top dress": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s ${adjNoun} are far too big for ${his} dress to contain; instead it has been redesigned to allow them to hang freely.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s ${adjNoun} are spill out from every available space in ${his} beautiful halter top dress.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${adjNoun} are bulging inside a beautiful halter top dress.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s is draped inside a beautiful halter top dress, making ${his} ${adjNoun} the center of attention.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName} is wearing a beautiful silky halter top dress, almost as if it was sculpted to hug ${his} flat chest.`; + } else { + r += `${slave.slaveName} is wearing a beautiful silky halter top dress, almost as if it was sculpted to match ${his} frame.`; + } + break; + case "a ball gown": + if (slave.boobs > 12000) { + r += `${slave.slaveName} fabulous silken ball gown is designed to allow ${his} oversized breasts to hang free.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName} somehow managed to cram the immense mass of ${his} breasts inside a fabulous silken ball gown. They spill out of every available gap.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName} somehow managed to fit the enormous mass of ${his} breasts inside a fabulous silken ball gown.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s fabulous silken ball gown is carefully tailored, beautifully covering yet enhancing ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s fabulous silken ball gown is carefully tailored, beautifully caressing ${his} flat chest.`; + } else { + r += `${slave.slaveName}'s draped inside a fabulous silken ball gown.`; + } + break; + case "slutty business attire": + r += `${slave.slaveName}'s suit jacket `; + if (slave.boobs > 12000) { + r += `and blouse are both open in front, leaving ${his} boobs bare, since there's no way ${he} could button ${his} clothes over ${his} ${adjNoun}.`; + } else if (slave.boobs > 2000) { + r += `is open in front, and ${his} straining blouse barely restrains ${his} ${adjNoun}.`; + } else if (slave.boobs < 300) { + r += `is open in front, tightly hugging ${his} flat chest and prominently displaying ${his} ${slave.nipples} nipples.`; + } else { + r += `is open in front, and ${his} blouse barely covers ${his} ${adjNoun}.`; + } + break; + case "nice business attire": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `tits are so immense that ${his} specially tailored blouse and jacket are incapable of being buttoned up.`; + } else if (slave.boobs > 4000) { + r += `tits are so huge that they prevent ${his} jacket from closing. Every motion ${he} makes threatens to turn ${his} blouse buttons into ballistics.`; + } else if (slave.boobs > 2000) { + r += `tits are so big that they strain even ${his} specially tailored blouse and jacket.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} strain against ${his} tailored blouse and jacket.`; + } else if (slave.boobs < 300) { + r += `suit jacket is fitted tightly to ${his} flat chest.`; + } else { + r += `suit jacket conceals a flattering bra that lifts and presents ${his} bosom.`; + } + break; + case "a comfortable bodysuit": + if (slave.boobs < 300) { + r += `${slave.slaveName}'s bodysuit is so tightly form-fitting that it clings to ${his} flat chest and prominently displays ${his} ${slave.nipples} nipples.`; + } else { + r += `${slave.slaveName}'s bodysuit is so tightly form-fitting that ${his} ${adjNoun} are individually hugged and supported by the material.`; + } + break; + case "a latex catsuit": + if (slave.boobs < 300) { + r += `${slave.slaveName}'s latex catsuit fits ${him} like a second skin, showing off every detail of ${his} ${slave.nipples} nipples and distinct lack of breasts.`; + } else { + r += `${slave.slaveName}'s latex catsuit fits ${him} like a second skin, showing off every detail of ${his} nipples and ${adjNoun}.`; + } + break; + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a mounty outfit": + case "lederhosen": + case "a red army uniform": + case "a police uniform": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s tits are so immense that ${his} specially tailored shirt and tunic are incapable of being buttoned up.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s tits are so huge that they prevent ${his} tunic from closing. Every motion threatens to turn ${his} shirt buttons into shrapnel.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s tits are so big that they strain even ${his} specially tailored shirt and tunic.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} strain against ${his} tailored shirt and tunic.`; + } else { + r += `${slave.slaveName} cuts a dashing figure in ${his} tunic. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; + } + break; + case "a long qipao": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s tits are so immense that ${his} dress is on the verge of bursting open.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s tits are so huge that ${his} dress is on the verge of bursting open.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${adjNoun} are so big that they strain even ${his} dress greatly.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; + } else { + r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; + } + break; + case "battlearmor": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s tits are so immense that ${his} armor is on the verge of bursting open.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s tits are so huge that ${his} armor is on the verge of bursting open.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s tits are so big that they armor even ${his} dress greatly.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} strain against ${his} armor.`; + } else { + r += `${slave.slaveName} cuts a dashing figure in ${his} armor. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; + } + break; + case "Imperial Plate": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s massive tits create almost comical balloons at the front of ${his} ultra-heavy armor, undeniably gargantuan even underneath the tank-like armor.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s huge breasts each require an individual plate on ${his} ultra-heavy Imperial armor.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s fat boobs clearly swell against the front of ${his} ultra-heavy armor.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} create a noticeable swell at the front of ${his} ultra-heavy armor.`; + } else { + r += `${slave.slaveName}'s chest appears perfectly flat beneath ${his} ultra-heavy Imperial armor. ${slave.boobs < 400 ? `You can't even notice ${his} breasts, elegantly concealed by the massive plating.` : ''}`; + } + break; + case "a dirndl": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s tits are so immense that ${his} dress are incapable of being laced up.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s tits are so huge that they prevent ${his} dress from being laced up.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s tits are so big that they strain ${his} dress.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; + } else { + r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; + } + break; + case "a biyelgee costume": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s tits are so immense that ${his} dress are incapable of being buttoned up.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName}'s tits are so huge that they prevent ${his} dress from being buttoned up.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s tits are so big that they strain ${his} dress.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; + } else { + r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; + } + break; + case "a nice nurse outfit": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} are too big for ${his} scrub top, it rests uselessly atop ${his} bust.`; + } else if (slave.boobs > 4000) { + r += `${adjNoun} strain against ${his} scrub top, it only manages to cover ${his} nipples.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} strain against ${his} scrub top, filling it out completely despite its utilitarian cut.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} nicely fill out ${his} scrub top, despite its utilitarian cut.`; + } else if (slave.boobs < 300) { + r += `scrub top tightly hugs ${his} flat chest.`; + } else { + r += `${adjNoun} are hidden beneath ${his} scrub top.`; + } + break; + case "a mini dress": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `mini dress is pulled down to allow ${his} immense breasts to hang free.`; + } else if (slave.boobs > 4000) { + r += `${adjNoun} stretch ${his} custom tailored dress to its absolute limit.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} stretch taut against ${his} dress, leaving nothing to the imagination.`; + } else if (slave.boobs < 300) { + r += `dress tightly hugs ${his} flat chest, prominently displaying ${his} ${slave.nipples} nipples though the fabric.`; + } else { + r += `${adjNoun} stretches taut against ${his} dress, leaving little to the imagination.`; + } + break; + case "an apron": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `breasts are so immense that ${his} apron can barely contain them, and ${he} has to be careful not to expose one or both of ${his} ${slave.nipples} nipples as ${he} moves.`; + } else if (slave.boobs > 4000) { + r += `${adjNoun} fill out ${his} strained apron, occasionally leaving the sides of ${his} ${slave.nipples} nipples bare.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} fill out ${his} stretched apron, only just managing to fully cover ${his} ${slave.nipples} nipples.`; + } else if (slave.boobs < 300) { + r += `apron lies flatly against ${his} small chest and ${slave.nipples} nipples.`; + } else { + r += `${adjNoun} fill out ${his} apron, which is strategically worn to cover ${his} ${slave.nipples} nipples.`; + } + break; + case "overalls": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} are so immense that ${his} overalls can barely contain them, and ${he} has to be careful not to expose one or both of ${his} ${slave.nipples} nipples as ${he} moves.`; + } else if (slave.boobs > 4000) { + r += `${adjNoun} peek out from the sides of ${his} strained overalls, often exposing the sides of ${his} ${slave.nipples} nipples.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} fill out ${his} stretched overalls, only just managing to fully cover ${his} ${slave.nipples} nipples.`; + } else if (slave.boobs < 300) { + r += `overalls lie flatly against ${his} small chest and ${slave.nipples} nipples.`; + } else { + r += `overalls are filled out by ${his} ${adjNoun}, offering tantalizing views of their sides.`; + } + break; + case "a leotard": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} are so big that even ${his} specially tailored leotard cannot really support them.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} stretch the spandex of ${his} leotard taut across their width.`; + } else if (slave.boobs < 300) { + r += `leotard tightly hugs ${his} ${adjNoun}, prominently displaying ${his} ${slave.nipples} nipples though the spandex.`; + } else { + r += `${adjNoun} is flattered by ${his} leotard.`; + } + break; + case "a monokini": + r += `The shoulder straps of ${slave.slaveName}'s monokini cross over in the center of ${his} chest, leaving the rest of ${his} ${adjNoun} totally bare.`; + break; + case "a cybersuit": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are clearly visible.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are nearly visible.`; + } else if (slave.boobs < 300) { + r += `${adjNoun} is hugged tightly by the bodysuit, ${his} nipples pushing against the material.`; + } else { + r += `${adjNoun} are hugged tightly by the bodysuit, ${his} nipples pushing against the material.`; + } + break; + case "a tight Imperial bodysuit": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} stretch out the bodysuit massively, comically distending and warping your crest against the front.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are nearly visible, poking out against your emblazoned crest.`; + } else if (slave.boobs < 300) { + r += `${adjNoun} is hugged tightly by the bodysuit, ${his} sloping against your emblazoned crest on the front.`; + } else { + r += `${adjNoun} are hugged tightly by the bodysuit, elegantly accentuating the noble design of your family crest emblazoned on the front.`; + } + break; + case "a bunny outfit": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `${adjNoun} are so immense that ${his} teddy can't contain them; it's pulled down to allow them to hang free.`; + } else if (slave.boobs > 6000) { + r += `${adjNoun} are so huge that ${his} teddy conceals special stays to keep them from popping out at the slightest movement. Breast flesh massively overflows ${his} top.`; + } else if (slave.boobs > 2000) { + r += `${adjNoun} are so big that ${his} teddy conceals special stays to keep them from popping out at the slightest movement.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} are perpetually on the verge of spilling out of ${his} top.`; + } else if (slave.boobs < 300) { + r += `teddy tightly clings to ${his} flat chest somehow making ${him} look even flatter.`; + } else { + r += `teddy conceals cunning stays designed to make ${his} bosom look considerably bigger than it actually is.`; + } + break; + case "attractive lingerie for a pregnant woman": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `top has been retailored to fit ${his} enormous bust. The ample breast flesh almost completely consumes ${his} silken lingerie. ${His} silken vest is barely visible behind ${his} massive tits.`; + } else if (slave.boobs > 4000) { + r += `${adjNoun} dwarf ${his} tiny top. It barely manages to cover ${his} nipples. ${His} silken vest is parted to either side of ${his} breasts.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} spill out from above and below ${his} tight top.`; + } else if (slave.boobs < 300) { + r += `top tightly clings to ${his} flat chest.`; + } else { + r += `top tightly clings to ${his} chest.`; + } + break; + case "a maternity dress": + r += `${slave.slaveName}'s `; + if (slave.boobs > 12000) { + r += `low cut dress can't contain ${his} ${adjNoun}, so ${he} keeps it pulled up just below ${his} bust.`; + } else if (slave.boobs > 4000) { + r += `low cut dress can barely conceal ${his} ${adjNoun}. They bulge over the top and create a deep valley of cleavage.`; + } else if (slave.boobs > 1000) { + r += `dress is low cut and reveals a large amount of cleavage.`; + } else if (slave.boobs < 300) { + r += `dress is low cut, tightly hugs ${his} flat chest and ends just above ${his} nipples.`; + } else { + r += `dress is low cut and ends just above ${his} nipples.`; + } + break; + case "a courtesan dress": + r += `${slave.slaveName}'s shoulderless dress includes a half-corset`; + if (slave.boobs > 20000) { + r += `, but it's completely forgotten under ${his} ${adjNoun} and bottomless cleavage.`; + } else if (slave.boobs > 4000) { + r += `, but it's barely noticeable under ${his} ${adjNoun} and impressive cleavage.`; + } else if (slave.boobs > 800) { + r += ` to force ${his} ${adjNoun} up and forward, forming a lot of cleavage.`; + } else if (slave.boobs < 300) { + r += ` that tightly hugs ${his} ${adjNoun}.`; + } else { + r += ` to force ${his} ${adjNoun} up and forward.`; + } + break; + case "a bimbo outfit": + r += `${slave.slaveName}'s undersized top leaves ${his} lacy bra entirely exposed`; + if (slave.boobs > 10000) { + r += ` and lends no support to the overtaxed undergarment in its struggles to contain ${his} bouncy behemoths.`; + } else if (slave.boobs > 4000) { + r += ` as it struggles to lend any support to ${his} heaving chest.`; + } else if (slave.boobs > 1000) { + r += ` as it tightly caresses ${his} ${adjNoun}.`; + } else { + r += `.`; + } + break; + case "stretch pants and a crop-top": + if (slave.boobs > 20000) { + r += `${slave.slaveName} is wearing a massively oversized custom crop-top designed to handle ${his} monumental tits. Even so, it's stretched taut just struggling to cover ${his} nipples, causing acres of breast flesh to spill out from under and above it.`; + } else if (slave.boobs > 10000) { + r += `${slave.slaveName}'s oversized crop-top struggles to contain even half of ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage. Every motion risks a nipple popping free.`; + } else if (slave.boobs > 8000) { + r += `${slave.slaveName}'s oversized crop-top struggles to contain ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; + } else if (slave.boobs > 4000) { + r += `${slave.slaveName} has swapped up to the largest crop-top available. Even so, it barely covers them and creates plenty of cleavage.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s crop-top struggles to contain ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; + } else if (slave.boobs > 800) { + r += `${slave.slaveName}'s crop-top tightly hugs ${his} ${adjNoun} creating plenty of cleavage.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName}'s crop-top tightly clings to ${his} flat chest.`; + } else { + r += `${slave.slaveName}'s crop-top tightly hugs ${his} ${adjNoun}.`; + } + switch (slave.sexualFlaw) { + case "neglectful": + r += ' "All For You" '; + break; + case "cum addict": + r += ' "Cum \'ere Sexy" '; + break; + case "anal addict": + r += ' "Reach Around Back" '; + break; + case "attention whore": + r += ' "Will Flash For Attention" '; + break; + case "breast growth": + r += ' "Could Be Bigger" '; + break; + case "abusive": + r += ' "Fondlers May Be Slapped" '; + break; + case "malicious": + r += ' "Careful, I Bite" '; break; - case "inverted": - r += `wrapped tightly across ${his} flat chest, through the cleft of ${his} inverted nipples.`; + case "self hating": + r += ' "Rough \'em Up" '; + break; + case "breeder": + r += ' "Drink Deep" '; break; default: - r += `wrapped tightly across ${his} flat chest, directly over ${his} ${slave.nipples} nipples.`; - } - } else { - r += `looped under ${his} chest, forcing ${his} breasts up.`; - } - break; - case "Western clothing": - r += `${slave.slaveName}'s flannel shirt `; - if (slave.boobs > 2000) { - r += `can't begin to contain ${his} ${adjNoun}, so ${he}'s just tied it under them for support.`; - } else if (slave.boobs > 800) { - r += `can't close over ${his} ${adjNoun}, so ${he}'s just buttoned it up to where they start and let them fill it out above that.`; - } else if (slave.boobs < 300) { - r += `tightly hugs ${his} flat chest.`; - } else { - r += `rests comfortably over ${his} ${adjNoun}.`; - } - break; - case "body oil": - if (slave.boobs < 300) { - r += `${slave.slaveName}'s flat chest is covered in a sexy sheen of body oil.`; - } else { - r += `${slave.slaveName}'s ${adjNoun} are covered in a sexy sheen of body oil.`; - } - break; - case "a toga": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s ${adjNoun} are too big to cover with ${his} toga, so ${he} leaves them hanging free.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName} is wearing ${his} toga so as to leave one ${slave.nipples} nipple bare.`; - } else { - r += `${slave.slaveName} is wearing ${his} toga so as to leave one breast bare.`; - } - break; - case "a huipil": - if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${noun} are so big that they pull up ${his} huipil uncomfortably high, so ${he} needs to fold it between them.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s huipil rests on ${his} flat chest.`; - } else { - r += `${slave.slaveName} is wearing ${his} huipil which accentuates ${his} ${adjNoun}.`; - } - break; - case "a slutty qipao": - r += `${slave.slaveName}'s qipao `; - if (slave.boobs > 12000) { - r += `can't contain the immense size of ${his} ${adjNoun}, so ${he} wears a modified variant that lets ${his} ${noun} hang free.`; - } else if (slave.boobs > 4000) { - r += `barely covers ${his} ${adjNoun}, it strains to contain their absurd size. Breast flesh spills from any gap it can find.`; - } else if (slave.boobs > 2000) { - r += `demurely covers ${his} ${adjNoun}, though it cannot conceal their absurd size.`; - } else if (slave.boobs < 300) { - r += `demurely hugs ${his} flat chest.`; - } else { - r += `demurely covers ${his} ${adjNoun}.`; - } - break; - case "uncomfortable straps": - r += `${slave.slaveName}'s slave `; - if (slave.boobs > 12000) { - r += `outfit includes a network of straps to support ${his} ${adjNoun}, radiating outwards from the steel rings around ${his} nipples.`; - } else if (slave.boobs > 2000) { - r += `outfit has special straps for ${his} ${adjNoun}: one strap down the front of each with steel rings to let ${his} nipples through, and a strap around the base of each, painfully squeezing ${his} ${noun} out to make them seem even bigger.`; - } else if (slave.boobs > 800) { - r += `outfit's straining straps restrain the flesh of ${his} ${adjNoun} like a string bikini, with steel rings to let ${his} nipples through.`; - } else if (slave.boobs < 300) { - r += `outfit's straps pass over ${his} flat chest like a string bikini, with steel rings to let ${his} ${slave.nipples} nipples through.`; - } else { - r += `outfit's straps pass over ${his} ${adjNoun} like a string bikini, with steel rings to let ${his} nipples through.`; - } - break; - case "shibari ropes": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} are restrained by ${V.showInches === 2 ? 'yards and yards' : 'meters and meters'} of rope.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} are tightly bound with rope, soft flesh pushing out from between them.`; - } else if (slave.boobs < 300) { - r += `flat chest is tightly bound with rope, drawing attention to ${his} flat chest.`; - } else { - r += `chest is tightly bound with rope.`; - } - break; - case "restrictive latex": - r += `${slave.slaveName}'s `; - if (slave.boobs > 2000) { - r += `${adjNoun} protrude through holes in ${his} latex suit, which are too small for them, painfully constricting ${him} and making them seem even bigger.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} protrude through holes in ${his} latex suit.`; - } else if (slave.boobs < 300) { - r += `${slave.nipples} nipples poke through holes in ${his} latex suit, since ${he} has nothing else protruding from ${his} chest.`; - } else { - r += `latex suit leaves ${his} chest bare.`; - } - break; - case "attractive lingerie": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them. They have disappeared completely under the immense quantity of breast flesh.`; - } else if (slave.boobs > 4000) { - r += `lace bra cannot cover the whole breast; its cups are half-moon shaped, and designed to offer what support they can to the bottom of them.`; - } else if (slave.boobs > 800) { - r += `sturdy lace bra supports ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `pretty lace bra hugs ${his} flat chest.`; - } else { - r += `pretty lace bra accentuates ${his} ${adjNoun}.`; - } - break; - case "kitty lingerie": - r += `${slave.slaveName}'s lacy bra features a hole shaped liked a cat's head in the center of ${his} chest;`; - if (slave.boobs > 12000) { - r += `${his} ${adjNoun} have stretched ${his} bra to the point that the hole is unrecognizable as anything feline.`; - } else if (slave.boobs > 4000) { - r += `the size of ${his} ${adjNoun} severely stretches out the hole's shape.`; - } else if (slave.boobs > 800) { - r += `the size of ${his} ${adjNoun} stretches out the hole's shape.`; - } else if (slave.boobs < 300) { - r += `it lies flat against ${his} body.`; - } else { - r += `the hole lies directly over ${his} cleavage.`; - } - break; - case "a succubus outfit": - r += `${slave.slaveName}'s corset ends just below ${his} ${slave.boobs < 300 ? 'non-existent' : ''} breasts, leaving them bare.`; - if (slave.boobs > 2000) { - r += ` It hugs ${his} tightly and comes up to right under where they start, forcing them to spill over and hide its upper half.`; - } else if (slave.boobs > 400) { - r += ` It hugs ${his} tightly and comes up to right under where they start, presenting them like a push-up bra.`; - } - break; - case "a slutty maid outfit": - r += `${slave.slaveName}'s maid dress stops below ${his} ${slave.boobs < 300 ? 'non-existent' : ''} breasts, but the outfit includes a thin white blouse`; - if (slave.boobs > 4000) { - r += ` that fails to even come close to covering ${his} ${adjNoun}.`; - } else if (slave.boobs > 2000) { - r += ` that covers them to just over ${his} nipples when ${he} pulls it up over them. It's pulled down by ${his} ${adjNoun} whenever ${he} moves.`; - } else if (slave.boobs > 800) { - r += ` that covers them to just over ${his} nipples, leaving a large area of deliciously unsupported and jiggling cleavage.`; - } else if (slave.boobs < 300) { - r += ` that hugs ${his} flat chest and lets ${his} ${slave.nipples} nipples protrude through the fabric.`; - } else { - r += ' to cover them.'; - } - break; - case "a nice maid outfit": - r += `${slave.slaveName}'s maid dress front is almost conservative, covering ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ' with a tent-like billow of white fabric.'; - } else if (slave.boobs > 6000) { - r += ' as best it can; it barely succeeds at its task, straining at the seams and allowing breast flesh to spill out of every available gap.'; - } else if (slave.boobs > 2000) { - r += ', though it cannot conceal their enormous mass.'; - } else if (slave.boobs < 300) { - r += `, though it does nothing to hide how flat ${he} is.`; - } else { - r += '.'; - } - break; - case "a fallen nuns habit": - r += `${slave.slaveName}'s latex habit includes a half-corset`; - if (slave.boobs > 20000) { - r += `, but it's completely invisible, being hidden under ${his} ${adjNoun}.`; - } else if (slave.boobs > 4000) { - r += `, but only the bottom edge is visible: the rest is swallowed up under ${his} ${adjNoun}.`; - } else if (slave.boobs > 800) { - r += ` to force ${his} ${adjNoun} up and forward, forming a lot of cleavage even though they're bare.`; - } else if (slave.boobs < 300) { - r += ` that tightly hugs ${his} ${adjNoun}.`; - } else { - r += ` to force ${his} ${adjNoun} up and forward.`; - } - break; - case "a chattel habit": - r += `${slave.slaveName}'s chattel habit's scapular covers ${his} shoulders`; - if (hasAnyArms(slave)) { - r += ` and arm`; - if (hasBothArms(slave)) { - r += `s`; + if (slave.fetishKnown === 1) { + switch (slave.fetish) { + case "submissive": + r += ' "Take Me" '; + break; + case "cumslut": + r += ' "Splash Zone" '; + break; + case "humiliation": + r += ' "Flasher" '; + break; + case "buttslut": + r += ' "Reach Around" '; + break; + case "boobs": + r += ' "Your Hands Here" '; + break; + case "sadist": + r += ' "Taste the Pain" '; + break; + case "masochist": + r += ' "Be Rough" '; + break; + case "dom": + r += ' "Queen Bitch" '; + break; + case "pregnancy": + r += ' "Milk Me" '; + break; + case "mindbroken": + r += ' "Free Slut" '; + break; + default: + r += ` ${App.Desc.inscrip(slave)} `; + break; + } + } else { + r += ` ${App.Desc.inscrip(slave)} `; + } } - } - r += `, but is open in front, leaving ${his} `; - if (slave.boobs > 4000) { - r += `${noun} completely bare. It tucks into a golden belt, though this is buried under ${his} breasts.`; - } else if (slave.boobs > 300) { - r += `boobs completely bare. It tucks into a golden belt, which is cinched up right under ${his} ${adjNoun}.`; - } else { - r += `${adjNoun} completely bare. It tucks into a golden belt cinched around ${his} middle torso.`; - } - break; - case "a penitent nuns habit": - r += `If ${he} fails to hold ${his} torso totally still, the coarse cloth of ${his} top agonizingly scrapes across ${his} nipples, bare under ${his} habit.`; - break; - case "a string bikini": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s ${adjNoun} are so large that the little scraps of cloth intended for ${his} nipples can't really stay centered over them.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${adjNoun} constantly pull ${his} nipples out from under the tiny scrap of cloth that ${his} string bikini affords them.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} threaten to break out of ${his} straining string bikini top.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s string bikini top barely covers anything, affording only a tiny scrap of cloth for each nipple; not that there is much else to cover on ${his} ${adjNoun}.`; - } else { - r += `${slave.slaveName}'s string bikini top barely covers anything, affording only a tiny scrap of cloth for each nipple.`; - } - break; - case "a scalemail bikini": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s ${noun} are so large that it's a testament to ${his} scalemail top that it hasn't broken yet.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${adjNoun} constantly strain ${his} scalemail top.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s scalemail top contains ${his} ${adjNoun} well.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s scalemail bikini top easily covers everything, as there is not much to cover on ${his} ${adjNoun}.`; - } else { - r += `${slave.slaveName}'s scalemail bikini top covers everything, while still flaunting it.`; - } - break; - case "striped panties": - if (slave.boobs < 300) { - r += `${slave.slaveName}'s ${adjNoun} is completely bare.`; - } else { + r += `is written across ${his} chest in large, vibrant letters.`; + break; + case "harem gauze": + r += `${slave.slaveName}'s harem girl outfit `; + if (slave.boobs > 12000) { + r += `lets ${his} ${adjNoun} rest beneath`; + } else if (slave.boobs > 800) { + r += `lets ${his} ${adjNoun} swing free beneath`; + } else if (slave.boobs < 300) { + r += `gently covers ${his} flat chest with`; + } else { + r += `only covers ${his} ${adjNoun} with`; + } + r += ` a thin film of gauze.`; + break; + case "a slutty nurse outfit": + r += `${slave.slaveName}'s jacket `; + if (slave.boobs > 4000) { + r += `closes beneath ${his} ${adjNoun}, leaving almost everything visible.`; + } else if (slave.boobs > 800) { + r += `pushes ${his} ${adjNoun} together to form some great cleavage.`; + } else if (slave.boobs < 300) { + r += `tightly hugs ${his} flat chest, since it has no breasts to form cleavage with.`; + } else { + r += `pushes ${his} ${adjNoun} together to form as much cleavage as possible.`; + } + break; + case "a schoolgirl outfit": + r += `${slave.slaveName}'s `; + if (slave.boobs > 4000) { + r += `${adjNoun} are too big for ${his} blouse, so ${he}'s tied it under them; they're so huge that it's buried under them.`; + } else if (slave.boobs > 800) { + r += `${adjNoun} are too big for ${his} blouse, so ${he}'s tied it under them and left them totally bare.`; + } else if (slave.boobs < 300) { + r += `blouse tightly hugs ${his} flat chest.`; + } else { + r += `blouse only barely covers ${his} ${adjNoun}.`; + } + break; + case "a kimono": + r += `${slave.slaveName}'s kimono `; + if (slave.boobs > 12000) { + r += `can't cover ${his} ${adjNoun}, so ${he} leaves it hanging loose; allowing them to hang freely.`; + } else if (slave.boobs > 4000) { + r += `barely covers ${his} ${adjNoun}. It reveals most of ${his} chest, just covering the outer edges of ${his} breasts and their nipples.`; + } else if (slave.boobs > 2000) { + r += `demurely covers ${his} ${adjNoun}, though it cannot conceal their absurd size.`; + } else if (slave.boobs < 300) { + r += `demurely rests over ${his} ${adjNoun}.`; + } else { + r += `demurely covers ${his} ${adjNoun}.`; + } + break; + case "battledress": + if (slave.boobs > 12000) { + r += `${slave.slaveName}'s ${adjNoun} are barely supported by a specially engineered, space-age sports bra.`; + } else if (slave.boobs > 2000) { + r += `${slave.slaveName}'s ${adjNoun} are supported by a specially engineered, space-age sports bra under ${his} tank top.`; + } else if (slave.boobs < 300) { + r += `${slave.slaveName} is flat as an ironing board; ${he} wears ${his} tank top without a bra underneath.`; + } else { + r += `${slave.slaveName}'s ${adjNoun} are supported by a sports bra under ${his} tank top.`; + } + break; + case "slutty jewelry": + r += `${slave.slaveName}'s bangles include a `; + if (slave.boobs > 2000) { + r += `thin chain that runs under ${his} ${adjNoun}, disappearing entirely.`; + } else if (slave.boobs > 800) { + r += `thin chain that runs under ${his} ${adjNoun}, appearing and disappearing enticingly when ${he} moves.`; + } else if (slave.boobs < 300) { + r += `thin chain that runs across ${his} ${adjNoun}.`; + } else { + r += `light chain that loops under ${his} ${adjNoun}.`; + } + break; + case "a burqa": + r += `${slave.slaveName}'s burqa entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a tube top and thong": + case "a tube top": + case "leather pants and a tube top": + r += `${slave.slaveName}'s tube top entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a button-up shirt and panties": + case "a button-up shirt": + case "a t-shirt": + case "a t-shirt and thong": + case "a t-shirt and panties": + case "sport shorts and a t-shirt": + case "a t-shirt and jeans": + r += `${slave.slaveName}'s shirt entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + r += `${slave.slaveName}'s over-sized shirt entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += `, the fabric easily stretches to cover ${his} expansive mounds of flesh.`; + } else if (slave.boobs > 8000) { + r += `, the fabric easily covers ${his} absurdly-sized breasts.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a thong": + case "a skimpy loincloth": + case "boyshorts": + case "cutoffs": + case "leather pants": + case "panties": + case "jeans": + case "sport shorts": r += `${slave.slaveName}'s ${adjNoun} are completely bare.`; - } - break; - case "clubslut netting": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} hang out the holes they tore in ${his} clubslut netting.`; - } else if (slave.boobs > 800) { - r += `clubslut netting is stretched ${slave.boobs > 4000 ? 'to the breaking point' : ''} by ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `clubslut netting hugs ${his} ${adjNoun}.`; - } else { - r += `clubslut netting hugs ${his} ${adjNoun} tightly.`; - } - break; - case "a cheerleader outfit": - r += `${slave.slaveName}'s cheerleader top `; - if (slave.boobs > 12000) { - r += `can't support ${his} giant bust and is lost beneath ${his} ${adjNoun}.`; - } else if (slave.boobs > 4000) { - r += `is strongly engineered, but it can barely support ${his} ${adjNoun}.`; - } else if (slave.boobs > 800) { - r += `gives ${him} an acre of cleavage.`; - } else if (slave.boobs < 300) { - r += `tightly clings to ${his} flat chest, prominently displaying ${his} ${slave.nipples} nipples.`; - } else { - r += `does its best to make ${his} ${adjNoun} look bigger than they are.`; - } - break; - case "cutoffs and a t-shirt": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${noun} are so huge that ${his} t-shirt rests pathetically atop their mass.`; - } else if (slave.boobs > 4000) { - r += `${noun} are so big that ${his} t-shirt barely comes down over ${his} nipples, leaving a lot of underboob hanging out.`; - } else if (slave.boobs > 1200) { - r += `t-shirt is held out and away from ${his} midriff by ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `t-shirt is tied across ${his} flat chest to bare ${his} midriff.`; - } else { - r += `t-shirt is tied up to bare ${his} midriff.`; - } - break; - case "spats and a tank top": - r += `${slave.slaveName}'s `; - if (slave.boobs > 20000) { - r += `tank top lies atop ${his} massive rack.`; - } else if (slave.boobs > 12000) { - r += `tank top just barely covers ${his} nipples despite its fairly large size.`; - } else if (slave.boobs > 4000) { - r += `tank top can never completely cover ${his} ${adjNoun}, giving varying amounts of underboob as ${he} moves about.`; - } else if (slave.boobs > 1200) { - r += `midriff is open to see as ${his} ${adjNoun} makes ${his} tank top ride up.`; - } else { - r += `tank top is tight against ${his} ${slave.boobs < 300 ? 'flat' : ''} chest.`; - } - break; - case "a slutty outfit": - r += `${slave.slaveName} `; - if (slave.boobs > 12000) { - r += `has given up trying to contain ${his} immense bust and is now choosing outfits that allow ${his} breasts to hang free.`; - } else if (slave.boobs > 4000) { - r += `has to be careful choosing slutty outfits that can restrain ${his} ${adjNoun}.`; - } else if (slave.boobs > 800) { - r += `has to be careful choosing slutty outfits that can handle ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `chooses slutty outfits that go well on a ${girl} with no tits.`; - } else { - r += `chooses slutty outfits that accentuate ${his} ${noun}.`; - } - break; - case "a slave gown": - r += `${slave.slaveName}'s slave gown `; - if (slave.boobs > 12000) { - r += `is no longer able to cover ${his} ${adjNoun}. Instead, it has been redesigned to draw the eye to them.`; - } else if (slave.boobs > 4000) { - r += `is carefully engineered and is somehow able to cover the enormous mass of ${his} breasts.`; - } else if (slave.boobs > 800) { - r += `is carefully tailored, tastefully covering yet enhancing ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `is carefully tailored to closely hug ${his} flat chest.`; - } else { - r += `subtly accentuates ${his} ${noun}.`; - } - break; - case "a halter top dress": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s ${adjNoun} are far too big for ${his} dress to contain; instead it has been redesigned to allow them to hang freely.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s ${adjNoun} are spill out from every available space in ${his} beautiful halter top dress.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${adjNoun} are bulging inside a beautiful halter top dress.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s is draped inside a beautiful halter top dress, making ${his} ${adjNoun} the center of attention.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName} is wearing a beautiful silky halter top dress, almost as if it was sculpted to hug ${his} flat chest.`; - } else { - r += `${slave.slaveName} is wearing a beautiful silky halter top dress, almost as if it was sculpted to match ${his} frame.`; - } - break; - case "a ball gown": - if (slave.boobs > 12000) { - r += `${slave.slaveName} fabulous silken ball gown is designed to allow ${his} oversized breasts to hang free.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName} somehow managed to cram the immense mass of ${his} breasts inside a fabulous silken ball gown. They spill out of every available gap.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName} somehow managed to fit the enormous mass of ${his} breasts inside a fabulous silken ball gown.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s fabulous silken ball gown is carefully tailored, beautifully covering yet enhancing ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s fabulous silken ball gown is carefully tailored, beautifully caressing ${his} flat chest.`; - } else { - r += `${slave.slaveName}'s draped inside a fabulous silken ball gown.`; - } - break; - case "slutty business attire": - r += `${slave.slaveName}'s suit jacket `; - if (slave.boobs > 12000) { - r += `and blouse are both open in front, leaving ${his} boobs bare, since there's no way ${he} could button ${his} clothes over ${his} ${adjNoun}.`; - } else if (slave.boobs > 2000) { - r += `is open in front, and ${his} straining blouse barely restrains ${his} ${adjNoun}.`; - } else if (slave.boobs < 300) { - r += `is open in front, tightly hugging ${his} flat chest and prominently displaying ${his} ${slave.nipples} nipples.`; - } else { - r += `is open in front, and ${his} blouse barely covers ${his} ${adjNoun}.`; - } - break; - case "nice business attire": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `tits are so immense that ${his} specially tailored blouse and jacket are incapable of being buttoned up.`; - } else if (slave.boobs > 4000) { - r += `tits are so huge that they prevent ${his} jacket from closing. Every motion ${he} makes threatens to turn ${his} blouse buttons into ballistics.`; - } else if (slave.boobs > 2000) { - r += `tits are so big that they strain even ${his} specially tailored blouse and jacket.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} strain against ${his} tailored blouse and jacket.`; - } else if (slave.boobs < 300) { - r += `suit jacket is fitted tightly to ${his} flat chest.`; - } else { - r += `suit jacket conceals a flattering bra that lifts and presents ${his} bosom.`; - } - break; - case "a comfortable bodysuit": - if (slave.boobs < 300) { - r += `${slave.slaveName}'s bodysuit is so tightly form-fitting that it clings to ${his} flat chest and prominently displays ${his} ${slave.nipples} nipples.`; - } else { - r += `${slave.slaveName}'s bodysuit is so tightly form-fitting that ${his} ${adjNoun} are individually hugged and supported by the material.`; - } - break; - case "a latex catsuit": - if (slave.boobs < 300) { - r += `${slave.slaveName}'s latex catsuit fits ${him} like a second skin, showing off every detail of ${his} ${slave.nipples} nipples and distinct lack of breasts.`; - } else { - r += `${slave.slaveName}'s latex catsuit fits ${him} like a second skin, showing off every detail of ${his} nipples and ${adjNoun}.`; - } - break; - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a mounty outfit": - case "lederhosen": - case "a red army uniform": - case "a police uniform": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s tits are so immense that ${his} specially tailored shirt and tunic are incapable of being buttoned up.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s tits are so huge that they prevent ${his} tunic from closing. Every motion threatens to turn ${his} shirt buttons into shrapnel.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s tits are so big that they strain even ${his} specially tailored shirt and tunic.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} strain against ${his} tailored shirt and tunic.`; - } else { - r += `${slave.slaveName} cuts a dashing figure in ${his} tunic. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; - } - break; - case "a long qipao": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s tits are so immense that ${his} dress is on the verge of bursting open.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s tits are so huge that ${his} dress is on the verge of bursting open.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${adjNoun} are so big that they strain even ${his} dress greatly.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; - } else { - r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; - } - break; - case "battlearmor": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s tits are so immense that ${his} armor is on the verge of bursting open.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s tits are so huge that ${his} armor is on the verge of bursting open.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s tits are so big that they armor even ${his} dress greatly.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} strain against ${his} armor.`; - } else { - r += `${slave.slaveName} cuts a dashing figure in ${his} armor. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; - } - break; - case "Imperial Plate": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s massive tits create almost comical balloons at the front of ${his} ultra-heavy armor, undeniably gargantuan even underneath the tank-like armor.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s huge breasts each require an individual plate on ${his} ultra-heavy Imperial armor.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s fat boobs clearly swell against the front of ${his} ultra-heavy armor.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} create a noticeable swell at the front of ${his} ultra-heavy armor.`; - } else { - r += `${slave.slaveName}'s chest appears perfectly flat beneath ${his} ultra-heavy Imperial armor. ${slave.boobs < 400 ? `You can't even notice ${his} breasts, elegantly concealed by the massive plating.` : ''}`; - } - break; - case "a dirndl": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s tits are so immense that ${his} dress are incapable of being laced up.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s tits are so huge that they prevent ${his} dress from being laced up.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s tits are so big that they strain ${his} dress.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; - } else { - r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; - } - break; - case "a biyelgee costume": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s tits are so immense that ${his} dress are incapable of being buttoned up.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName}'s tits are so huge that they prevent ${his} dress from being buttoned up.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s tits are so big that they strain ${his} dress.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s ${adjNoun} strain against ${his} dress.`; - } else { - r += `${slave.slaveName} cuts a dashing figure in ${his} dress. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} breasts are barely there.` : ''}`; - } - break; - case "a nice nurse outfit": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} are too big for ${his} scrub top, it rests uselessly atop ${his} bust.`; - } else if (slave.boobs > 4000) { - r += `${adjNoun} strain against ${his} scrub top, it only manages to cover ${his} nipples.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} strain against ${his} scrub top, filling it out completely despite its utilitarian cut.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} nicely fill out ${his} scrub top, despite its utilitarian cut.`; - } else if (slave.boobs < 300) { - r += `scrub top tightly hugs ${his} flat chest.`; - } else { - r += `${adjNoun} are hidden beneath ${his} scrub top.`; - } - break; - case "a mini dress": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `mini dress is pulled down to allow ${his} immense breasts to hang free.`; - } else if (slave.boobs > 4000) { - r += `${adjNoun} stretch ${his} custom tailored dress to its absolute limit.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} stretch taut against ${his} dress, leaving nothing to the imagination.`; - } else if (slave.boobs < 300) { - r += `dress tightly hugs ${his} flat chest, prominently displaying ${his} ${slave.nipples} nipples though the fabric.`; - } else { - r += `${adjNoun} stretches taut against ${his} dress, leaving little to the imagination.`; - } - break; - case "an apron": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `breasts are so immense that ${his} apron can barely contain them, and ${he} has to be careful not to expose one or both of ${his} ${slave.nipples} nipples as ${he} moves.`; - } else if (slave.boobs > 4000) { - r += `${adjNoun} fill out ${his} strained apron, occasionally leaving the sides of ${his} ${slave.nipples} nipples bare.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} fill out ${his} stretched apron, only just managing to fully cover ${his} ${slave.nipples} nipples.`; - } else if (slave.boobs < 300) { - r += `apron lies flatly against ${his} small chest and ${slave.nipples} nipples.`; - } else { - r += `${adjNoun} fill out ${his} apron, which is strategically worn to cover ${his} ${slave.nipples} nipples.`; - } - break; - case "overalls": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} are so immense that ${his} overalls can barely contain them, and ${he} has to be careful not to expose one or both of ${his} ${slave.nipples} nipples as ${he} moves.`; - } else if (slave.boobs > 4000) { - r += `${adjNoun} peek out from the sides of ${his} strained overalls, often exposing the sides of ${his} ${slave.nipples} nipples.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} fill out ${his} stretched overalls, only just managing to fully cover ${his} ${slave.nipples} nipples.`; - } else if (slave.boobs < 300) { - r += `overalls lie flatly against ${his} small chest and ${slave.nipples} nipples.`; - } else { - r += `overalls are filled out by ${his} ${adjNoun}, offering tantalizing views of their sides.`; - } - break; - case "a leotard": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} are so big that even ${his} specially tailored leotard cannot really support them.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} stretch the spandex of ${his} leotard taut across their width.`; - } else if (slave.boobs < 300) { - r += `leotard tightly hugs ${his} ${adjNoun}, prominently displaying ${his} ${slave.nipples} nipples though the spandex.`; - } else { - r += `${adjNoun} is flattered by ${his} leotard.`; - } - break; - case "a monokini": - r += `The shoulder straps of ${slave.slaveName}'s monokini cross over in the center of ${his} chest, leaving the rest of ${his} ${adjNoun} totally bare.`; - break; - case "a cybersuit": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are clearly visible.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are nearly visible.`; - } else if (slave.boobs < 300) { - r += `${adjNoun} is hugged tightly by the bodysuit, ${his} nipples pushing against the material.`; - } else { - r += `${adjNoun} are hugged tightly by the bodysuit, ${his} nipples pushing against the material.`; - } - break; - case "a tight Imperial bodysuit": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} stretch out the bodysuit massively, comically distending and warping your crest against the front.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} stretch out the bodysuit so tightly that ${his} nipples are nearly visible, poking out against your emblazoned crest.`; - } else if (slave.boobs < 300) { - r += `${adjNoun} is hugged tightly by the bodysuit, ${his} sloping against your emblazoned crest on the front.`; - } else { - r += `${adjNoun} are hugged tightly by the bodysuit, elegantly accentuating the noble design of your family crest emblazoned on the front.`; - } - break; - case "a bunny outfit": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `${adjNoun} are so immense that ${his} teddy can't contain them; it's pulled down to allow them to hang free.`; - } else if (slave.boobs > 6000) { - r += `${adjNoun} are so huge that ${his} teddy conceals special stays to keep them from popping out at the slightest movement. Breast flesh massively overflows ${his} top.`; - } else if (slave.boobs > 2000) { - r += `${adjNoun} are so big that ${his} teddy conceals special stays to keep them from popping out at the slightest movement.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} are perpetually on the verge of spilling out of ${his} top.`; - } else if (slave.boobs < 300) { - r += `teddy tightly clings to ${his} flat chest somehow making ${him} look even flatter.`; - } else { - r += `teddy conceals cunning stays designed to make ${his} bosom look considerably bigger than it actually is.`; - } - break; - case "attractive lingerie for a pregnant woman": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `top has been retailored to fit ${his} enormous bust. The ample breast flesh almost completely consumes ${his} silken lingerie. ${His} silken vest is barely visible behind ${his} massive tits.`; - } else if (slave.boobs > 4000) { - r += `${adjNoun} dwarf ${his} tiny top. It barely manages to cover ${his} nipples. ${His} silken vest is parted to either side of ${his} breasts.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} spill out from above and below ${his} tight top.`; - } else if (slave.boobs < 300) { - r += `top tightly clings to ${his} flat chest.`; - } else { - r += `top tightly clings to ${his} chest.`; - } - break; - case "a maternity dress": - r += `${slave.slaveName}'s `; - if (slave.boobs > 12000) { - r += `low cut dress can't contain ${his} ${adjNoun}, so ${he} keeps it pulled up just below ${his} bust.`; - } else if (slave.boobs > 4000) { - r += `low cut dress can barely conceal ${his} ${adjNoun}. They bulge over the top and create a deep valley of cleavage.`; - } else if (slave.boobs > 1000) { - r += `dress is low cut and reveals a large amount of cleavage.`; - } else if (slave.boobs < 300) { - r += `dress is low cut, tightly hugs ${his} flat chest and ends just above ${his} nipples.`; - } else { - r += `dress is low cut and ends just above ${his} nipples.`; - } - break; - case "a courtesan dress": - r += `${slave.slaveName}'s shoulderless dress includes a half-corset`; - if (slave.boobs > 20000) { - r += `, but it's completely forgotten under ${his} ${adjNoun} and bottomless cleavage.`; - } else if (slave.boobs > 4000) { - r += `, but it's barely noticeable under ${his} ${adjNoun} and impressive cleavage.`; - } else if (slave.boobs > 800) { - r += ` to force ${his} ${adjNoun} up and forward, forming a lot of cleavage.`; - } else if (slave.boobs < 300) { - r += ` that tightly hugs ${his} ${adjNoun}.`; - } else { - r += ` to force ${his} ${adjNoun} up and forward.`; - } - break; - case "a bimbo outfit": - r += `${slave.slaveName}'s undersized top leaves ${his} lacy bra entirely exposed`; - if (slave.boobs > 10000) { - r += ` and lends no support to the overtaxed undergarment in its struggles to contain ${his} bouncy behemoths.`; - } else if (slave.boobs > 4000) { - r += ` as it struggles to lend any support to ${his} heaving chest.`; - } else if (slave.boobs > 1000) { - r += ` as it tightly caresses ${his} ${adjNoun}.`; - } else { - r += `.`; - } - break; - case "stretch pants and a crop-top": - if (slave.boobs > 20000) { - r += `${slave.slaveName} is wearing a massively oversized custom crop-top designed to handle ${his} monumental tits. Even so, it's stretched taut just struggling to cover ${his} nipples, causing acres of breast flesh to spill out from under and above it.`; - } else if (slave.boobs > 10000) { - r += `${slave.slaveName}'s oversized crop-top struggles to contain even half of ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage. Every motion risks a nipple popping free.`; - } else if (slave.boobs > 8000) { - r += `${slave.slaveName}'s oversized crop-top struggles to contain ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; - } else if (slave.boobs > 4000) { - r += `${slave.slaveName} has swapped up to the largest crop-top available. Even so, it barely covers them and creates plenty of cleavage.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s crop-top struggles to contain ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; - } else if (slave.boobs > 800) { - r += `${slave.slaveName}'s crop-top tightly hugs ${his} ${adjNoun} creating plenty of cleavage.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName}'s crop-top tightly clings to ${his} flat chest.`; - } else { - r += `${slave.slaveName}'s crop-top tightly hugs ${his} ${adjNoun}.`; - } - switch (slave.sexualFlaw) { - case "neglectful": - r += ' "All For You" '; - break; - case "cum addict": - r += ' "Cum \'ere Sexy" '; - break; - case "anal addict": - r += ' "Reach Around Back" '; - break; - case "attention whore": - r += ' "Will Flash For Attention" '; - break; - case "breast growth": - r += ' "Could Be Bigger" '; - break; - case "abusive": - r += ' "Fondlers May Be Slapped" '; - break; - case "malicious": - r += ' "Careful, I Bite" '; - break; - case "self hating": - r += ' "Rough \'em Up" '; - break; - case "breeder": - r += ' "Drink Deep" '; - break; - default: - if (slave.fetishKnown === 1) { - switch (slave.fetish) { - case "submissive": - r += ' "Take Me" '; - break; - case "cumslut": - r += ' "Splash Zone" '; - break; - case "humiliation": - r += ' "Flasher" '; - break; - case "buttslut": - r += ' "Reach Around" '; - break; - case "boobs": - r += ' "Your Hands Here" '; - break; - case "sadist": - r += ' "Taste the Pain" '; - break; - case "masochist": - r += ' "Be Rough" '; - break; - case "dom": - r += ' "Queen Bitch" '; - break; - case "pregnancy": - r += ' "Milk Me" '; - break; - case "mindbroken": - r += ' "Free Slut" '; - break; - default: - r += ` ${App.Desc.inscrip(slave)} `; - break; - } - } else { - r += ` ${App.Desc.inscrip(slave)} `; - } - } - r += `is written across ${his} chest in large, vibrant letters.`; - break; - case "harem gauze": - r += `${slave.slaveName}'s harem girl outfit `; - if (slave.boobs > 12000) { - r += `lets ${his} ${adjNoun} rest beneath`; - } else if (slave.boobs > 800) { - r += `lets ${his} ${adjNoun} swing free beneath`; - } else if (slave.boobs < 300) { - r += `gently covers ${his} flat chest with`; - } else { - r += `only covers ${his} ${adjNoun} with`; - } - r += ` a thin film of gauze.`; - break; - case "a slutty nurse outfit": - r += `${slave.slaveName}'s jacket `; - if (slave.boobs > 4000) { - r += `closes beneath ${his} ${adjNoun}, leaving almost everything visible.`; - } else if (slave.boobs > 800) { - r += `pushes ${his} ${adjNoun} together to form some great cleavage.`; - } else if (slave.boobs < 300) { - r += `tightly hugs ${his} flat chest, since it has no breasts to form cleavage with.`; - } else { - r += `pushes ${his} ${adjNoun} together to form as much cleavage as possible.`; - } - break; - case "a schoolgirl outfit": - r += `${slave.slaveName}'s `; - if (slave.boobs > 4000) { - r += `${adjNoun} are too big for ${his} blouse, so ${he}'s tied it under them; they're so huge that it's buried under them.`; - } else if (slave.boobs > 800) { - r += `${adjNoun} are too big for ${his} blouse, so ${he}'s tied it under them and left them totally bare.`; - } else if (slave.boobs < 300) { - r += `blouse tightly hugs ${his} flat chest.`; - } else { - r += `blouse only barely covers ${his} ${adjNoun}.`; - } - break; - case "a kimono": - r += `${slave.slaveName}'s kimono `; - if (slave.boobs > 12000) { - r += `can't cover ${his} ${adjNoun}, so ${he} leaves it hanging loose; allowing them to hang freely.`; - } else if (slave.boobs > 4000) { - r += `barely covers ${his} ${adjNoun}. It reveals most of ${his} chest, just covering the outer edges of ${his} breasts and their nipples.`; - } else if (slave.boobs > 2000) { - r += `demurely covers ${his} ${adjNoun}, though it cannot conceal their absurd size.`; - } else if (slave.boobs < 300) { - r += `demurely rests over ${his} ${adjNoun}.`; - } else { - r += `demurely covers ${his} ${adjNoun}.`; - } - break; - case "battledress": - if (slave.boobs > 12000) { - r += `${slave.slaveName}'s ${adjNoun} are barely supported by a specially engineered, space-age sports bra.`; - } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s ${adjNoun} are supported by a specially engineered, space-age sports bra under ${his} tank top.`; - } else if (slave.boobs < 300) { - r += `${slave.slaveName} is flat as an ironing board; ${he} wears ${his} tank top without a bra underneath.`; - } else { - r += `${slave.slaveName}'s ${adjNoun} are supported by a sports bra under ${his} tank top.`; - } - break; - case "slutty jewelry": - r += `${slave.slaveName}'s bangles include a `; - if (slave.boobs > 2000) { - r += `thin chain that runs under ${his} ${adjNoun}, disappearing entirely.`; - } else if (slave.boobs > 800) { - r += `thin chain that runs under ${his} ${adjNoun}, appearing and disappearing enticingly when ${he} moves.`; - } else if (slave.boobs < 300) { - r += `thin chain that runs across ${his} ${adjNoun}.`; - } else { - r += `light chain that loops under ${his} ${adjNoun}.`; - } - break; - case "a burqa": - r += `${slave.slaveName}'s burqa entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a tube top and thong": - case "a tube top": - case "leather pants and a tube top": - r += `${slave.slaveName}'s tube top entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a button-up shirt and panties": - case "a button-up shirt": - case "a t-shirt": - case "a t-shirt and thong": - case "a t-shirt and panties": - case "sport shorts and a t-shirt": - case "a t-shirt and jeans": - r += `${slave.slaveName}'s shirt entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - r += `${slave.slaveName}'s over-sized shirt entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += `, the fabric easily stretches to cover ${his} expansive mounds of flesh.`; - } else if (slave.boobs > 8000) { - r += `, the fabric easily covers ${his} absurdly-sized breasts.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a thong": - case "a skimpy loincloth": - case "boyshorts": - case "cutoffs": - case "leather pants": - case "panties": - case "jeans": - case "sport shorts": - r += `${slave.slaveName}'s ${adjNoun} are completely bare.`; - break; - case "a tank-top": - case "a tank-top and panties": - r += `${slave.slaveName}'s tank-top entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r += `${slave.slaveName}'s sweater entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "leather pants and pasties": - case "panties and pasties": - case "pasties": - r += `${slave.slaveName}'s breasts`; - if (slave.boobs > 25000) { - r += `are completely bare, save for the proportionally tiny pasties covering ${his} ${slave.nipples} nipples.`; - } else { - r += `are completely bare, save for the pasties covering ${his} ${slave.nipples} nipples.`; - } - break; - case "a bra": - case "a striped bra": - case "a sports bra": - case "sport shorts and a sports bra": - case "striped underwear": - r += `${slave.slaveName}'s bra entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r += `${slave.slaveName}'s outfit entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a one-piece swimsuit": - r += `${slave.slaveName}'s swimsuit entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a gothic lolita dress": - case "a hanbok": - r += `${slave.slaveName}'s blouse entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - r += `${slave.slaveName}'s abaya entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a klan robe": - case "a slutty klan robe": - r += `${slave.slaveName}'s robe entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a hijab and blouse": - r += `${slave.slaveName}'s two shirts entirely conceal ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. They have been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though they cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a burkini": - r += `${slave.slaveName}'s bikini entirely conceals ${his} ${adjNoun}`; - if (slave.boobs > 12000) { - r += ', although the fabric struggles to ensure they are entirely covered.'; - } else if (slave.boobs > 8000) { - r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; - } else if (slave.boobs > 4000) { - r += `, though it cannot conceal their absurd size.`; - } else { - r += '.'; - } - break; - case "a Santa dress": - r += `${slave.slaveName}'s red holiday dress is designed with a dangerously low neckline, which `; - if (slave.boobs > 12000) { - r += `${his} colossal breasts spill out of completely unheeded.`; - } else if (slave.boobs > 4000) { - r += `serves only to prop up ${his} massive, otherwise naked breasts.`; - } else if (slave.boobs > 2000) { - r += `lies at nipple-level on ${his} ${adjNoun}, leaving a decent portion of ${his} areolae uncovered.`; - } else if (slave.boobs < 300) { - r += `hangs lowly on ${his} ${adjNoun}, occasionally revealing one of ${his} nipples.`; - } else { - r += `accentuates ${his} cleavage, especially since it always appears to be slipping down ${his} body.`; - } + break; + case "a tank-top": + case "a tank-top and panties": + r += `${slave.slaveName}'s tank-top entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r += `${slave.slaveName}'s sweater entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "leather pants and pasties": + case "panties and pasties": + case "pasties": + r += `${slave.slaveName}'s breasts`; + if (slave.boobs > 25000) { + r += `are completely bare, save for the proportionally tiny pasties covering ${his} ${slave.nipples} nipples.`; + } else { + r += `are completely bare, save for the pasties covering ${his} ${slave.nipples} nipples.`; + } + break; + case "a bra": + case "a striped bra": + case "a sports bra": + case "sport shorts and a sports bra": + case "striped underwear": + r += `${slave.slaveName}'s bra entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r += `${slave.slaveName}'s outfit entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a one-piece swimsuit": + r += `${slave.slaveName}'s swimsuit entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a gothic lolita dress": + case "a hanbok": + r += `${slave.slaveName}'s blouse entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a hijab and abaya": + case "a niqab and abaya": + r += `${slave.slaveName}'s abaya entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a klan robe": + case "a slutty klan robe": + r += `${slave.slaveName}'s robe entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a hijab and blouse": + r += `${slave.slaveName}'s two shirts entirely conceal ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. They have been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though they cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a burkini": + r += `${slave.slaveName}'s bikini entirely conceals ${his} ${adjNoun}`; + if (slave.boobs > 12000) { + r += ', although the fabric struggles to ensure they are entirely covered.'; + } else if (slave.boobs > 8000) { + r += `. It has been let out a great deal in order to cover the entirety of ${his} chest.`; + } else if (slave.boobs > 4000) { + r += `, though it cannot conceal their absurd size.`; + } else { + r += '.'; + } + break; + case "a Santa dress": + r += `${slave.slaveName}'s red holiday dress is designed with a dangerously low neckline, which `; + if (slave.boobs > 12000) { + r += `${his} colossal breasts spill out of completely unheeded.`; + } else if (slave.boobs > 4000) { + r += `serves only to prop up ${his} massive, otherwise naked breasts.`; + } else if (slave.boobs > 2000) { + r += `lies at nipple-level on ${his} ${adjNoun}, leaving a decent portion of ${his} areolae uncovered.`; + } else if (slave.boobs < 300) { + r += `hangs lowly on ${his} ${adjNoun}, occasionally revealing one of ${his} nipples.`; + } else { + r += `accentuates ${his} cleavage, especially since it always appears to be slipping down ${his} body.`; + } + } } return r; } diff --git a/src/npc/descriptions/butt/butt.js b/src/npc/descriptions/butt/butt.js index a2234be31a422ef72b446a585f8286b953809ed5..ef1b4dfd913128632fa2ac50be1429c10de3be9e 100644 --- a/src/npc/descriptions/butt/butt.js +++ b/src/npc/descriptions/butt/butt.js @@ -13,1077 +13,1069 @@ App.Desc.butt = function(slave, {market, eventDescription} = {}) { const hands = (hasBothArms(slave)) ? "hands" : "hand"; if (V.showClothing === 1 && !market) { if (V.surgeryDescription === 0) { - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`The suit`); - if (slave.butt > 10) { - r.push(`hugs each of its massive buttocks individually, permitting`); - } else if (slave.butt > 6) { - r.push(`hugs each of its enormous buttocks individually, permitting`); - } else if (slave.butt > 3) { - r.push(`cups each of its big buttocks, permitting`); - } else { - r.push(`fits its little buttocks closely, offering`); - } - r.push(`easy access to the rear hole.`); - break; - case "conservative clothing": - r.push(`${His} slacks are pressed and`); - if (slave.butt > 10) { - r.push(`well-tailored, but strain at the seams trying to hold back ${his} massive ass.`); - } else if (slave.butt > 6) { - r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); - } else if (slave.butt > 3) { - r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); - } else { - r.push(`well-tailored.`); - } - break; - case "a nice nurse outfit": - r.push(`${His} trousers are`); - if (slave.butt > 10) { - r.push(`well-tailored, but strain at the seams trying to hold back ${his} massive ass.`); - } else if (slave.butt > 6) { - r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); - } else if (slave.butt > 3) { - r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); - } else { - r.push(`well-tailored.`); - } - break; - case "chains": - r.push(`Each buttock has a length of chain`); - if (slave.butt > 3) { - r.push(`disappearing`); - } else { - r.push(`running tightly`); - } - r.push(`under it.`); - break; - case "Western clothing": - r.push(`${His} chaps are assless, and ${his}`); - if (slave.butt > 10) { - r.push(`butt is so massive it seems to explode out of the hole left for it.`); - } else if (slave.butt > 6) { - r.push(`butt is so big it seems to explode out of the hole left for it.`); - } else if (slave.butt > 3) { - r.push(`big butt is bare.`); - } else { - r.push(`butt is bare.`); - } - break; - case "body oil": - r.push(`${His} buttocks are shiny with oil.`); - break; - case "a toga": - r.push(`${His} toga`); - if (slave.butt > 10) { - r.push(`barely covers ${his} ass, it does nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`covers ${his} ass, though it cannot conceal its absurd size.`); - } else { - r.push(`covers ${his} ass.`); - } - break; - case "a huipil": - r.push(`${His} huipil`); - if (slave.butt > 10) { - r.push(`disappears between ${his} monstrous asscheeks.`); - } else if (slave.butt > 6) { - r.push(`covers ${his} butt, though it cannot stop it from spilling from the sides.`); - } else { - r.push(`covers ${his} butt.`); - } - break; - case "kitty lingerie": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`panties' strings struggle to stay tied.`); - } else if (slave.butt > 6) { - r.push(`huge buttocks stretches the fabric of ${his} lingerie.`); - } else if (slave.butt > 3) { - r.push(`big butt is snug within ${his} panties.`); - } else { - r.push(`silken panties accentuate ${his} behind.`); - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`${His} pretty silken panties`); - if (slave.butt > 10) { - r.push(`disappear between ${his} inhuman buttocks.`); - } else if (slave.butt > 6) { - r.push(`disappear between ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`peek out from between ${his} big buttocks.`); - } else { - r.push(`makes ${his} buttocks especially delectable.`); - } - break; - case "a maternity dress": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`massive buttocks strains the seams of ${his} dress considerably.`); - } else if (slave.butt > 6) { - r.push(`huge buttocks stretches the fabric of ${his} dress considerably.`); - } else if (slave.butt > 3) { - r.push(`big ass fills out ${his} dress nicely.`); - } else { - r.push(`dress completely hides ${his} butt.`); - } - break; - case "stretch pants and a crop-top": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`massive buttocks strains the seams of ${his} stretch pants considerably; ${he} can only manage to pull them halfway over it, creating plenty of jiggly ass cleavage to spill out over the elastic waist.`); - } else if (slave.butt > 6) { - r.push(`huge buttocks stretch the fabric of ${his} stretch pants considerably, ${he} can barely manage to pull them over it.`); - } else if (slave.butt > 3) { - r.push(`big ass fills out ${his} stretch pants nicely.`); - } else { - r.push(`stretch pants tightly hug ${his} trim`); - if (hasAnyLegs(slave)) { - if (hasBothLegs(slave)) { - r.push(`legs`); - } else { - r.push(`leg`); - } - r.push(`and`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "butt" in clothing.desc) { + r.push(clothing.desc.butt(slave)); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`The suit`); + if (slave.butt > 10) { + r.push(`hugs each of its massive buttocks individually, permitting`); + } else if (slave.butt > 6) { + r.push(`hugs each of its enormous buttocks individually, permitting`); + } else if (slave.butt > 3) { + r.push(`cups each of its big buttocks, permitting`); + } else { + r.push(`fits its little buttocks closely, offering`); } - r.push(`rear.`); - } - switch (slave.sexualFlaw) { - case "neglectful": - r.push(`"For Your Pleasure"`); - break; - case "cum addict": - r.push(`"Cum Deep Inside"`); - break; - case "anal addict": - r.push(`"Stick It In"`); - break; - case "attention whore": - r.push(`"Have a Look"`); - break; - case "breast growth": - r.push(`"Action Around Front"`); - break; - case "abusive": - r.push(`"No Escape"`); - break; - case "malicious": - r.push(`"Ball Breaker"`); - break; - case "self hating": - r.push(`"Ride Me Dry"`); - break; - case "breeder": - r.push(`"Wrong Hole"`); - break; - default: - if (slave.fetishKnown === 1) { - switch (slave.fetish) { - case "submissive": - r.push(`"Bend Me Over"`); - break; - case "cumslut": - r.push(`"Cum Hither"`); - break; - case "humiliation": - r.push(`"Pants Me"`); - break; - case "buttslut": - r.push(`"Your Hands Here"`); - break; - case "boobs": - r.push(`"Grope My Tits"`); - break; - case "sadist": - r.push(`"Crush Warning"`); - break; - case "masochist": - r.push(`"I've Been Bad"`); - break; - case "dom": - r.push(`"Always On Top"`); - break; - case "pregnancy": - r.push(`"Knock Me Up"`); - break; - case "mindbroken": - r.push(`"No Objections"`); - break; - default: - r.push(`"Fuck My Ass"`); - break; + r.push(`easy access to the rear hole.`); + break; + case "conservative clothing": + r.push(`${His} slacks are pressed and`); + if (slave.butt > 10) { + r.push(`well-tailored, but strain at the seams trying to hold back ${his} massive ass.`); + } else if (slave.butt > 6) { + r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); + } else if (slave.butt > 3) { + r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); + } else { + r.push(`well-tailored.`); + } + break; + case "a nice nurse outfit": + r.push(`${His} trousers are`); + if (slave.butt > 10) { + r.push(`well-tailored, but strain at the seams trying to hold back ${his} massive ass.`); + } else if (slave.butt > 6) { + r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); + } else if (slave.butt > 3) { + r.push(`well-tailored, but can't hide the huge size of ${his} ass.`); + } else { + r.push(`well-tailored.`); + } + break; + case "chains": + r.push(`Each buttock has a length of chain`); + if (slave.butt > 3) { + r.push(`disappearing`); + } else { + r.push(`running tightly`); + } + r.push(`under it.`); + break; + case "Western clothing": + r.push(`${His} chaps are assless, and ${his}`); + if (slave.butt > 10) { + r.push(`butt is so massive it seems to explode out of the hole left for it.`); + } else if (slave.butt > 6) { + r.push(`butt is so big it seems to explode out of the hole left for it.`); + } else if (slave.butt > 3) { + r.push(`big butt is bare.`); + } else { + r.push(`butt is bare.`); + } + break; + case "body oil": + r.push(`${His} buttocks are shiny with oil.`); + break; + case "a toga": + r.push(`${His} toga`); + if (slave.butt > 10) { + r.push(`barely covers ${his} ass, it does nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`covers ${his} ass, though it cannot conceal its absurd size.`); + } else { + r.push(`covers ${his} ass.`); + } + break; + case "a huipil": + r.push(`${His} huipil`); + if (slave.butt > 10) { + r.push(`disappears between ${his} monstrous asscheeks.`); + } else if (slave.butt > 6) { + r.push(`covers ${his} butt, though it cannot stop it from spilling from the sides.`); + } else { + r.push(`covers ${his} butt.`); + } + break; + case "kitty lingerie": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`panties' strings struggle to stay tied.`); + } else if (slave.butt > 6) { + r.push(`huge buttocks stretches the fabric of ${his} lingerie.`); + } else if (slave.butt > 3) { + r.push(`big butt is snug within ${his} panties.`); + } else { + r.push(`silken panties accentuate ${his} behind.`); + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`${His} pretty silken panties`); + if (slave.butt > 10) { + r.push(`disappear between ${his} inhuman buttocks.`); + } else if (slave.butt > 6) { + r.push(`disappear between ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`peek out from between ${his} big buttocks.`); + } else { + r.push(`makes ${his} buttocks especially delectable.`); + } + break; + case "a maternity dress": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`massive buttocks strains the seams of ${his} dress considerably.`); + } else if (slave.butt > 6) { + r.push(`huge buttocks stretches the fabric of ${his} dress considerably.`); + } else if (slave.butt > 3) { + r.push(`big ass fills out ${his} dress nicely.`); + } else { + r.push(`dress completely hides ${his} butt.`); + } + break; + case "stretch pants and a crop-top": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`massive buttocks strains the seams of ${his} stretch pants considerably; ${he} can only manage to pull them halfway over it, creating plenty of jiggly ass cleavage to spill out over the elastic waist.`); + } else if (slave.butt > 6) { + r.push(`huge buttocks stretch the fabric of ${his} stretch pants considerably, ${he} can barely manage to pull them over it.`); + } else if (slave.butt > 3) { + r.push(`big ass fills out ${his} stretch pants nicely.`); + } else { + r.push(`stretch pants tightly hug ${his} trim`); + if (hasAnyLegs(slave)) { + if (hasBothLegs(slave)) { + r.push(`legs`); + } else { + r.push(`leg`); } - } else { - r.push(App.Desc.inscrip(slave)); + r.push(`and`); } - } - r.push(`is written across the seat of ${his} pants in large, vibrant letters.`); - break; - case "a kimono": - r.push(`${His} kimono demurely covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, it does nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side,`); - if (slave.butt > 10) { - r.push(`and ${his} ass is so massive that the rear part of the qipao rests meekly atop it.`); - } else if (slave.butt > 6) { - r.push(`and ${his} ass is so big that the rear part of the qipao only covers its top half.`); - } else { - r.push(`baring quite a bit of the side of each buttock.`); - } - break; - case "uncomfortable straps": - r.push(`${His} slave outfit's`); - if (slave.butt > 10) { - r.push(`straining straps frame ${his} colossal rear, with a strap disappearing under each inhuman buttock.`); - } else if (slave.butt > 6) { - r.push(`straining straps frame ${his} enormous rear, with a strap disappearing under each massive buttock.`); - } else if (slave.butt > 3) { - r.push(`straining straps frame ${his} enormous buttocks, with a strap passing uncomfortably under each one.`); - } else { - r.push(`straps frame ${his} buttocks, with a strap passing uncomfortably between them.`); - } - break; - case "shibari ropes": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`inhuman ass strains the tight ropes that frame it. Ass flesh bulges from between the ropes.`); - } else if (slave.butt > 6) { - r.push(`massive ass almost explodes out of the tight ropes that frame it.`); - } else if (slave.butt > 3) { - r.push(`big buttocks are deliciously framed by tight ropes.`); - } else { - r.push(`cute buttocks are each lifted by a rope that passes under them.`); - } - break; - case "restrictive latex": - if (slave.butt > 10) { - r.push(`The latex creaks ominously as it is strained by ${his} inhuman ass.`); - } else if (slave.butt > 6) { - r.push(`The latex creaks ominously as it is strained by ${his} massive ass.`); - } else if (slave.butt > 3) { - r.push(`${His} big buttocks strain the latex.`); - } else { - r.push(`The latex makes ${his} ass look even shapelier.`); - } - break; - case "attractive lingerie": - r.push(`${His} pretty lace g-string`); - if (slave.butt > 10) { - r.push(`disappears between ${his} inhuman buttocks.`); - } else if (slave.butt > 6) { - r.push(`disappears between ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`peeks out from between ${his} big buttocks.`); - } else { - r.push(`makes ${his} buttocks especially delectable.`); - } - break; - case "a succubus outfit": - r.push(`A tail sprouts from under ${his} little leather skirt, curving upward to end in a spade tip. It holds the skirt up in back, leaving ${his} ass totally bare.`); - break; - case "a slutty maid outfit": - r.push(`${His} maid dress`); - if (slave.butt > 10) { - r.push(`fails to cover any of ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`only covers the top quarter of ${his} massive`); - } else if (slave.butt > 3) { - r.push(`ends halfway down ${his} big`); - } else { - r.push(`ends three-quarters of the way down ${his}`); - } - r.push(`buttocks.`); - break; - case "a nice maid outfit": - r.push(`${His} maid dress`); - if (slave.butt > 10) { - r.push(`strains at the seams holding back ${his} massive`); - } else if (slave.butt > 6) { - r.push(`struggles to conceal ${his} huge`); - } else if (slave.butt > 3) { - r.push(`accentuates the curves of ${his} big`); - } else { - r.push(`demurely covers ${his}`); - } - r.push(`buttocks.`); - break; - case "a string bikini": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`slutty string bikini bottom disappears between ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`slutty string bikini bottom disappears between ${his} huge`); - } else if (slave.butt > 3) { - r.push(`slutty string bikini bottom peeks out from between ${his} big`); - } else { - r.push(`string bikini bottom runs enticingly down between ${his}`); - } - r.push(`buttocks.`); - break; - case "a scalemail bikini": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`barbaric scalemail bikini bottom barely covers ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`barbaric scalemail bikini bottom only somewhat covers ${his} huge`); - } else if (slave.butt > 3) { - r.push(`barbaric scalemail bikini bottom enticingly covers ${his} big`); - } else { - r.push(`scalemail bikini bottom completely covers ${his}`); - } - r.push(`buttocks.`); - break; - case "striped panties": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`cute panties barely covers ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`cute panties only somewhat covers ${his} huge`); - } else if (slave.butt > 3) { - r.push(`cute panties enticingly covers ${his} big`); - } else { - r.push(`cute panties completely covers ${his}`); - } - r.push(`buttocks.`); - break; - case "spats and a tank top": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`huge rear threatens to tear apart ${his} spats upon any movement.`); - } else if (slave.butt > 6) { - r.push(`large ass is constrained by ${his} tightly-worn spats.`); - } else if (slave.butt > 3) { - r.push(`spats snugly fit around ${his} big butt.`); - } else { - r.push(`spats snugly fit ${his} butt.`); - } - break; - case "lederhosen": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`huge rear threatens to tear apart ${his} shorts upon any movement.`); - } else if (slave.butt > 6) { - r.push(`large ass is constrained by ${his} tightly-worn shorts.`); - } else if (slave.butt > 3) { - r.push(`shorts snugly fit around ${his} big butt.`); - } else { - r.push(`shorts snugly fit ${his} butt.`); - } - break; - case "a cheerleader outfit": - r.push(`${His} pleated cheerleader skirt rests`); - if (slave.butt > 10) { - r.push(`atop ${his} massive ass.`); - } else if (slave.butt > 6) { - r.push(`atop ${his} huge ass.`); - } else if (slave.butt > 3) { - r.push(`over ${his} plump butt.`); - } else { - r.push(`over ${his} cute butt.`); - } - break; - case "clubslut netting": - r.push(`${His} netting`); - if (slave.butt > 6) { - r.push(`strains to support ${his} massive behind.`); - } else if (slave.butt > 3) { - r.push(`strains to restrain ${his} big behind.`); - } else { - r.push(`technically covers ${his} cute butt, but it's all visible.`); - } - break; - case "cutoffs and a t-shirt": - r.push(`${His} cutoffs`); - if (slave.butt > 10) { - r.push(`fail to cover ${his} massive buttocks, with the jean material disappearing between them.`); - } else if (slave.butt > 6) { - r.push(`fail to cover ${his} huge buttocks, with the jean material almost disappearing between them.`); - } else if (slave.butt > 3) { - r.push(`bare the bottom of each of ${his} big buttocks.`); - } else { - r.push(`bare a little buttock in back.`); - } - break; - case "a slutty outfit": - if (slave.butt > 5) { - r.push(`Many of ${his} choices of slutty outfit leave all or part of ${his} huge buttocks bare.`); - } else { - r.push(`Some of ${his} choices of slutty outfit reveal part of ${his} buttocks.`); - } - break; - case "a slutty nurse outfit": - r.push(`${His}`); - if (slave.butt > 10) { - r.push(`massive buttocks are easily visible below the hem of ${his} tight skirt.`); - } else if (slave.butt > 6) { - r.push(`huge buttocks are easily visible below the hem of ${his} tight skirt.`); - } else if (slave.butt > 3) { - r.push(`big butt is just visible past the hem of ${his} tight skirt.`); - } else { - r.push(`tight skirt comes down to just below the bottom of ${his} buttocks.`); - } - break; - case "a schoolgirl outfit": - r.push(`${His} skirt`); - if (slave.butt > 10) { - r.push(`can't begin to cover ${his} massive butt, and just rests on top of ${his} buttocks, leaving virtually ${his} entire behind`); - } else if (slave.butt > 6) { - r.push(`can't begin to cover ${his} huge butt, and just rests on top of ${his} buttocks, leaving virtually ${his} entire behind`); - } else if (slave.butt > 3) { - r.push(`only covers the top of ${his} big butt, leaving most of ${his} bottom`); - } else { - r.push(`only covers the top half of ${his} butt, leaving the bottom half of ${his} behind`); - } - r.push(`bare.`); - break; - case "a fallen nuns habit": - r.push(`${His} latex habit parts to leave ${his}`); - if (slave.butt > 10) { - r.push(`inhuman`); - } else if (slave.butt > 6) { - r.push(`massive`); - } else if (slave.butt > 3) { - r.push(`big`); - } - r.push(`buttocks bare.`); - break; - case "a chattel habit": - r.push(`The belt around ${his} ribs has two long strips of white fabric hanging from it, down ${his} front and back, leaving ${his} sides bare from ${his} flanks down to ${his} hips. ${His}`); - if (slave.butt > 10) { - r.push(`massive buttocks have a way of trapping the strip of fabric in back between them.`); - } else if (slave.butt > 6) { - r.push(`huge buttocks have a way of trapping the strip of fabric in back between them.`); - } else if (slave.butt > 3) { - r.push(`big buttocks force the strip of fabric in back to swoop out over them.`); - } else { - r.push(`cute buttocks are just curved enough to push the strip in back out a bit.`); - } - break; - case "a slave gown": - r.push(`${His} slave gown`); - if (slave.butt > 10) { - r.push(`is tailored as tastefully as possible for ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`is tailored as tastefully as possible for ${his} massive`); - } else if (slave.butt > 3) { - r.push(`is tailored to flatter ${his} big`); - } else { - r.push(`tastefully clings to ${his}`); - } - r.push(`buttocks.`); - break; - case "a halter top dress": - r.push(`${His} beautiful halter top dress is`); - if (slave.butt > 10) { - r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`tailored as possible for ${his} massive`); - } else if (slave.butt > 3) { - r.push(`tailored to flatter ${his} big`); - } else { - r.push(`almost sculpted over ${his}`); - } - r.push(`buttocks.`); - break; - case "a dirndl": - r.push(`${His} beautiful dirndl is`); - if (slave.butt > 10) { - r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`tailored as possible for ${his} massive`); - } else if (slave.butt > 3) { - r.push(`tailored to flatter ${his} big`); - } else { - r.push(`almost sculpted over ${his}`); - } - r.push(`buttocks.`); - break; - case "a biyelgee costume": - r.push(`${His} beautiful costume is`); - if (slave.butt > 10) { - r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`tailored as possible for ${his} massive`); - } else if (slave.butt > 3) { - r.push(`tailored to flatter ${his} big`); - } else { - r.push(`almost sculpted over ${his}`); - } - r.push(`buttocks.`); - break; - case "a ball gown": - r.push(`${His} fabulous silken ball gown is draped`); - if (slave.butt > 10) { - r.push(`as tastefully as possible for ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`as tastefully as possible for ${his} massive`); - } else if (slave.butt > 3) { - r.push(`around ${his} big`); - } else { - r.push(`around ${his}`); - } - r.push(`buttocks.`); - break; - case "nice business attire": - r.push(`${His} suit skirt`); - if (slave.butt > 10) { - r.push(`is tailored but still strains to restrain ${his} massive buttocks.`); - } else if (slave.butt > 6) { - r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`is tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hugs ${his} derrière.`); - } - break; - case "slutty business attire": - r.push(`${His} skirt is so short that`); - if (slave.butt > 10) { - r.push(`quite a lot of inhumanly large`); - } else if (slave.butt > 6) { - r.push(`quite a lot of massive`); - } else if (slave.butt > 3) { - r.push(`more than a hint of`); - } else { - r.push(`a hint of`); - } - r.push(`buttock is visible in back.`); - break; - case "a comfortable bodysuit": - r.push(`${His} bodysuit comfortably hugs ${his}`); - if (slave.butt > 10) { - r.push(`massive`); - } - r.push(`butt.`); - break; - case "a latex catsuit": - if (slave.butt > 10) { - r.push(`The latex creaks ominously as it is strained by ${his} inhuman ass.`); - } else if (slave.butt > 6) { - r.push(`The latex creaks ominously as it is strained by ${his} massive ass.`); - } else if (slave.butt > 3) { - r.push(`${His} latex covered big buttocks are shapely and smooth.`); - } else { - r.push(`${His} latex covered buttocks are shapely and smooth.`); - } - break; - case "a military uniform": - r.push(`${His} uniform skirt`); - if (slave.butt > 10) { - r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`is tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hugs ${his} derrière.`); - } - break; - case "a mounty outfit": - r.push(`${His} uniform slacks`); - if (slave.butt > 10) { - r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`are tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hug ${his} derrière.`); - } - break; - case "a schutzstaffel uniform": - r.push(`${His} uniform trousers`); - if (slave.butt > 10) { - r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`are tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hug ${his} derrière.`); - } - break; - case "a slutty schutzstaffel uniform": - r.push(`${His} uniform miniskirt`); - if (slave.butt > 10) { - r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`is tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hug ${his} derrière.`); - } - break; - case "a red army uniform": - r.push(`${His} uniform skirt`); - if (slave.butt > 10) { - r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`is tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hugs ${his} derrière.`); - } - break; - case "a mini dress": - r.push(`${His} scandalously short dress`); - if (slave.butt > 10) { - r.push(`is impossible to pull over ${his} enormous buttocks, leaving ${his} behind entirely exposed.`); - } else if (slave.butt > 6) { - r.push(`is at constant risk of sliding above ${his} huge butt and leaving ${his} behind entirely exposed.`); - } else if (slave.butt > 3) { - r.push(`barely covers half of ${his} ample buttocks.`); - } else { - r.push(`barely manages to cover ${his} buttocks.`); - } - break; - case "an apron": - r.push(`${His} girly, frilly apron offers no protection in the back, leaving ${his}`); - if (slave.butt > 10) { - r.push(`enormous buttocks`); - } else if (slave.butt > 6) { - r.push(`huge buttocks`); - } else if (slave.butt > 3) { - r.push(`ample buttocks`); - } else { - r.push(`buttocks`); - } - r.push(`completely exposed.`); - break; - case "a leotard": - r.push(`${His} high-sided leotard leaves ${his} hips totally bare, and`); - if (slave.butt > 10) { - r.push(`disappears completely between ${his} enormous buttocks.`); - } else if (slave.butt > 6) { - r.push(`disappears completely between ${his} buttocks.`); - } else if (slave.butt > 3) { - r.push(`almost disappears between ${his} buttocks.`); - } else { - r.push(`leaves ${his} buttocks bare.`); - } - break; - case "a monokini": - r.push(`${His} monokini covers ${his} buttocks fully, the fabric clinging to each`); - if (slave.butt > 10) { - r.push(`gargantuan cheek.`); - } else if (slave.butt > 6) { - r.push(`giant cheek.`); - } else if (slave.butt > 3) { - r.push(`substantial cheek.`); - } else { - r.push(`cheek.`); - } - break; - case "a cybersuit": - r.push(`${His} bodysuit covers ${his} buttocks fully, the material stretching tightly against ${his}`); - if (slave.butt > 10) { - r.push(`gargantuan assflesh.`); - } else if (slave.butt > 6) { - r.push(`giant assflesh.`); - } else if (slave.butt > 3) { - r.push(`substantial assflesh.`); - } else { - r.push(`assflesh.`); - } - break; - case "a tight Imperial bodysuit": - r.push(`${His} cybernetic bodysuit covers ${his} butt fully, the material unapologetically riding up ${his}`); - if (slave.butt > 10) { - r.push(`gargantuan ass, showing off every last dimple as it wobbles.`); - } else if (slave.butt > 6) { - r.push(`massive rear, showing off every last dimple as it jiggles.`); - } else if (slave.butt > 3) { - r.push(`heavy rear, showing off every last dimple as ${he} moves.`); - } else { - r.push(`slender asscheeks, showing off every last dimple as ${he} moves.`); - } - break; - case "battlearmor": - r.push(`${His} armor covers ${his} buttocks fully, stretching tightly against ${his}`); - if (slave.butt > 10) { - r.push(`gargantuan assflesh.`); - } else if (slave.butt > 6) { - r.push(`giant assflesh.`); - } else if (slave.butt > 3) { - r.push(`substantial assflesh.`); - } else { - r.push(`assflesh.`); - } - break; - case "Imperial Plate": - r.push(`${His} ultra-heavy armor completely covers ${his} rear, `); - if (slave.butt > 10) { - r.push(`but is clearly distinct anyway, ${his} undeniable assmeat creating two gargantuan plated globes in the back.`); - } else if (slave.butt > 6) { - r.push(`but ${his} huge ass makes itself known anyway, each cheek requiring an individually rounded plate that seems to somehow wobble even underneath the ludicrously heavy armor.`); - } else if (slave.butt > 3) { - r.push(`but ${his} heavy butt pushes out the massive plating a little slightly, making its large size obvious.`); - } else { - r.push(`creating an elegant, slim set of aerodynamic plate in the back.`); - } - break; - case "a bunny outfit": - r.push(`${His} teddy is actually quite modest in back, covering ${his} buttocks in tight satin with a fluffy white cottontail positioned over ${his} tailbone.`); - break; - case "harem gauze": - r.push(`${His} harem gauze filmily covers`); - if (slave.butt > 10) { - r.push(`the acres of assflesh.`); - } else if (slave.butt > 6) { - r.push(`the expanse of ${his} assflesh.`); - } else if (slave.butt > 3) { - r.push(`${his} big buttocks.`); - } else { - r.push(`${his} buttocks.`); - } - break; - case "slutty jewelry": - r.push(`${His} bangles include a loose chain about ${his} waist that`); - if (slave.butt > 10) { - r.push(`${he} constantly has to fish out of the cleft between ${his} inhuman`); - } else if (slave.butt > 6) { - r.push(`${he} constantly has to fish out of the cleft between ${his} massive`); - } else if (slave.butt > 3) { - r.push(`dips seductively down toward the cleft between ${his} big`); - } else { - r.push(`dips seductively down toward the cleft between ${his}`); - } - r.push(`buttocks.`); - break; - case "overalls": - r.push(`${His} overalls decently cover ${his}`); - if (slave.butt > 10) { - r.push(`ass, but they do nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`butt, though they cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${His} abaya modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a klan robe": - r.push(`${His} robe modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a hijab and blouse": - r.push(`${His} skirt modestly covers ${his}`); - if (slave.butt > 8) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 5) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a burqa": - r.push(`${His} burqa modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a tube top and thong": - case "a thong": - case "a slutty klan robe": - case "a t-shirt and thong": - r.push(`${His} thong leaves ${his}`); - if (slave.butt > 10) { - r.push(`butt completely bare, as it has long since been lost in its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt completely bare, as its enormity has since devoured it.`); - } else if (slave.butt > 3) { - r.push(`big butt completely visible.`); - } else { - r.push(`butt completely visible.`); - } - break; - case "a button-up shirt and panties": - case "a sweater and panties": - case "panties and pasties": - case "a t-shirt and panties": - case "a tank-top and panties": - case "striped underwear": - case "panties": - r.push(`${His} panties partially cover ${his}`); - if (slave.butt > 10) { - r.push(`ass, but does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it does not conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a tank-top": - case "a tube top": - case "a striped bra": - case "an oversized t-shirt": - case "a t-shirt": - case "a sports bra": - case "pasties": - r.push(`${His} clothing leaves ${his}`); - if (slave.butt > 10) { - r.push(`mammoth ass completely bare.`); - } else if (slave.butt > 7) { - r.push(`huge ass completely bare.`); - } else if (slave.butt > 3) { - r.push(`big ass completely bare.`); - } else { - r.push(`ass completely bare.`); - } - break; - case "a gothic lolita dress": - r.push(`${His} dress modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a hanbok": - r.push(`${His} hanbok modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a police uniform": - r.push(`${His} police trousers modestly cover ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`${His} outfit immodestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, and does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, and does nothing to conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a one-piece swimsuit": - r.push(`${His} swimsuit modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a t-shirt and jeans": - case "cutoffs": - case "jeans": - case "a sweater and cutoffs": - r.push(`${His} jeans modestly cover ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "a skimpy loincloth": - r.push(`${His} loincloth barely covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "an oversized t-shirt and boyshorts": - case "boyshorts": - r.push(`${His} boy shorts modestly cover ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`${His} shorts cling tightly to ${his}`); - if (slave.butt > 10) { - r.push(`ass, but do nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`butt, though they cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { - r.push(`butt.`); - } - break; - case "leather pants and pasties": - case "leather pants": - case "leather pants and a tube top": - r.push(`${His} leather pants snugly cover ${his}`); - if (slave.butt > 10) { - r.push(`curvaceously mammoth ass, but do nothing to conceal its absurd size.`); - } else if (slave.butt > 7) { - r.push(`curvaceously huge ass, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`curvaceous big ass.`); - } else { - r.push(`curvaceous ass.`); - } - break; - case "a burkini": - r.push(`${His}`); - if (slave.butt > 9) { - r.push(`giant ass pushes up ${his} swimsuit's tunic.`); - } else if (slave.butt > 6) { - r.push(`large butt is accentuated by ${his} swimsuit.`); - } else if (slave.butt > 3) { - r.push(`big bottom is modestly covered by ${his} swimsuit.`); - } else { - r.push(`rear is modestly covered by ${his} swimsuit.`); - } - break; - case "a long qipao": - r.push(`${His} qipao modestly covers ${his}`); - if (slave.butt > 10) { - r.push(`ass, but it does nothing to conceal its absurd size.`); - } else if (slave.butt > 6) { - r.push(`butt, though it cannot conceal its absurd size.`); - } else if (slave.butt > 3) { - r.push(`big butt.`); - } else { + r.push(`rear.`); + } + switch (slave.sexualFlaw) { + case "neglectful": + r.push(`"For Your Pleasure"`); + break; + case "cum addict": + r.push(`"Cum Deep Inside"`); + break; + case "anal addict": + r.push(`"Stick It In"`); + break; + case "attention whore": + r.push(`"Have a Look"`); + break; + case "breast growth": + r.push(`"Action Around Front"`); + break; + case "abusive": + r.push(`"No Escape"`); + break; + case "malicious": + r.push(`"Ball Breaker"`); + break; + case "self hating": + r.push(`"Ride Me Dry"`); + break; + case "breeder": + r.push(`"Wrong Hole"`); + break; + default: + if (slave.fetishKnown === 1) { + switch (slave.fetish) { + case "submissive": + r.push(`"Bend Me Over"`); + break; + case "cumslut": + r.push(`"Cum Hither"`); + break; + case "humiliation": + r.push(`"Pants Me"`); + break; + case "buttslut": + r.push(`"Your Hands Here"`); + break; + case "boobs": + r.push(`"Grope My Tits"`); + break; + case "sadist": + r.push(`"Crush Warning"`); + break; + case "masochist": + r.push(`"I've Been Bad"`); + break; + case "dom": + r.push(`"Always On Top"`); + break; + case "pregnancy": + r.push(`"Knock Me Up"`); + break; + case "mindbroken": + r.push(`"No Objections"`); + break; + default: + r.push(`"Fuck My Ass"`); + break; + } + } else { + r.push(App.Desc.inscrip(slave)); + } + } + r.push(`is written across the seat of ${his} pants in large, vibrant letters.`); + break; + case "a kimono": + r.push(`${His} kimono demurely covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, it does nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side,`); + if (slave.butt > 10) { + r.push(`and ${his} ass is so massive that the rear part of the qipao rests meekly atop it.`); + } else if (slave.butt > 6) { + r.push(`and ${his} ass is so big that the rear part of the qipao only covers its top half.`); + } else { + r.push(`baring quite a bit of the side of each buttock.`); + } + break; + case "uncomfortable straps": + r.push(`${His} slave outfit's`); + if (slave.butt > 10) { + r.push(`straining straps frame ${his} colossal rear, with a strap disappearing under each inhuman buttock.`); + } else if (slave.butt > 6) { + r.push(`straining straps frame ${his} enormous rear, with a strap disappearing under each massive buttock.`); + } else if (slave.butt > 3) { + r.push(`straining straps frame ${his} enormous buttocks, with a strap passing uncomfortably under each one.`); + } else { + r.push(`straps frame ${his} buttocks, with a strap passing uncomfortably between them.`); + } + break; + case "shibari ropes": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`inhuman ass strains the tight ropes that frame it. Ass flesh bulges from between the ropes.`); + } else if (slave.butt > 6) { + r.push(`massive ass almost explodes out of the tight ropes that frame it.`); + } else if (slave.butt > 3) { + r.push(`big buttocks are deliciously framed by tight ropes.`); + } else { + r.push(`cute buttocks are each lifted by a rope that passes under them.`); + } + break; + case "restrictive latex": + if (slave.butt > 10) { + r.push(`The latex creaks ominously as it is strained by ${his} inhuman ass.`); + } else if (slave.butt > 6) { + r.push(`The latex creaks ominously as it is strained by ${his} massive ass.`); + } else if (slave.butt > 3) { + r.push(`${His} big buttocks strain the latex.`); + } else { + r.push(`The latex makes ${his} ass look even shapelier.`); + } + break; + case "attractive lingerie": + r.push(`${His} pretty lace g-string`); + if (slave.butt > 10) { + r.push(`disappears between ${his} inhuman buttocks.`); + } else if (slave.butt > 6) { + r.push(`disappears between ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`peeks out from between ${his} big buttocks.`); + } else { + r.push(`makes ${his} buttocks especially delectable.`); + } + break; + case "a succubus outfit": + r.push(`A tail sprouts from under ${his} little leather skirt, curving upward to end in a spade tip. It holds the skirt up in back, leaving ${his} ass totally bare.`); + break; + case "a slutty maid outfit": + r.push(`${His} maid dress`); + if (slave.butt > 10) { + r.push(`fails to cover any of ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`only covers the top quarter of ${his} massive`); + } else if (slave.butt > 3) { + r.push(`ends halfway down ${his} big`); + } else { + r.push(`ends three-quarters of the way down ${his}`); + } + r.push(`buttocks.`); + break; + case "a nice maid outfit": + r.push(`${His} maid dress`); + if (slave.butt > 10) { + r.push(`strains at the seams holding back ${his} massive`); + } else if (slave.butt > 6) { + r.push(`struggles to conceal ${his} huge`); + } else if (slave.butt > 3) { + r.push(`accentuates the curves of ${his} big`); + } else { + r.push(`demurely covers ${his}`); + } + r.push(`buttocks.`); + break; + case "a string bikini": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`slutty string bikini bottom disappears between ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`slutty string bikini bottom disappears between ${his} huge`); + } else if (slave.butt > 3) { + r.push(`slutty string bikini bottom peeks out from between ${his} big`); + } else { + r.push(`string bikini bottom runs enticingly down between ${his}`); + } + r.push(`buttocks.`); + break; + case "a scalemail bikini": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`barbaric scalemail bikini bottom barely covers ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`barbaric scalemail bikini bottom only somewhat covers ${his} huge`); + } else if (slave.butt > 3) { + r.push(`barbaric scalemail bikini bottom enticingly covers ${his} big`); + } else { + r.push(`scalemail bikini bottom completely covers ${his}`); + } + r.push(`buttocks.`); + break; + case "striped panties": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`cute panties barely covers ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`cute panties only somewhat covers ${his} huge`); + } else if (slave.butt > 3) { + r.push(`cute panties enticingly covers ${his} big`); + } else { + r.push(`cute panties completely covers ${his}`); + } + r.push(`buttocks.`); + break; + case "spats and a tank top": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`huge rear threatens to tear apart ${his} spats upon any movement.`); + } else if (slave.butt > 6) { + r.push(`large ass is constrained by ${his} tightly-worn spats.`); + } else if (slave.butt > 3) { + r.push(`spats snugly fit around ${his} big butt.`); + } else { + r.push(`spats snugly fit ${his} butt.`); + } + break; + case "lederhosen": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`huge rear threatens to tear apart ${his} shorts upon any movement.`); + } else if (slave.butt > 6) { + r.push(`large ass is constrained by ${his} tightly-worn shorts.`); + } else if (slave.butt > 3) { + r.push(`shorts snugly fit around ${his} big butt.`); + } else { + r.push(`shorts snugly fit ${his} butt.`); + } + break; + case "a cheerleader outfit": + r.push(`${His} pleated cheerleader skirt rests`); + if (slave.butt > 10) { + r.push(`atop ${his} massive ass.`); + } else if (slave.butt > 6) { + r.push(`atop ${his} huge ass.`); + } else if (slave.butt > 3) { + r.push(`over ${his} plump butt.`); + } else { + r.push(`over ${his} cute butt.`); + } + break; + case "clubslut netting": + r.push(`${His} netting`); + if (slave.butt > 6) { + r.push(`strains to support ${his} massive behind.`); + } else if (slave.butt > 3) { + r.push(`strains to restrain ${his} big behind.`); + } else { + r.push(`technically covers ${his} cute butt, but it's all visible.`); + } + break; + case "cutoffs and a t-shirt": + r.push(`${His} cutoffs`); + if (slave.butt > 10) { + r.push(`fail to cover ${his} massive buttocks, with the jean material disappearing between them.`); + } else if (slave.butt > 6) { + r.push(`fail to cover ${his} huge buttocks, with the jean material almost disappearing between them.`); + } else if (slave.butt > 3) { + r.push(`bare the bottom of each of ${his} big buttocks.`); + } else { + r.push(`bare a little buttock in back.`); + } + break; + case "a slutty outfit": + if (slave.butt > 5) { + r.push(`Many of ${his} choices of slutty outfit leave all or part of ${his} huge buttocks bare.`); + } else { + r.push(`Some of ${his} choices of slutty outfit reveal part of ${his} buttocks.`); + } + break; + case "a slutty nurse outfit": + r.push(`${His}`); + if (slave.butt > 10) { + r.push(`massive buttocks are easily visible below the hem of ${his} tight skirt.`); + } else if (slave.butt > 6) { + r.push(`huge buttocks are easily visible below the hem of ${his} tight skirt.`); + } else if (slave.butt > 3) { + r.push(`big butt is just visible past the hem of ${his} tight skirt.`); + } else { + r.push(`tight skirt comes down to just below the bottom of ${his} buttocks.`); + } + break; + case "a schoolgirl outfit": + r.push(`${His} skirt`); + if (slave.butt > 10) { + r.push(`can't begin to cover ${his} massive butt, and just rests on top of ${his} buttocks, leaving virtually ${his} entire behind`); + } else if (slave.butt > 6) { + r.push(`can't begin to cover ${his} huge butt, and just rests on top of ${his} buttocks, leaving virtually ${his} entire behind`); + } else if (slave.butt > 3) { + r.push(`only covers the top of ${his} big butt, leaving most of ${his} bottom`); + } else { + r.push(`only covers the top half of ${his} butt, leaving the bottom half of ${his} behind`); + } + r.push(`bare.`); + break; + case "a fallen nuns habit": + r.push(`${His} latex habit parts to leave ${his}`); + if (slave.butt > 10) { + r.push(`inhuman`); + } else if (slave.butt > 6) { + r.push(`massive`); + } else if (slave.butt > 3) { + r.push(`big`); + } + r.push(`buttocks bare.`); + break; + case "a chattel habit": + r.push(`The belt around ${his} ribs has two long strips of white fabric hanging from it, down ${his} front and back, leaving ${his} sides bare from ${his} flanks down to ${his} hips. ${His}`); + if (slave.butt > 10) { + r.push(`massive buttocks have a way of trapping the strip of fabric in back between them.`); + } else if (slave.butt > 6) { + r.push(`huge buttocks have a way of trapping the strip of fabric in back between them.`); + } else if (slave.butt > 3) { + r.push(`big buttocks force the strip of fabric in back to swoop out over them.`); + } else { + r.push(`cute buttocks are just curved enough to push the strip in back out a bit.`); + } + break; + case "a halter top dress": + r.push(`${His} beautiful halter top dress is`); + if (slave.butt > 10) { + r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`tailored as possible for ${his} massive`); + } else if (slave.butt > 3) { + r.push(`tailored to flatter ${his} big`); + } else { + r.push(`almost sculpted over ${his}`); + } + r.push(`buttocks.`); + break; + case "a dirndl": + r.push(`${His} beautiful dirndl is`); + if (slave.butt > 10) { + r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`tailored as possible for ${his} massive`); + } else if (slave.butt > 3) { + r.push(`tailored to flatter ${his} big`); + } else { + r.push(`almost sculpted over ${his}`); + } + r.push(`buttocks.`); + break; + case "a biyelgee costume": + r.push(`${His} beautiful costume is`); + if (slave.butt > 10) { + r.push(`tailored, but still strains at the seams to hold ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`tailored as possible for ${his} massive`); + } else if (slave.butt > 3) { + r.push(`tailored to flatter ${his} big`); + } else { + r.push(`almost sculpted over ${his}`); + } + r.push(`buttocks.`); + break; + case "a ball gown": + r.push(`${His} fabulous silken ball gown is draped`); + if (slave.butt > 10) { + r.push(`as tastefully as possible for ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`as tastefully as possible for ${his} massive`); + } else if (slave.butt > 3) { + r.push(`around ${his} big`); + } else { + r.push(`around ${his}`); + } + r.push(`buttocks.`); + break; + case "nice business attire": + r.push(`${His} suit skirt`); + if (slave.butt > 10) { + r.push(`is tailored but still strains to restrain ${his} massive buttocks.`); + } else if (slave.butt > 6) { + r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`is tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hugs ${his} derrière.`); + } + break; + case "slutty business attire": + r.push(`${His} skirt is so short that`); + if (slave.butt > 10) { + r.push(`quite a lot of inhumanly large`); + } else if (slave.butt > 6) { + r.push(`quite a lot of massive`); + } else if (slave.butt > 3) { + r.push(`more than a hint of`); + } else { + r.push(`a hint of`); + } + r.push(`buttock is visible in back.`); + break; + case "a comfortable bodysuit": + r.push(`${His} bodysuit comfortably hugs ${his}`); + if (slave.butt > 10) { + r.push(`massive`); + } r.push(`butt.`); - } - break; - case "a Santa dress": - r.push(`The hemline of ${his} dress is intentionally too high,`); - if (slave.butt > 10) { - r.push(`leaving the entirety of ${his} massive ass exposed.`); - } else if (slave.butt > 6) { - r.push(`covering only the topmost portion of ${his} giant rear.`); - } else if (slave.butt > 3) { - r.push(`only managing to cover half of ${his} big butt.`); - } else if (slave.butt > 2) { - r.push(`exposing the very bottom of ${his} asscheeks.`); - } else { - r.push(`just barely managing to cover ${his} rear.`); - } - break; - case "a courtesan dress": - r.push(`${His} dress elegantly drapes across ${his}`); - if (slave.butt > 10) { - r.push(`inhuman buttocks, fanning wide as it travels down the lewd masses.`); - } else if (slave.butt > 6) { - r.push(`massive buttocks, giving a tantalizing view as it parts ever so slightly.`); - } else if (slave.butt > 3) { - r.push(`buttocks, making it look larger than it already is.`); - } else { + break; + case "a latex catsuit": + if (slave.butt > 10) { + r.push(`The latex creaks ominously as it is strained by ${his} inhuman ass.`); + } else if (slave.butt > 6) { + r.push(`The latex creaks ominously as it is strained by ${his} massive ass.`); + } else if (slave.butt > 3) { + r.push(`${His} latex covered big buttocks are shapely and smooth.`); + } else { + r.push(`${His} latex covered buttocks are shapely and smooth.`); + } + break; + case "a military uniform": + r.push(`${His} uniform skirt`); + if (slave.butt > 10) { + r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`is tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hugs ${his} derrière.`); + } + break; + case "a mounty outfit": + r.push(`${His} uniform slacks`); + if (slave.butt > 10) { + r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`are tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hug ${his} derrière.`); + } + break; + case "a schutzstaffel uniform": + r.push(`${His} uniform trousers`); + if (slave.butt > 10) { + r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`are tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hug ${his} derrière.`); + } + break; + case "a slutty schutzstaffel uniform": + r.push(`${His} uniform miniskirt`); + if (slave.butt > 10) { + r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`is tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hug ${his} derrière.`); + } + break; + case "a red army uniform": + r.push(`${His} uniform skirt`); + if (slave.butt > 10) { + r.push(`is tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`is tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`is tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hugs ${his} derrière.`); + } + break; + case "a mini dress": + r.push(`${His} scandalously short dress`); + if (slave.butt > 10) { + r.push(`is impossible to pull over ${his} enormous buttocks, leaving ${his} behind entirely exposed.`); + } else if (slave.butt > 6) { + r.push(`is at constant risk of sliding above ${his} huge butt and leaving ${his} behind entirely exposed.`); + } else if (slave.butt > 3) { + r.push(`barely covers half of ${his} ample buttocks.`); + } else { + r.push(`barely manages to cover ${his} buttocks.`); + } + break; + case "an apron": + r.push(`${His} girly, frilly apron offers no protection in the back, leaving ${his}`); + if (slave.butt > 10) { + r.push(`enormous buttocks`); + } else if (slave.butt > 6) { + r.push(`huge buttocks`); + } else if (slave.butt > 3) { + r.push(`ample buttocks`); + } else { + r.push(`buttocks`); + } + r.push(`completely exposed.`); + break; + case "a leotard": + r.push(`${His} high-sided leotard leaves ${his} hips totally bare, and`); + if (slave.butt > 10) { + r.push(`disappears completely between ${his} enormous buttocks.`); + } else if (slave.butt > 6) { + r.push(`disappears completely between ${his} buttocks.`); + } else if (slave.butt > 3) { + r.push(`almost disappears between ${his} buttocks.`); + } else { + r.push(`leaves ${his} buttocks bare.`); + } + break; + case "a monokini": + r.push(`${His} monokini covers ${his} buttocks fully, the fabric clinging to each`); + if (slave.butt > 10) { + r.push(`gargantuan cheek.`); + } else if (slave.butt > 6) { + r.push(`giant cheek.`); + } else if (slave.butt > 3) { + r.push(`substantial cheek.`); + } else { + r.push(`cheek.`); + } + break; + case "a cybersuit": + r.push(`${His} bodysuit covers ${his} buttocks fully, the material stretching tightly against ${his}`); + if (slave.butt > 10) { + r.push(`gargantuan assflesh.`); + } else if (slave.butt > 6) { + r.push(`giant assflesh.`); + } else if (slave.butt > 3) { + r.push(`substantial assflesh.`); + } else { + r.push(`assflesh.`); + } + break; + case "a tight Imperial bodysuit": + r.push(`${His} cybernetic bodysuit covers ${his} butt fully, the material unapologetically riding up ${his}`); + if (slave.butt > 10) { + r.push(`gargantuan ass, showing off every last dimple as it wobbles.`); + } else if (slave.butt > 6) { + r.push(`massive rear, showing off every last dimple as it jiggles.`); + } else if (slave.butt > 3) { + r.push(`heavy rear, showing off every last dimple as ${he} moves.`); + } else { + r.push(`slender asscheeks, showing off every last dimple as ${he} moves.`); + } + break; + case "battlearmor": + r.push(`${His} armor covers ${his} buttocks fully, stretching tightly against ${his}`); + if (slave.butt > 10) { + r.push(`gargantuan assflesh.`); + } else if (slave.butt > 6) { + r.push(`giant assflesh.`); + } else if (slave.butt > 3) { + r.push(`substantial assflesh.`); + } else { + r.push(`assflesh.`); + } + break; + case "Imperial Plate": + r.push(`${His} ultra-heavy armor completely covers ${his} rear, `); + if (slave.butt > 10) { + r.push(`but is clearly distinct anyway, ${his} undeniable assmeat creating two gargantuan plated globes in the back.`); + } else if (slave.butt > 6) { + r.push(`but ${his} huge ass makes itself known anyway, each cheek requiring an individually rounded plate that seems to somehow wobble even underneath the ludicrously heavy armor.`); + } else if (slave.butt > 3) { + r.push(`but ${his} heavy butt pushes out the massive plating a little slightly, making its large size obvious.`); + } else { + r.push(`creating an elegant, slim set of aerodynamic plate in the back.`); + } + break; + case "a bunny outfit": + r.push(`${His} teddy is actually quite modest in back, covering ${his} buttocks in tight satin with a fluffy white cottontail positioned over ${his} tailbone.`); + break; + case "harem gauze": + r.push(`${His} harem gauze filmily covers`); + if (slave.butt > 10) { + r.push(`the acres of assflesh.`); + } else if (slave.butt > 6) { + r.push(`the expanse of ${his} assflesh.`); + } else if (slave.butt > 3) { + r.push(`${his} big buttocks.`); + } else { + r.push(`${his} buttocks.`); + } + break; + case "slutty jewelry": + r.push(`${His} bangles include a loose chain about ${his} waist that`); + if (slave.butt > 10) { + r.push(`${he} constantly has to fish out of the cleft between ${his} inhuman`); + } else if (slave.butt > 6) { + r.push(`${he} constantly has to fish out of the cleft between ${his} massive`); + } else if (slave.butt > 3) { + r.push(`dips seductively down toward the cleft between ${his} big`); + } else { + r.push(`dips seductively down toward the cleft between ${his}`); + } r.push(`buttocks.`); - } - break; - case "a bimbo outfit": - r.push(`${His} scandalously short miniskirt`); - if (slave.butt > 10) { - r.push(`is impossible to pull over ${his} enormous buttocks, leaving ${his} behind entirely exposed. The only hint of ${his} thong are a pair of straps disappearing into ${his} crack.`); - } else if (slave.butt > 6) { - r.push(`is impossible to pull over ${his} huge butt, leaving ${his} behind entirely exposed as its enormity has since devoured ${his} thong.`); - } else if (slave.butt > 3) { - r.push(`is constantly sliding up ${his} ample buttocks, leaving ${his} thong completely visible.`); - } else { - r.push(`barely manages to cover even half ${his} buttocks, leaving ${his} thong completely visible.`); - } - break; - case "battledress": - r.push(`${His} fatigue pants`); - if (slave.butt > 10) { - r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); - } else if (slave.butt > 6) { - r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); - } else if (slave.butt > 3) { - r.push(`are tailored to flatter ${his} big buttocks.`); - } else { - r.push(`tastefully hug ${his} derrière.`); - } - break; - default: + break; + case "overalls": + r.push(`${His} overalls decently cover ${his}`); + if (slave.butt > 10) { + r.push(`ass, but they do nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`butt, though they cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${His} abaya modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a klan robe": + r.push(`${His} robe modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a hijab and blouse": + r.push(`${His} skirt modestly covers ${his}`); + if (slave.butt > 8) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 5) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a burqa": + r.push(`${His} burqa modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a tube top and thong": + case "a thong": + case "a slutty klan robe": + case "a t-shirt and thong": + r.push(`${His} thong leaves ${his}`); + if (slave.butt > 10) { + r.push(`butt completely bare, as it has long since been lost in its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt completely bare, as its enormity has since devoured it.`); + } else if (slave.butt > 3) { + r.push(`big butt completely visible.`); + } else { + r.push(`butt completely visible.`); + } + break; + case "a button-up shirt and panties": + case "a sweater and panties": + case "panties and pasties": + case "a t-shirt and panties": + case "a tank-top and panties": + case "striped underwear": + case "panties": + r.push(`${His} panties partially cover ${his}`); + if (slave.butt > 10) { + r.push(`ass, but does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it does not conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a tank-top": + case "a tube top": + case "a striped bra": + case "an oversized t-shirt": + case "a t-shirt": + case "a sports bra": + case "pasties": + r.push(`${His} clothing leaves ${his}`); + if (slave.butt > 10) { + r.push(`mammoth ass completely bare.`); + } else if (slave.butt > 7) { + r.push(`huge ass completely bare.`); + } else if (slave.butt > 3) { + r.push(`big ass completely bare.`); + } else { + r.push(`ass completely bare.`); + } + break; + case "a gothic lolita dress": + r.push(`${His} dress modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a hanbok": + r.push(`${His} hanbok modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a police uniform": + r.push(`${His} police trousers modestly cover ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`${His} outfit immodestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, and does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, and does nothing to conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a one-piece swimsuit": + r.push(`${His} swimsuit modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a t-shirt and jeans": + case "cutoffs": + case "jeans": + case "a sweater and cutoffs": + r.push(`${His} jeans modestly cover ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a skimpy loincloth": + r.push(`${His} loincloth barely covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "an oversized t-shirt and boyshorts": + case "boyshorts": + r.push(`${His} boy shorts modestly cover ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`${His} shorts cling tightly to ${his}`); + if (slave.butt > 10) { + r.push(`ass, but do nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`butt, though they cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "leather pants and pasties": + case "leather pants": + case "leather pants and a tube top": + r.push(`${His} leather pants snugly cover ${his}`); + if (slave.butt > 10) { + r.push(`curvaceously mammoth ass, but do nothing to conceal its absurd size.`); + } else if (slave.butt > 7) { + r.push(`curvaceously huge ass, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`curvaceous big ass.`); + } else { + r.push(`curvaceous ass.`); + } + break; + case "a burkini": + r.push(`${His}`); + if (slave.butt > 9) { + r.push(`giant ass pushes up ${his} swimsuit's tunic.`); + } else if (slave.butt > 6) { + r.push(`large butt is accentuated by ${his} swimsuit.`); + } else if (slave.butt > 3) { + r.push(`big bottom is modestly covered by ${his} swimsuit.`); + } else { + r.push(`rear is modestly covered by ${his} swimsuit.`); + } + break; + case "a long qipao": + r.push(`${His} qipao modestly covers ${his}`); + if (slave.butt > 10) { + r.push(`ass, but it does nothing to conceal its absurd size.`); + } else if (slave.butt > 6) { + r.push(`butt, though it cannot conceal its absurd size.`); + } else if (slave.butt > 3) { + r.push(`big butt.`); + } else { + r.push(`butt.`); + } + break; + case "a Santa dress": + r.push(`The hemline of ${his} dress is intentionally too high,`); + if (slave.butt > 10) { + r.push(`leaving the entirety of ${his} massive ass exposed.`); + } else if (slave.butt > 6) { + r.push(`covering only the topmost portion of ${his} giant rear.`); + } else if (slave.butt > 3) { + r.push(`only managing to cover half of ${his} big butt.`); + } else if (slave.butt > 2) { + r.push(`exposing the very bottom of ${his} asscheeks.`); + } else { + r.push(`just barely managing to cover ${his} rear.`); + } + break; + case "a courtesan dress": + r.push(`${His} dress elegantly drapes across ${his}`); + if (slave.butt > 10) { + r.push(`inhuman buttocks, fanning wide as it travels down the lewd masses.`); + } else if (slave.butt > 6) { + r.push(`massive buttocks, giving a tantalizing view as it parts ever so slightly.`); + } else if (slave.butt > 3) { + r.push(`buttocks, making it look larger than it already is.`); + } else { + r.push(`buttocks.`); + } + break; + case "a bimbo outfit": + r.push(`${His} scandalously short miniskirt`); + if (slave.butt > 10) { + r.push(`is impossible to pull over ${his} enormous buttocks, leaving ${his} behind entirely exposed. The only hint of ${his} thong are a pair of straps disappearing into ${his} crack.`); + } else if (slave.butt > 6) { + r.push(`is impossible to pull over ${his} huge butt, leaving ${his} behind entirely exposed as its enormity has since devoured ${his} thong.`); + } else if (slave.butt > 3) { + r.push(`is constantly sliding up ${his} ample buttocks, leaving ${his} thong completely visible.`); + } else { + r.push(`barely manages to cover even half ${his} buttocks, leaving ${his} thong completely visible.`); + } + break; + case "battledress": + r.push(`${His} fatigue pants`); + if (slave.butt > 10) { + r.push(`are tailored as tastefully as possible to restrain ${his} enormous buttocks, though its massive size strains the seams.`); + } else if (slave.butt > 6) { + r.push(`are tailored as tastefully as possible to restrain ${his} huge buttocks.`); + } else if (slave.butt > 3) { + r.push(`are tailored to flatter ${his} big buttocks.`); + } else { + r.push(`tastefully hug ${his} derrière.`); + } + break; + default: + } } } } diff --git a/src/npc/descriptions/butt/buttplug.js b/src/npc/descriptions/butt/buttplug.js index 9d723c161242ac1fbf5ea231ddd884d95f7c9cc5..8bc3ef985ae0aaa90c5172e430c9cd9413f9b5ef 100644 --- a/src/npc/descriptions/butt/buttplug.js +++ b/src/npc/descriptions/butt/buttplug.js @@ -24,591 +24,589 @@ App.Desc.buttplug = function(slave, {market, eventDescription} = {}) { } } else { if (V.showClothing === 1 && !market) { - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`The suit has a wide opening for its rear hole, leaving the anus bare and unprotected.`); - break; - case "chains": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is completely visible and a chain runs down around it.`); - } else { - r.push(`Another chain runs down ${his}`); - if (slave.anus > 2) { - r.push(`asscrack; ${his} asshole is so huge that it occasionally threatens to swallow one of the links.`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "buttplug" in clothing.desc) { + r.push(clothing.desc.buttplug(slave)); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`The suit has a wide opening for its rear hole, leaving the anus bare and unprotected.`); + break; + case "chains": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is completely visible and a chain runs down around it.`); } else { - r.push(`asscrack.`); + r.push(`Another chain runs down ${his}`); + if (slave.anus > 2) { + r.push(`asscrack; ${his} asshole is so huge that it occasionally threatens to swallow one of the links.`); + } else { + r.push(`asscrack.`); + } } - } - break; - case "Western clothing": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is completely visible from the rear.`); - } else { - r.push(`With ${his} ass bare,`); - if (slave.anus > 2) { - r.push(`${his} huge asshole is very visible from the rear.`); - } else if (slave.anus > 1) { - r.push(`${his} roomy asshole is very visible from the rear.`); + break; + case "Western clothing": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is completely visible from the rear.`); } else { - r.push(`there is an occasional glimpse of ${his} asshole.`); + r.push(`With ${his} ass bare,`); + if (slave.anus > 2) { + r.push(`${his} huge asshole is very visible from the rear.`); + } else if (slave.anus > 1) { + r.push(`${his} roomy asshole is very visible from the rear.`); + } else { + r.push(`there is an occasional glimpse of ${his} asshole.`); + } } - } - break; - case "body oil": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is visible from the rear.`); - } else { - r.push(`With ${his} butt bare,`); - if (slave.anus > 2) { - r.push(`${his} huge, well-oiled asshole is very visible from the rear.`); - } else if (slave.anus > 1) { - r.push(`${his} roomy, well-oiled asshole is very visible from the rear.`); + break; + case "body oil": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is visible from the rear.`); } else { - r.push(`there is an occasional glimpse of ${his} well-oiled asshole.`); + r.push(`With ${his} butt bare,`); + if (slave.anus > 2) { + r.push(`${his} huge, well-oiled asshole is very visible from the rear.`); + } else if (slave.anus > 1) { + r.push(`${his} roomy, well-oiled asshole is very visible from the rear.`); + } else { + r.push(`there is an occasional glimpse of ${his} well-oiled asshole.`); + } } - } - break; - case "attractive lingerie for a pregnant woman": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is quite visible under ${his} silken panties.`); - } else { - r.push(`${His}`); - if (slave.anus > 3) { - r.push(`gaping asshole can easily be discerned though ${his} panties.`); + break; + case "attractive lingerie for a pregnant woman": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is quite visible under ${his} silken panties.`); } else { - r.push(`panties completely hide ${his} asshole.`); + r.push(`${His}`); + if (slave.anus > 3) { + r.push(`gaping asshole can easily be discerned though ${his} panties.`); + } else { + r.push(`panties completely hide ${his} asshole.`); + } } - } - break; - case "kitty lingerie": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is quite visible under ${his} silken panties.`); - } else { - r.push(`${His} silken panties cover ${his}`); - if (slave.anus > 3) { - r.push(`gaping asshole.`); + break; + case "kitty lingerie": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is quite visible under ${his} silken panties.`); } else { - r.push(`asshole.`); + r.push(`${His} silken panties cover ${his}`); + if (slave.anus > 3) { + r.push(`gaping asshole.`); + } else { + r.push(`asshole.`); + } + } + break; + case "a maternity dress": + if (slave.chastityAnus) { + r.push(`${His} maternity dress hides ${his} anal chastity accessory underneath.`); + } else { + r.push(`Though ${his} dress covers ${his} rear, ${his} asshole is bare beneath it.`); + } + break; + case "stretch pants and a crop-top": + if (slave.chastityAnus) { + r.push(`${His} tight, form-fitting pants highlight the chastity device hidden beneath them.`); + } else { + r.push(`${His} tight, form-fitting pants conceal ${his} asshole, but even a cursory fondle reveals ${he} isn't wearing any underwear.`); + } + break; + case "spats and a tank top": + if (slave.chastityAnus) { + r.push(`${His} tight, form-fitting shorts make ${his} chastity device obvious.`); + } else { + r.push(`${His} tight, form-fitting shorts hug ${his} asshole so closely that ${his} anus is distinctly visible through the material.`); } - } - break; - case "a maternity dress": - if (slave.chastityAnus) { - r.push(`${His} maternity dress hides ${his} anal chastity accessory underneath.`); - } else { - r.push(`Though ${his} dress covers ${his} rear, ${his} asshole is bare beneath it.`); - } - break; - case "stretch pants and a crop-top": - if (slave.chastityAnus) { - r.push(`${His} tight, form-fitting pants highlight the chastity device hidden beneath them.`); - } else { - r.push(`${His} tight, form-fitting pants conceal ${his} asshole, but even a cursory fondle reveals ${he} isn't wearing any underwear.`); - } - break; - case "spats and a tank top": - if (slave.chastityAnus) { - r.push(`${His} tight, form-fitting shorts make ${his} chastity device obvious.`); - } else { - r.push(`${His} tight, form-fitting shorts hug ${his} asshole so closely that ${his} anus is distinctly visible through the material.`); - } - break; - case "a slutty qipao": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is barely covered from the rear.`); - } else { - if (slave.butt > 6) { - r.push(`The rear hem of ${his} qipao is so inadequate to cover ${his} butt that`); + break; + case "a slutty qipao": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is barely covered from the rear.`); + } else { + if (slave.butt > 6) { + r.push(`The rear hem of ${his} qipao is so inadequate to cover ${his} butt that`); + if (slave.anus > 2) { + r.push(`${his} huge asshole is very visible from the rear.`); + } else if (slave.anus > 1) { + r.push(`${his} roomy asshole is very visible from the rear.`); + } else { + r.push(`there is an occasional glimpse of ${his} asshole.`); + } + } + } + break; + case "uncomfortable straps": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is completely visible. ${His} straps come down around it between ${his} buttocks.`); + } else { + r.push(`The strap between ${his} buttocks has a steel ring over ${his}`); if (slave.anus > 2) { - r.push(`${his} huge asshole is very visible from the rear.`); - } else if (slave.anus > 1) { - r.push(`${his} roomy asshole is very visible from the rear.`); + r.push(`butthole to admit cock. Amusingly, the ring is probably more restrictive than ${his} loose ass.`); } else { - r.push(`there is an occasional glimpse of ${his} asshole.`); + r.push(`asshole to admit cock.`); } } - } - break; - case "uncomfortable straps": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is completely visible. ${His} straps come down around it between ${his} buttocks.`); - } else { - r.push(`The strap between ${his} buttocks has a steel ring over ${his}`); - if (slave.anus > 2) { - r.push(`butthole to admit cock. Amusingly, the ring is probably more restrictive than ${his} loose ass.`); + break; + case "shibari ropes": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is completely visible. ${His} rope passes around it between ${his} buttocks.`); } else { - r.push(`asshole to admit cock.`); + r.push(`The rope between ${his} buttocks passes`); + if (slave.anus > 2) { + r.push(`over ${his} asshole, but ${his} lewd anus is so big that it's visible to either side of it.`); + } else { + r.push(`tightly over ${his} asshole.`); + } } - } - break; - case "shibari ropes": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is completely visible. ${His} rope passes around it between ${his} buttocks.`); - } else { - r.push(`The rope between ${his} buttocks passes`); - if (slave.anus > 2) { - r.push(`over ${his} asshole, but ${his} lewd anus is so big that it's visible to either side of it.`); + break; + case "restrictive latex": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt can be barely made out through the latex.`); } else { - r.push(`tightly over ${his} asshole.`); + r.push(`${His}`); + if (slave.anus > 1) { + r.push(`well-fucked`); + } else { + r.push(`tight`); + } + r.push(`asshole is visible through a hole in the latex, left expressly to admit cock.`); } - } - break; - case "restrictive latex": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt can be barely made out through the latex.`); - } else { - r.push(`${His}`); - if (slave.anus > 1) { - r.push(`well-fucked`); - } else { - r.push(`tight`); - } - r.push(`asshole is visible through a hole in the latex, left expressly to admit cock.`); - } - break; - case "attractive lingerie": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is on display.`); - } else { - r.push(`${His} g-string`); - if (slave.anus > 1) { - r.push(`cannot conceal ${his} well-fucked`); - } else { - r.push(`shows only a hint of ${his} tight`); - } - r.push(`asshole.`); - } - break; - case "a burkini": - case "a monokini": - if (slave.chastityAnus) { - r.push(`${His} anal chastity device is concealed by ${his} swimsuit.`); - } else { - r.push(`${His} swimsuit fully conceals ${his}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole.`); - } else { - r.push(`tight butthole.`); - } - } - break; - case "overalls": - if (slave.chastityAnus) { - r.push(`${His} anal chastity device is concealed by ${his} overalls.`); - } else { - r.push(`${His} overalls give no hint of the`); - if (slave.anus > 1) { - r.push(`well-fucked butthole`); - } else { - r.push(`tight asshole`); - } - r.push(`underneath.`); - } - break; - case "an apron": - if (slave.chastityAnus) { - r.push(`Since ${he} is nude under ${his} apron, ${his} anal chastity device is on open display.`); - } else { - r.push(`Since ${he} is nude under ${his} apron, ${his}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole`); - } else { - r.push(`tight butthole`); - } - r.push(`is on open display.`); - } - break; - case "a cybersuit": - if (slave.chastityAnus) { - r.push(`${His} anal chastity device is integrated into ${his} bodysuit.`); - } else { - r.push(`${His} bodysuit fully conceals ${his}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole.`); - } else { - r.push(`tight butthole.`); - } - } - break; - case "a tight Imperial bodysuit": - if (slave.chastityAnus) { - r.push(`${His} anal chastity device is integrated into ${his} high-tech bodysuit.`); - } else { - r.push(`${His} bodysuit fully conceals ${his}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole.`); - } else { - r.push(`tight butthole.`); - } - } - break; - case "a string bikini": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is integrated into ${his} bikini.`); - } else { - r.push(`${His}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole makes a mockery of ${his} string bikini, which cannot begin to conceal it.`); + break; + case "attractive lingerie": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is on display.`); } else { - r.push(`string bikini shows more than a hint of ${his} tight asshole.`); + r.push(`${His} g-string`); + if (slave.anus > 1) { + r.push(`cannot conceal ${his} well-fucked`); + } else { + r.push(`shows only a hint of ${his} tight`); + } + r.push(`asshole.`); } - } - break; - case "a scalemail bikini": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is integrated into ${his} bikini.`); - } else { - r.push(`${His}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole is concealed by ${his} scalemail bikini.`); + break; + case "a burkini": + case "a monokini": + if (slave.chastityAnus) { + r.push(`${His} anal chastity device is concealed by ${his} swimsuit.`); + } else { + r.push(`${His} swimsuit fully conceals ${his}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole.`); + } else { + r.push(`tight butthole.`); + } + } + break; + case "overalls": + if (slave.chastityAnus) { + r.push(`${His} anal chastity device is concealed by ${his} overalls.`); + } else { + r.push(`${His} overalls give no hint of the`); + if (slave.anus > 1) { + r.push(`well-fucked butthole`); + } else { + r.push(`tight asshole`); + } + r.push(`underneath.`); + } + break; + case "an apron": + if (slave.chastityAnus) { + r.push(`Since ${he} is nude under ${his} apron, ${his} anal chastity device is on open display.`); + } else { + r.push(`Since ${he} is nude under ${his} apron, ${his}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole`); + } else { + r.push(`tight butthole`); + } + r.push(`is on open display.`); + } + break; + case "a cybersuit": + if (slave.chastityAnus) { + r.push(`${His} anal chastity device is integrated into ${his} bodysuit.`); + } else { + r.push(`${His} bodysuit fully conceals ${his}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole.`); + } else { + r.push(`tight butthole.`); + } + } + break; + case "a tight Imperial bodysuit": + if (slave.chastityAnus) { + r.push(`${His} anal chastity device is integrated into ${his} high-tech bodysuit.`); + } else { + r.push(`${His} bodysuit fully conceals ${his}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole.`); + } else { + r.push(`tight butthole.`); + } + } + break; + case "a string bikini": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is integrated into ${his} bikini.`); + } else { + r.push(`${His}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole makes a mockery of ${his} string bikini, which cannot begin to conceal it.`); + } else { + r.push(`string bikini shows more than a hint of ${his} tight asshole.`); + } + } + break; + case "a scalemail bikini": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is integrated into ${his} bikini.`); + } else { + r.push(`${His}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole is concealed by ${his} scalemail bikini.`); + } else { + r.push(`scalemail bikini conceals ${his} tight asshole.`); + } + } + break; + case "striped panties": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is integrated into ${his} panties.`); + } else { + r.push(`${His}`); + if (slave.anus > 1) { + r.push(`well-fucked asshole is concealed by ${his} cute panties.`); + } else { + r.push(`cute panties conceal ${his} tight asshole.`); + } + } + break; + case "clubslut netting": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt is fully visible through the netting.`); + } else { + r.push(`There's a hole in ${his} netting right over ${his}`); + if (slave.anus > 1) { + r.push(`big`); + } else { + r.push(`tight`); + } + r.push(`butthole.`); + } + break; + case "a cheerleader outfit": + r.push(`If ${he} bends over even slightly, the hem of ${his} skirt rides up to reveal`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity belt.`); } else { - r.push(`scalemail bikini conceals ${his} tight asshole.`); + if (slave.anus > 1) { + r.push(`${his} lewd butthole.`); + } else { + r.push(`a hint of ${his} tight anus.`); + } } - } - break; - case "striped panties": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is integrated into ${his} panties.`); - } else { + break; + case "harem gauze": r.push(`${His}`); - if (slave.anus > 1) { - r.push(`well-fucked asshole is concealed by ${his} cute panties.`); - } else { - r.push(`cute panties conceal ${his} tight asshole.`); - } - } - break; - case "clubslut netting": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt is fully visible through the netting.`); - } else { - r.push(`There's a hole in ${his} netting right over ${his}`); - if (slave.anus > 1) { - r.push(`big`); - } else { - r.push(`tight`); - } - r.push(`butthole.`); - } - break; - case "a cheerleader outfit": - r.push(`If ${he} bends over even slightly, the hem of ${his} skirt rides up to reveal`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity belt.`); - } else { - if (slave.anus > 1) { - r.push(`${his} lewd butthole.`); - } else { - r.push(`a hint of ${his} tight anus.`); - } - } - break; - case "harem gauze": - r.push(`${His}`); - if (slave.chastityAnus) { - r.push(`anal chastity belt is clearly`); - } else { - if (slave.anus > 1) { - r.push(`well-fucked asshole is clearly`); - } else { - r.push(`tight ass is tantalizingly`); - } - } - r.push(`visible through ${his} gauze.`); - break; - case "a fallen nuns habit": - if (slave.chastityAnus) { - r.push(`${His} uncovered butt shows off ${his} anal chastity belt clearly when ${he} bends over.`); - } else { - r.push(`With ${his} butt uncovered, committing the sin of sodomy with this nun is as easy as bending ${him} over.`); - } - break; - case "a chattel habit": - if (slave.chastityAnus) { - r.push(`Underneath ${his} chattel habit, ${his} anal chastity belt prevents anal.`); - } else { - r.push(`The strip of cloth over ${his} rear hole can be flipped up for anal, or tucked up under the belt for prolonged sodomy.`); - } - break; - case "a penitent nuns habit": - if (slave.chastityAnus) { - r.push(`Underneath ${his} habit, ${his} anal chastity belt prevents anal.`); - } else { - r.push(`${His} poor sinful asshole is terribly chafed by ${his} habit.`); - } - break; - case "a slutty outfit": - r.push(`${His} slutty outfits`); - if (slave.chastityAnus) { - r.push(`betray ${his} anal chastity belt.`); - } else { - r.push(`are designed for easy access to ${his} asshole.`); - } - break; - case "a slave gown": - if (slave.chastityAnus) { - r.push(`${His} pretty gown hides ${his} anal chastity accessory underneath.`); - } else { - r.push(`Though ${his} gown is very pretty, ${his} asshole is bare beneath it.`); - } - break; - case "a halter top dress": - if (slave.chastityAnus) { - r.push(`${His} beautiful halter top dress hides ${his} anal chastity accessory underneath.`); - } else { - r.push(`Though ${his} halter top dress is very beautiful, ${his} asshole is bare beneath it.`); - } - break; - case "a ball gown": - if (slave.chastityAnus) { - r.push(`${His} fabulous silken ball gown hides ${his} anal chastity accessory underneath.`); - } else { - r.push(`Though ${his} silken ball gown is fabulous, ${his} asshole is bare beneath it.`); - } - break; - case "a comfortable bodysuit": - r.push(`${His} bodysuit is so form-fitting that the shape of ${his}`); - if (slave.chastityAnus) { - r.push(`anal chastity accessory is clearly`); - } else { - r.push(`anus is distinctly`); - } - r.push(`visible.`); - break; - case "a latex catsuit": - r.push(`${His} crotch zipper`); - if (slave.chastityAnus) { - r.push(`does nothing as ${his} anal chastity accessory is underneath it.`); - } else { - r.push(`gives ready access to ${his} asshole.`); - } - break; - case "a leotard": - r.push(`The thin strip of leotard running between`); - if (slave.chastityAnus) { - r.push(`${his}`); - if (hasBothLegs(slave)) { - r.push(`legs`); - } else { - r.push(`hips`); - } - r.push(`are so thin that ${his} anal chastity accessory is clearly visible underneath.`); - } else { - r.push(`${his} buttocks are so thin and snug that the outline of ${his} anus is clearly`); - if (slave.butt > 3) { - r.push(`visible if ${he}'s spread.`); - } else { - r.push(`visible.`); - } - } - break; - case "a mini dress": - r.push(`If ${he} bends over even slightly, the hem of ${his} short dress rides up to reveal ${his}`); - if (slave.chastityAnus) { - r.push(`anal chastity accessory underneath.`); - } else { - if (slave.anus > 1) { - r.push(`lewd butthole.`); - } else { - r.push(`tight anus.`); - } - } - break; - case "a slutty nurse outfit": - if (slave.chastityAnus) { - r.push(`The very tight skirt covers ${his} anal chastity accessory.`); - } else { - r.push(`The skirt is tight enough that lifting it to fuck ${his} butt is an amusing wrestling match.`); - } - break; - case "a schoolgirl outfit": - r.push(`The skirt is so short that it`); - if (slave.chastityAnus) { - r.push(`reveals ${his} anal chastity accessory.`); - } else { - r.push(`doesn't even have to be lifted to fuck ${his} schoolgirl ass.`); - } - break; - case "a hijab and blouse": - r.push(`${His} long skirt may be modest, but it's also loose and easy to lift, allowing access to`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory.`); - } else { - r.push(`${his} anus.`); - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`The abaya may be modest, but it's also loose and easy to lift, allowing access to`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory.`); - } else { - r.push(`${his} anus.`); - } - break; - case "a klan robe": - r.push(`The robe fully covers ${his} body, but it's also loose and easy to lift, allowing access to`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory.`); - } else { - r.push(`${his} anus.`); - } - break; - case "a slutty klan robe": - r.push(`The skimpy robe fails to cover most of ${his} body, allowing easy access to`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory.`); - } else { - r.push(`${his} anus.`); - } - break; - case "a burqa": - r.push(`The burqa's heavy fabric makes it somewhat difficult to lift, which helps to conceal ${his}`); - if (slave.chastityAnus) { - r.push(`anal chastity accessory.`); - } else { + if (slave.chastityAnus) { + r.push(`anal chastity belt is clearly`); + } else { + if (slave.anus > 1) { + r.push(`well-fucked asshole is clearly`); + } else { + r.push(`tight ass is tantalizingly`); + } + } + r.push(`visible through ${his} gauze.`); + break; + case "a fallen nuns habit": + if (slave.chastityAnus) { + r.push(`${His} uncovered butt shows off ${his} anal chastity belt clearly when ${he} bends over.`); + } else { + r.push(`With ${his} butt uncovered, committing the sin of sodomy with this nun is as easy as bending ${him} over.`); + } + break; + case "a chattel habit": + if (slave.chastityAnus) { + r.push(`Underneath ${his} chattel habit, ${his} anal chastity belt prevents anal.`); + } else { + r.push(`The strip of cloth over ${his} rear hole can be flipped up for anal, or tucked up under the belt for prolonged sodomy.`); + } + break; + case "a penitent nuns habit": + if (slave.chastityAnus) { + r.push(`Underneath ${his} habit, ${his} anal chastity belt prevents anal.`); + } else { + r.push(`${His} poor sinful asshole is terribly chafed by ${his} habit.`); + } + break; + case "a slutty outfit": + r.push(`${His} slutty outfits`); + if (slave.chastityAnus) { + r.push(`betray ${his} anal chastity belt.`); + } else { + r.push(`are designed for easy access to ${his} asshole.`); + } + break; + case "a halter top dress": + if (slave.chastityAnus) { + r.push(`${His} beautiful halter top dress hides ${his} anal chastity accessory underneath.`); + } else { + r.push(`Though ${his} halter top dress is very beautiful, ${his} asshole is bare beneath it.`); + } + break; + case "a ball gown": + if (slave.chastityAnus) { + r.push(`${His} fabulous silken ball gown hides ${his} anal chastity accessory underneath.`); + } else { + r.push(`Though ${his} silken ball gown is fabulous, ${his} asshole is bare beneath it.`); + } + break; + case "a comfortable bodysuit": + r.push(`${His} bodysuit is so form-fitting that the shape of ${his}`); + if (slave.chastityAnus) { + r.push(`anal chastity accessory is clearly`); + } else { + r.push(`anus is distinctly`); + } + r.push(`visible.`); + break; + case "a latex catsuit": + r.push(`${His} crotch zipper`); + if (slave.chastityAnus) { + r.push(`does nothing as ${his} anal chastity accessory is underneath it.`); + } else { + r.push(`gives ready access to ${his} asshole.`); + } + break; + case "a leotard": + r.push(`The thin strip of leotard running between`); + if (slave.chastityAnus) { + r.push(`${his}`); + if (hasBothLegs(slave)) { + r.push(`legs`); + } else { + r.push(`hips`); + } + r.push(`are so thin that ${his} anal chastity accessory is clearly visible underneath.`); + } else { + r.push(`${his} buttocks are so thin and snug that the outline of ${his} anus is clearly`); + if (slave.butt > 3) { + r.push(`visible if ${he}'s spread.`); + } else { + r.push(`visible.`); + } + } + break; + case "a mini dress": + r.push(`If ${he} bends over even slightly, the hem of ${his} short dress rides up to reveal ${his}`); + if (slave.chastityAnus) { + r.push(`anal chastity accessory underneath.`); + } else { + if (slave.anus > 1) { + r.push(`lewd butthole.`); + } else { + r.push(`tight anus.`); + } + } + break; + case "a slutty nurse outfit": + if (slave.chastityAnus) { + r.push(`The very tight skirt covers ${his} anal chastity accessory.`); + } else { + r.push(`The skirt is tight enough that lifting it to fuck ${his} butt is an amusing wrestling match.`); + } + break; + case "a schoolgirl outfit": + r.push(`The skirt is so short that it`); + if (slave.chastityAnus) { + r.push(`reveals ${his} anal chastity accessory.`); + } else { + r.push(`doesn't even have to be lifted to fuck ${his} schoolgirl ass.`); + } + break; + case "a hijab and blouse": + r.push(`${His} long skirt may be modest, but it's also loose and easy to lift, allowing access to`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory.`); + } else { + r.push(`${his} anus.`); + } + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`The abaya may be modest, but it's also loose and easy to lift, allowing access to`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory.`); + } else { + r.push(`${his} anus.`); + } + break; + case "a klan robe": + r.push(`The robe fully covers ${his} body, but it's also loose and easy to lift, allowing access to`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory.`); + } else { + r.push(`${his} anus.`); + } + break; + case "a slutty klan robe": + r.push(`The skimpy robe fails to cover most of ${his} body, allowing easy access to`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory.`); + } else { + r.push(`${his} anus.`); + } + break; + case "a burqa": + r.push(`The burqa's heavy fabric makes it somewhat difficult to lift, which helps to conceal ${his}`); + if (slave.chastityAnus) { + r.push(`anal chastity accessory.`); + } else { + if (slave.anus > 2) { + r.push(`immorally used asshole.`); + } else { + r.push(`naked asshole.`); + } + } + break; + case "a slutty maid outfit": + r.push(`The short skirt of ${his} maid dress`); + if (slave.chastityAnus) { + r.push(`covers ${his} anal chastity accessory.`); + } else { + r.push(`is made to be easily liftable for access to ${his} anus.`); + } + break; + case "a nice maid outfit": + r.push(`As conservative as ${his} dress is,`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory still hides under it.`); + } else { + r.push(`${his} anus is still bare beneath it.`); + } + break; + case "a kimono": + r.push(`As demure as the kimono is,`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory still lies beneath it.`); + } else { + r.push(`${his} anus is still bare underneath it.`); + } + break; + case "a Santa dress": + r.push(`The short hem of ${his} festive dress`); + if (slave.chastityAnus) { + r.push(`fails to fully cover ${his} anal chastity device.`); + } else { + r.push(`allows easy access to ${his} anus.`); + } + break; + case "a long qipao": + r.push(`The qipao may be modest, but it's also loose and easy to lift, allowing access to`); + if (slave.chastityAnus) { + r.push(`${his} anal chastity accessory.`); + } else { + r.push(`${his} anus.`); + } + break; + case "a courtesan dress": + if (slave.chastityAnus) { + r.push(`${His} layered skirt, when unparted, hides ${his} anal chastity accessory.`); + } else { + r.push(`${His} skirt may look fancy, but it allows easy access to ${his} bare anus.`); + } + break; + case "a bimbo outfit": + case "a tube top and thong": + case "a thong": + case "a t-shirt and thong": + if (slave.chastityAnus) { + r.push(`${His} anal chastity belt keeps ${his} thong from riding up on ${him}.`); + } else { + r.push(`${His} thong can easily be slipped aside to expose ${his} anus.`); + } + break; + case "conservative clothing": + case "a toga": + case "a huipil": + case "cutoffs and a t-shirt": + case "battledress": + case "battlearmor": + case "Imperial Plate": + case "a mounty outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "slutty business attire": + case "nice business attire": + case "a military uniform": + case "a bunny outfit": + case "a nice nurse outfit": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a button-up shirt and panties": + case "a gothic lolita dress": + case "a hanbok": + case "a bra": + case "a button-up shirt": + case "a nice pony outfit": + case "a sweater": + case "a tank-top": + case "a tube top": + case "a one-piece swimsuit": + case "a police uniform": + case "a striped bra": + case "a skimpy loincloth": + case "a slutty pony outfit": + case "a sports bra": + case "a sweater and panties": + case "a t-shirt": + case "a tank-top and panties": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "leather pants and pasties": + case "leather pants": + case "panties": + case "sport shorts and a t-shirt": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "striped underwear": + case "sport shorts and a sports bra": + case "jeans": + case "a sweater and cutoffs": + case "leather pants and a tube top": + case "sport shorts": + /* We could use chastity belt descriptions! */ + break; + default: if (slave.anus > 2) { - r.push(`immorally used asshole.`); - } else { - r.push(`naked asshole.`); - } - } - break; - case "a slutty maid outfit": - r.push(`The short skirt of ${his} maid dress`); - if (slave.chastityAnus) { - r.push(`covers ${his} anal chastity accessory.`); - } else { - r.push(`is made to be easily liftable for access to ${his} anus.`); - } - break; - case "a nice maid outfit": - r.push(`As conservative as ${his} dress is,`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory still hides under it.`); - } else { - r.push(`${his} anus is still bare beneath it.`); - } - break; - case "a kimono": - r.push(`As demure as the kimono is,`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory still lies beneath it.`); - } else { - r.push(`${his} anus is still bare underneath it.`); - } - break; - case "a Santa dress": - r.push(`The short hem of ${his} festive dress`); - if (slave.chastityAnus) { - r.push(`fails to fully cover ${his} anal chastity device.`); - } else { - r.push(`allows easy access to ${his} anus.`); - } - break; - case "a long qipao": - r.push(`The qipao may be modest, but it's also loose and easy to lift, allowing access to`); - if (slave.chastityAnus) { - r.push(`${his} anal chastity accessory.`); - } else { - r.push(`${his} anus.`); - } - break; - case "a courtesan dress": - if (slave.chastityAnus) { - r.push(`${His} layered skirt, when unparted, hides ${his} anal chastity accessory.`); - } else { - r.push(`${His} skirt may look fancy, but it allows easy access to ${his} bare anus.`); - } - break; - case "a bimbo outfit": - case "a tube top and thong": - case "a thong": - case "a t-shirt and thong": - if (slave.chastityAnus) { - r.push(`${His} anal chastity belt keeps ${his} thong from riding up on ${him}.`); - } else { - r.push(`${His} thong can easily be slipped aside to expose ${his} anus.`); - } - break; - case "conservative clothing": - case "a toga": - case "huipil": - case "cutoffs and a t-shirt": - case "battledress": - case "battlearmor": - case "Imperial Plate": - case "a mounty outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "slutty business attire": - case "nice business attire": - case "a military uniform": - case "a bunny outfit": - case "a nice nurse outfit": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a button-up shirt and panties": - case "a gothic lolita dress": - case "a hanbok": - case "a bra": - case "a button-up shirt": - case "a nice pony outfit": - case "a sweater": - case "a tank-top": - case "a tube top": - case "a one-piece swimsuit": - case "a police uniform": - case "a striped bra": - case "a skimpy loincloth": - case "a slutty pony outfit": - case "a sports bra": - case "a sweater and panties": - case "a t-shirt": - case "a tank-top and panties": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "leather pants and pasties": - case "leather pants": - case "panties": - case "sport shorts and a t-shirt": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "striped underwear": - case "sport shorts and a sports bra": - case "jeans": - case "a sweater and cutoffs": - case "leather pants and a tube top": - case "sport shorts": - /* We could use chastity belt descriptions! */ - break; - default: - if (slave.anus > 2) { - if (slave.chastityAnus) { - r.push(`${His} bare buttocks and ${his} anal chastity accessory are very visible from the rear.`); - } else { - r.push(`With ${his} ass bare, ${his} huge asshole is very visible from the rear.`); - } - } else if (slave.anus > 1) { - if (slave.chastityAnus) { - r.push(`${His} bare buttocks and ${his} anal chastity accessory are very visible from the rear.`); - } else { - r.push(`With ${his} ass bare, ${his} loose asshole is visible from the rear.`); - } - } else { - if (slave.chastityAnus) { - r.push(`${His} bare buttocks and ${his} anal chastity accessory are visible.`); - } else { - r.push(`With ${his} ass bare, there is an occasional glimpse of ${his} asshole.`); - } - } - break; + if (slave.chastityAnus) { + r.push(`${His} bare buttocks and ${his} anal chastity accessory are very visible from the rear.`); + } else { + r.push(`With ${his} ass bare, ${his} huge asshole is very visible from the rear.`); + } + } else if (slave.anus > 1) { + if (slave.chastityAnus) { + r.push(`${His} bare buttocks and ${his} anal chastity accessory are very visible from the rear.`); + } else { + r.push(`With ${his} ass bare, ${his} loose asshole is visible from the rear.`); + } + } else { + if (slave.chastityAnus) { + r.push(`${His} bare buttocks and ${his} anal chastity accessory are visible.`); + } else { + r.push(`With ${his} ass bare, there is an occasional glimpse of ${his} asshole.`); + } + } + break; + } } } } diff --git a/src/npc/descriptions/crotch/crotch.js b/src/npc/descriptions/crotch/crotch.js index 65e940dde4fe175c9a28fe1bb8d6e58b4f5a2e82..c31e2878c48a16c244283b0bd36c5a01ea979318 100644 --- a/src/npc/descriptions/crotch/crotch.js +++ b/src/npc/descriptions/crotch/crotch.js @@ -24,1522 +24,1505 @@ App.Desc.crotch = function(slave, {market, eventDescription} = {}) { r.push(`${slave.slaveName}'s pussy is being serviced by a drug-ejaculating dildo.`); } } else { - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0) { + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "crotch" in clothing.desc) { + r.push(clothing.desc.crotch(slave)); + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0) { + if (slave.dick > 6) { + r.push(`absurd`); + } else if (slave.dick > 4) { + r.push(`big`); + } else if (slave.dick > 2) { + r.push(`modest`); + } else { + r.push(`pathetic`); + } + if (canAchieveErection(slave)) { + r.push(`cock is kept painfully erect by the Fuckdoll suit's systems. It's tightly wrapped in a condom-shaped extension of the suit's protective material, preventing it from feeling any real pleasure.`); + if (slave.scrotum > 0) { + r.push(`${His} ballsack have its own uncomfortably tight pouch in the suit.`); + } + } else { + r.push(`soft cock`); + if (slave.scrotum > 0) { + r.push(`and balls are`); + } else { + r.push(`is`); + } + r.push(`trapped up against its abdomen, under the Fuckdoll suit's protective material.`); + } + } + if (slave.vagina > -1) { + if (slave.dick > 0) { + r.push(`${His} front hole, meanwhile, is left completely bare.`); + } else { + r.push(`front hole is left completely bare by the Fuckdoll suit's protective material.`); + } + } else if (slave.dick === 0) { + r.push(`groin is covered by featureless Fuckdoll material; there's nothing of interest there.`); + } + break; + case "conservative clothing": if (slave.dick > 6) { - r.push(`absurd`); + r.push(`There is an absurd bulge at the crotch of ${slave.slaveName}'s pants.`); + } else if (slave.dick > 3) { + r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s pants.`); + } else if (slave.dick > 1) { + r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s pants.`); + } else { + r.push(`The crotch of ${slave.slaveName}'s pants is perfectly smooth.`); + } + break; + case "spats and a tank top": + if (slave.dick > 7) { + r.push(`There is an absurdly large, tightly hugged bulge running down the leg of ${slave.slaveName}'s spats.`); + if (slave.dick > 8) { + r.push(`${His} spats are too short to keep ${his} dick`); + if (slave.dick === 9) { + r.push(`head`); + } + r.push(`from popping out of ${his} pantleg.`); + } + } else if (slave.dick > 6) { + r.push(`There is an absurdly large, tightly hugged bulge at the crotch of ${slave.slaveName}'s spats.`); + } else if (slave.dick > 3) { + r.push(`There is a tightly hugged bulge at the crotch of ${slave.slaveName}'s spats.`); + } else if (slave.dick > 1) { + r.push(`There is a slight, tightly hugged, bulge at the crotch of ${slave.slaveName}'s spats.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s spats are tight enough to highlight ${his} embarrassingly small cock.`); + } else if (slave.clit > 3) { + r.push(`There is a tightly hugged bulge at the crotch of ${slave.slaveName}'s spats that seems to be really distracting when ${he} moves.`); + } else if (slave.balls > 0 && slave.scrotum > 0) { + r.push(`There is a pair of tightly hugged bulges in the crotch of ${slave.slaveName}'s spats.`); + } else if (slave.vagina > -1) { + r.push(`${His} tight spats hug ${his} crotch so closely that ${his}`); + if (slave.vagina === 0) { + r.push(`virgin`); + } + r.push(`pussy is clearly discernible.`); + } else { + r.push(`${His} tight spats hug ${his} perfectly smooth crotch.`); + } + break; + case "stretch pants and a crop-top": + if (slave.dick > 8) { + r.push(`There is an absurd bulge at the crotch and down the leg of ${slave.slaveName}'s stretch pants.`); } else if (slave.dick > 4) { - r.push(`big`); + r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s stretch pants.`); + } else if (slave.dick > 2) { + r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s stretch pants.`); + } else if (slave.dick > 0) { + r.push(`There is a pathetic bump in the crotch of ${slave.slaveName}'s stretch pants.`); + } else if (slave.vagina > -1) { + r.push(`${His} stretch pants are so tight you can see ${he} isn't wearing underwear right through the fabric.`); + } else { + r.push(`${His} stretch pants are so tight you can see ${he} isn't wearing underwear right through the fabric, not that ${he} has much to hide.`); + } + break; + case "chains": + if (slave.dick > 0) { + r.push(`${slave.slaveName} has chain dangling from around ${his} waist to end next to ${his} cock, so that when ${he} moves, it occasionally strikes ${him} in the dick.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s chains leave ${his} featureless groin bare; there's nothing there to restrain.`); + } else { + r.push(`${slave.slaveName}'s pussy has a chain running tightly between ${his} pussylips.`); + } + break; + case "Western clothing": + r.push(`${slave.slaveName}'s chaps have no crotch, so ${his}`); + if (slave.dick > 2) { + r.push(`dick dangles`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is`); + } else if (slave.dick > 0) { + r.push(`little dick is`); + } else { + r.push(`pussy is`); + } + r.push(`bare.`); + break; + case "body oil": + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`Every surface of ${slave.slaveName}'s hermaphroditic genitalia have been carefully`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s dick has been lovingly`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s featureless groin has been lovingly`); + } else { + r.push(`${slave.slaveName}'s pussy has been lovingly`); + } + r.push(`oiled.`); + break; + case "a toga": + if (slave.dick > 3) { + r.push(`Something is tenting the front of ${slave.slaveName}'s toga.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s dick is hidden behind ${his} toga.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s featureless groin is hidden by ${his} toga.`); + } else { + r.push(`${slave.slaveName}'s pussy is concealed by ${his} toga.`); + } + break; + case "a huipil": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`dick is long enough that its head dangles down below the front of ${his} short huipil.`); + } else if (slave.dick > 0) { + r.push(`huipil occasionally tents in front when ${he} moves.`); + } else if (slave.vagina === -1) { + r.push(`huipil barely comes down far enough to cover ${his} featureless groin.`); + } else { + r.push(`huipil barely comes down far enough to cover ${his} pussy.`); + } + break; + case "attractive lingerie for a pregnant woman": + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.bellyPreg >= 5000) { + r.push(`${slave.slaveName}'s massive erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.bellyPreg >= 5000)) { + r.push(`${slave.slaveName}'s huge erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if ((slave.dick > 3) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s silken panties cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s silken panties demurely cover ${his} hermaphroditic genitalia as long as ${he} doesn't move too much, but ${his} dick has a way of slipping out and uncovering ${his} pussy.`); + } else if (slave.dick > 3) { + r.push(`${slave.slaveName}'s silken panties cannot cover ${his} cock. ${He}'s simply pulled it to one side.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s silken panties demurely cover ${his} dick as long as ${he} doesn't move too much, but it has a way of slipping out.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s silken panties demurely cover ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s silken panties demurely cover ${his} pussy.`); + } + break; + case "a maternity dress": + if (slave.dick > 5) { + r.push(`Something massive can be seen bulging under ${his} dress.`); } else if (slave.dick > 2) { - r.push(`modest`); + r.push(`When ${he} moves, something occasionally tents the front of ${his} dress.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s dress demurely conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s dress demurely conceals ${his} pussy.`); + } + break; + case "a slutty qipao": + r.push(`${slave.slaveName}'s`); + if (slave.bellyPreg >= 5000 || slave.weight > 95 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly") || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`qipao doesn't even come close to reaching ${his} crotch.`); + } else if (slave.dick > 3) { + r.push(`dick is long enough that its head dangles down below the front of ${his} short qipao.`); + } else if (slave.dick > 0) { + r.push(`qipao occasionally tents in front when ${he} moves.`); + } else if (slave.vagina === -1) { + r.push(`qipao barely comes down far enough to cover ${his} featureless groin.`); + } else { + r.push(`qipao barely comes down far enough to cover ${his} pussy.`); + } + break; + case "uncomfortable straps": + r.push(`${slave.slaveName}'s strap`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs`); + } else { + r.push(`along ${his} perineum`); + } + r.push(`has a steel ring`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`around the base of ${his} dick, letting it pass through, and a ring over ${his} pussy.`); + } else if (slave.dick > 0) { + r.push(`the base of ${his} dick, letting it pass through.`); + } else if (slave.vagina === -1) { + r.push(`over the little hole in ${his} featureless groin.`); } else { - r.push(`pathetic`); + r.push(`over ${his} pussy.`); } - if (canAchieveErection(slave)) { - r.push(`cock is kept painfully erect by the Fuckdoll suit's systems. It's tightly wrapped in a condom-shaped extension of the suit's protective material, preventing it from feeling any real pleasure.`); - if (slave.scrotum > 0) { - r.push(`${His} ballsack have its own uncomfortably tight pouch in the suit.`); + break; + case "shibari ropes": + if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`${slave.slaveName}'s ropes bind ${his} huge cock to the bottom of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnant`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly.`); + } else if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s ropes bind ${his} huge cock straight up ${his} abdomen.`); + if (slave.boobs > 400) { + r.push(`It's so long that its head rests between ${his} breasts.`); } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s ropes are woven in a complex pattern to bind all parts of ${his} complicated genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s ropes include a tight loop around the base of ${his} dick.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName} has a couple of ropes framing ${his} featureless groin, to draw attention to it.`); + } else { + r.push(`${slave.slaveName} has a rope passing tightly between ${his} pussylips.`); + } + break; + case "restrictive latex": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia are visible through a special hole in the latex.`); + } else if (slave.dick > 0) { + r.push(`latex has a hole to leave ${his} dick bare and vulnerable.`); + } else if (slave.vagina === -1) { + r.push(`latex has no hole over ${his} featureless groin.`); } else { - r.push(`soft cock`); - if (slave.scrotum > 0) { - r.push(`and balls are`); + r.push(`latex has a hole to leave ${his} pussy bare and vulnerable.`); + } + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`huge erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); } else { - r.push(`is`); + r.push(`swollen belly.`); } - r.push(`trapped up against its abdomen, under the Fuckdoll suit's protective material.`); + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if ((slave.dick > 3) && (slave.vagina > -1)) { + r.push(`lace g-string cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`lace g-string demurely covers ${his} hermaphroditic genitalia as long as ${he} doesn't move too much, but ${his} dick has a way of slipping out and uncovering ${his} pussy.`); + } else if (slave.dick > 3) { + r.push(`lace g-string cannot cover ${his} cock. ${He}'s simply pulled it to one side.`); + } else if (slave.dick > 0) { + r.push(`lace g-string demurely covers ${his} dick as long as ${he} doesn't move too much, but it has a way of slipping out.`); + } else if (slave.vagina === -1) { + r.push(`lace g-string demurely covers ${his} featureless groin.`); + } else { + r.push(`lace g-string demurely covers ${his} pussy.`); } - } - if (slave.vagina > -1) { + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s leather skirt is cut to conceal precisely nothing in front, coming down to just above`); if (slave.dick > 0) { - r.push(`${His} front hole, meanwhile, is left completely bare.`); - } else { - r.push(`front hole is left completely bare by the Fuckdoll suit's protective material.`); - } - } else if (slave.dick === 0) { - r.push(`groin is covered by featureless Fuckdoll material; there's nothing of interest there.`); - } - break; - case "conservative clothing": - if (slave.dick > 6) { - r.push(`There is an absurd bulge at the crotch of ${slave.slaveName}'s pants.`); - } else if (slave.dick > 3) { - r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s pants.`); - } else if (slave.dick > 1) { - r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s pants.`); - } else { - r.push(`The crotch of ${slave.slaveName}'s pants is perfectly smooth.`); - } - break; - case "spats and a tank top": - if (slave.dick > 7) { - r.push(`There is an absurdly large, tightly hugged bulge running down the leg of ${slave.slaveName}'s spats.`); - if (slave.dick > 8) { - r.push(`${His} spats are too short to keep ${his} dick`); - if (slave.dick === 9) { - r.push(`head`); + r.push(`the base of ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${his} featureless groin.`); + } else { + r.push(`${his} clit.`); + } + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s panties`); + if (slave.dick > 5) { + r.push(`can't conceal ${his} giant penis, which is pushed between its fabric cat ears.`); + } else if (slave.dick > 3) { + r.push(`bulge from the size of ${his} large penis.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`cover ${his} dual genitalia.`); + } else if (slave.dick > 0) { + r.push(`cover ${his} penis.`); + } else if (slave.vagina === -1) { + r.push(`cover ${his} genitalia-free groin.`); + } else { + r.push(`cover ${his} pussy.`); + } + break; + case "a burkini": + r.push(`${slave.slaveName}'s burkini is designed to modestly cover ${his}`); + if (slave.dick > 5 && slave.vagina > -1) { + r.push(`dual genitalia, but the size of the bulge between ${his}`); + if (hasBothLegs(slave)) { + r.push(`legs`); + } else { + r.push(`hips`); } - r.push(`from popping out of ${his} pantleg.`); - } - } else if (slave.dick > 6) { - r.push(`There is an absurdly large, tightly hugged bulge at the crotch of ${slave.slaveName}'s spats.`); - } else if (slave.dick > 3) { - r.push(`There is a tightly hugged bulge at the crotch of ${slave.slaveName}'s spats.`); - } else if (slave.dick > 1) { - r.push(`There is a slight, tightly hugged, bulge at the crotch of ${slave.slaveName}'s spats.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s spats are tight enough to highlight ${his} embarrassingly small cock.`); - } else if (slave.clit > 3) { - r.push(`There is a tightly hugged bulge at the crotch of ${slave.slaveName}'s spats that seems to be really distracting when ${he} moves.`); - } else if (slave.balls > 0 && slave.scrotum > 0) { - r.push(`There is a pair of tightly hugged bulges in the crotch of ${slave.slaveName}'s spats.`); - } else if (slave.vagina > -1) { - r.push(`${His} tight spats hug ${his} crotch so closely that ${his}`); - if (slave.vagina === 0) { - r.push(`virgin`); - } - r.push(`pussy is clearly discernible.`); - } else { - r.push(`${His} tight spats hug ${his} perfectly smooth crotch.`); - } - break; - case "stretch pants and a crop-top": - if (slave.dick > 8) { - r.push(`There is an absurd bulge at the crotch and down the leg of ${slave.slaveName}'s stretch pants.`); - } else if (slave.dick > 4) { - r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s stretch pants.`); - } else if (slave.dick > 2) { - r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s stretch pants.`); - } else if (slave.dick > 0) { - r.push(`There is a pathetic bump in the crotch of ${slave.slaveName}'s stretch pants.`); - } else if (slave.vagina > -1) { - r.push(`${His} stretch pants are so tight you can see ${he} isn't wearing underwear right through the fabric.`); - } else { - r.push(`${His} stretch pants are so tight you can see ${he} isn't wearing underwear right through the fabric, not that ${he} has much to hide.`); - } - break; - case "chains": - if (slave.dick > 0) { - r.push(`${slave.slaveName} has chain dangling from around ${his} waist to end next to ${his} cock, so that when ${he} moves, it occasionally strikes ${him} in the dick.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s chains leave ${his} featureless groin bare; there's nothing there to restrain.`); - } else { - r.push(`${slave.slaveName}'s pussy has a chain running tightly between ${his} pussylips.`); - } - break; - case "Western clothing": - r.push(`${slave.slaveName}'s chaps have no crotch, so ${his}`); - if (slave.dick > 2) { - r.push(`dick dangles`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is`); - } else if (slave.dick > 0) { - r.push(`little dick is`); - } else { - r.push(`pussy is`); - } - r.push(`bare.`); - break; - case "body oil": - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`Every surface of ${slave.slaveName}'s hermaphroditic genitalia have been carefully`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s dick has been lovingly`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s featureless groin has been lovingly`); - } else { - r.push(`${slave.slaveName}'s pussy has been lovingly`); - } - r.push(`oiled.`); - break; - case "a toga": - if (slave.dick > 3) { - r.push(`Something is tenting the front of ${slave.slaveName}'s toga.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s dick is hidden behind ${his} toga.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s featureless groin is hidden by ${his} toga.`); - } else { - r.push(`${slave.slaveName}'s pussy is concealed by ${his} toga.`); - } - break; - case "a huipil": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`dick is long enough that its head dangles down below the front of ${his} short huipil.`); - } else if (slave.dick > 0) { - r.push(`huipil occasionally tents in front when ${he} moves.`); - } else if (slave.vagina === -1) { - r.push(`huipil barely comes down far enough to cover ${his} featureless groin.`); - } else { - r.push(`huipil barely comes down far enough to cover ${his} pussy.`); - } - break; - case "attractive lingerie for a pregnant woman": - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.bellyPreg >= 5000) { - r.push(`${slave.slaveName}'s massive erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.bellyPreg >= 5000)) { - r.push(`${slave.slaveName}'s huge erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if ((slave.dick > 3) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s silken panties cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s silken panties demurely cover ${his} hermaphroditic genitalia as long as ${he} doesn't move too much, but ${his} dick has a way of slipping out and uncovering ${his} pussy.`); - } else if (slave.dick > 3) { - r.push(`${slave.slaveName}'s silken panties cannot cover ${his} cock. ${He}'s simply pulled it to one side.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s silken panties demurely cover ${his} dick as long as ${he} doesn't move too much, but it has a way of slipping out.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s silken panties demurely cover ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s silken panties demurely cover ${his} pussy.`); - } - break; - case "a maternity dress": - if (slave.dick > 5) { - r.push(`Something massive can be seen bulging under ${his} dress.`); - } else if (slave.dick > 2) { - r.push(`When ${he} moves, something occasionally tents the front of ${his} dress.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s dress demurely conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s dress demurely conceals ${his} pussy.`); - } - break; - case "a slutty qipao": - r.push(`${slave.slaveName}'s`); - if (slave.bellyPreg >= 5000 || slave.weight > 95 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly") || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`qipao doesn't even come close to reaching ${his} crotch.`); - } else if (slave.dick > 3) { - r.push(`dick is long enough that its head dangles down below the front of ${his} short qipao.`); - } else if (slave.dick > 0) { - r.push(`qipao occasionally tents in front when ${he} moves.`); - } else if (slave.vagina === -1) { - r.push(`qipao barely comes down far enough to cover ${his} featureless groin.`); - } else { - r.push(`qipao barely comes down far enough to cover ${his} pussy.`); - } - break; - case "uncomfortable straps": - r.push(`${slave.slaveName}'s strap`); - if (hasBothLegs(slave)) { - r.push(`between ${his} legs`); - } else { - r.push(`along ${his} perineum`); - } - r.push(`has a steel ring`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`around the base of ${his} dick, letting it pass through, and a ring over ${his} pussy.`); - } else if (slave.dick > 0) { - r.push(`the base of ${his} dick, letting it pass through.`); - } else if (slave.vagina === -1) { - r.push(`over the little hole in ${his} featureless groin.`); - } else { - r.push(`over ${his} pussy.`); - } - break; - case "shibari ropes": - if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`${slave.slaveName}'s ropes bind ${his} huge cock to the bottom of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnant`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly.`); - } else if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s ropes bind ${his} huge cock straight up ${his} abdomen.`); - if (slave.boobs > 400) { - r.push(`It's so long that its head rests between ${his} breasts.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s ropes are woven in a complex pattern to bind all parts of ${his} complicated genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s ropes include a tight loop around the base of ${his} dick.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName} has a couple of ropes framing ${his} featureless groin, to draw attention to it.`); - } else { - r.push(`${slave.slaveName} has a rope passing tightly between ${his} pussylips.`); - } - break; - case "restrictive latex": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia are visible through a special hole in the latex.`); - } else if (slave.dick > 0) { - r.push(`latex has a hole to leave ${his} dick bare and vulnerable.`); - } else if (slave.vagina === -1) { - r.push(`latex has no hole over ${his} featureless groin.`); - } else { - r.push(`latex has a hole to leave ${his} pussy bare and vulnerable.`); - } - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`huge erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if ((slave.dick > 3) && (slave.vagina > -1)) { - r.push(`lace g-string cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`lace g-string demurely covers ${his} hermaphroditic genitalia as long as ${he} doesn't move too much, but ${his} dick has a way of slipping out and uncovering ${his} pussy.`); - } else if (slave.dick > 3) { - r.push(`lace g-string cannot cover ${his} cock. ${He}'s simply pulled it to one side.`); - } else if (slave.dick > 0) { - r.push(`lace g-string demurely covers ${his} dick as long as ${he} doesn't move too much, but it has a way of slipping out.`); - } else if (slave.vagina === -1) { - r.push(`lace g-string demurely covers ${his} featureless groin.`); - } else { - r.push(`lace g-string demurely covers ${his} pussy.`); - } - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s leather skirt is cut to conceal precisely nothing in front, coming down to just above`); - if (slave.dick > 0) { - r.push(`the base of ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${his} featureless groin.`); - } else { - r.push(`${his} clit.`); - } - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s panties`); - if (slave.dick > 5) { - r.push(`can't conceal ${his} giant penis, which is pushed between its fabric cat ears.`); - } else if (slave.dick > 3) { - r.push(`bulge from the size of ${his} large penis.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`cover ${his} dual genitalia.`); - } else if (slave.dick > 0) { - r.push(`cover ${his} penis.`); - } else if (slave.vagina === -1) { - r.push(`cover ${his} genitalia-free groin.`); - } else { - r.push(`cover ${his} pussy.`); - } - break; - case "a burkini": - r.push(`${slave.slaveName}'s burkini is designed to modestly cover ${his}`); - if (slave.dick > 5 && slave.vagina > -1) { - r.push(`dual genitalia, but the size of the bulge between ${his}`); - if (hasBothLegs(slave)) { - r.push(`legs`); + r.push(`shows how well that worked.`); + } else if (slave.dick > 5) { + r.push(`penis, but the size of the bulge between ${his}`); + if (hasBothLegs(slave)) { + r.push(`legs`); + } else { + r.push(`hips`); + } + r.push(`shows how well that worked.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`dual genitalia, which it does.`); + } else if (slave.dick > 0) { + r.push(`penis, which it does.`); + } else if (slave.vagina === -1) { + r.push(`genitalia-free groin, which it does very easily.`); } else { - r.push(`hips`); + r.push(`pussy, which it does.`); } - r.push(`shows how well that worked.`); - } else if (slave.dick > 5) { - r.push(`penis, but the size of the bulge between ${his}`); - if (hasBothLegs(slave)) { - r.push(`legs`); - } else { - r.push(`hips`); - } - r.push(`shows how well that worked.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`dual genitalia, which it does.`); - } else if (slave.dick > 0) { - r.push(`penis, which it does.`); - } else if (slave.vagina === -1) { - r.push(`genitalia-free groin, which it does very easily.`); - } else { - r.push(`pussy, which it does.`); - } - break; - case "a monokini": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`dick creates a large bulge in the front of ${his} monokini.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} monokini.`); - } else if (slave.dick > 0) { - r.push(`dick creates a small bulge in the front of ${his} monokini.`); - } else if (slave.vagina === -1) { - r.push(`monokini bottom has no bulges or ridges at the front or bottom.`); - } else { - r.push(`pussy creates small ridges in the bottom of ${his} monokini.`); - } - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`dick creates a large bulge in the front of ${his} bodysuit.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} bodysuit.`); - } else if (slave.dick > 0) { - r.push(`dick creates a small bulge in the front of ${his} bodysuit.`); - } else if (slave.vagina === -1) { - r.push(`bodysuit conceals the featurelessness of ${his} crotch.`); - } else { - r.push(`pussy creates small soft ridges in the bottom of ${his} bodysuit.`); - } - break; - case "a tight Imperial bodysuit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`fat dick creates an obvious bulge at the front of ${his} bodysuit.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} bodysuit.`); - } else if (slave.dick > 0) { - r.push(`dick creates a fairly pathetic bulge at the front of ${his} bodysuit.`); - } else if (slave.vagina === -1) { - r.push(`bodysuit conceals the featurelessness of ${his} crotch.`); - } else { - r.push(`pussy creates the clear indent of a puffy cameltoe at the crotch of ${his} bodysuit.`); - } - break; - case "a string bikini": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`huge erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { - r.push(`erection is so massive that ${he}'s got it restrained behind ${his} string bikini top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); - } - } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20) { - r.push(`erection is so big that ${he}'s got it restrained behind ${his} string bikini top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`just given up and pushed ${his} bikini bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`); - } else if (slave.dick > 0) { - r.push(`string bikini bottom is more of a banana hammock, in front.`); - } else if (slave.vagina === -1) { - r.push(`string bikini conceals the featurelessness of ${his} groin.`); - } else { - r.push(`string bikini runs lewdly between ${his} pussylips.`); - } - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`huge erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { - r.push(`erection is so massive that ${he}'s got it restrained behind ${his} scalemail bikini top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is so big that ${he}'s got it restrained behind ${his} scalemail bikini top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`just given up and pushed ${his} scalemail bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`); - } else if (slave.dick > 0) { - r.push(`scalemail bikini bottom is more of a banana hammock, in front.`); - } else { - r.push(`scalemail bikini conceals ${his} groin.`); - } - break; - case "striped panties": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`huge erection is agonizingly pressed down by ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnancy.`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded belly.`); - } else { - r.push(`swollen belly.`); - } - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`massive erection is completely unrestrained.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is completely unrestrained.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`cock is quite visible under the tight material of ${his} panties.`); - } else if (slave.dick > 0) { - r.push(`panties are more of a banana hammock, in front.`); - } else { - r.push(`panties conceal ${his} groin.`); - } - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia require a huge hole in ${his} netting to keep everything aired out and accessible.`); - } else if ((slave.dick > 0) && (slave.scrotum > 1)) { - r.push(`cock has its own hole in ${his} netting, but ${his} balls are restrained inside it.`); - } else if (slave.dick > 0) { - r.push(`cock has its own hole in ${his} netting.`); - } else if (slave.vagina === -1) { - r.push(`clubslut netting covers ${his} featureless groin, making it less obvious that there's nothing there.`); - } else { - r.push(`pussy is left bare by a hole in ${his} netting.`); - } - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection pins ${his} skirt against ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnant`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly, revealing ${his} bare pussy.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`huge erection pins ${his} skirt against ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`pregnant`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly, revealing ${his} bare pussy.`); - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`massive erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); - } - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`); - if (slave.boobs > 800) { - r.push(`Its head peeks out from ${his} cleavage.`); - } - } else if (slave.dick > 5) { - r.push(`cheerleader skirt is not designed for someone with a cock as big as ${hers}; its lower half sticks out beneath its edge.`); - } else if (slave.dick > 3) { - r.push(`cheerleader skirt is not designed for someone with a cock as big as ${hers}; its head is easily visible beneath its edge.`); - } else if (slave.dick > 0) { - r.push(`cheerleader skirt hides ${his} dick reasonably well as long as ${he} stands still.`); - } else if (slave.vagina === -1) { - r.push(`cheerleader skirt hides the featurelessness of ${his} groin.`); - } else { - r.push(`cheerleader skirt often flips up to reveal ${his} bare pussy.`); - } - break; - case "cutoffs and a t-shirt": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { - r.push(`erection is so massive that closing ${his} jean cutoffs are hopeless. ${He}'s got ${his} fly completely unbuttoned and ${his} gigantic dick sticking out proudly.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection is so big that closing ${his} jean cutoffs are hopeless. ${He}'s got ${his} fly unbuttoned and ${his} huge dick sticking out proudly.`); - } else if (slave.dick > 5) { - r.push(`jean cutoffs are pretty brief, and ${his} huge cock sticks out, trapped against one leg.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`jean cutoffs are pretty brief, but decently cover ${his} cock and pussy.`); - } else if (slave.dick > 0) { - r.push(`jean cutoffs are pretty brief, but decently cover ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`jean cutoffs are pretty brief, but decently cover ${his} featureless groin.`); - } else { - r.push(`jean cutoffs are pretty brief, but still cover ${his} pussy decently in front.`); - } - break; - case "a slave gown": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 6) { - r.push(`lovely gown cannot hide the fact that something massive is lurking`); - if (hasBothLegs(slave)) { - r.push(`between ${his} legs.`); - } else { - r.push(`underneath it.`); - } - } else if (slave.dick > 3) { - r.push(`cock tents the front of ${his} lovely gown.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are hidden by ${his} lovely gown.`); - } else if (slave.dick > 0) { - r.push(`cock is hidden by ${his} lovely gown.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is concealed by ${his} lovely gown.`); - } else { - r.push(`pussy is concealed by ${his} lovely gown.`); - } - break; - case "a halter top dress": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`cock tents the front of ${his} beautiful halter top dress.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are hidden by ${his} beautiful halter top dress.`); - } else if (slave.dick > 0) { - r.push(`cock is hidden by ${his} beautiful halter top dress.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is concealed by ${his} halter top dress.`); - } else { - r.push(`pussy is concealed by ${his} beautiful halter top dress.`); - } - break; - case "a ball gown": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`cock tents the front of ${his} fabulous silken ball gown.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are hidden by ${his} fabulous silken ball gown.`); - } else if (slave.dick > 0) { - r.push(`cock is hidden by ${his} fabulous silken ball gown.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is hidden by ${his} fabulous silken ball gown.`); - } else { - r.push(`pussy is concealed by ${his} fabulous silken ball gown.`); - } - break; - case "slutty business attire": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`dickhead dangles down beneath the hem of ${his} short skirt.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are barely hidden by ${his} skirt.`); - } else if (slave.dick > 0) { - r.push(`cock is barely hidden by ${his} skirt.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is barely hidden by ${his} skirt.`); - } else { - r.push(`pussy is barely concealed by ${his} skirt.`); - } - break; - case "nice business attire": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`conservative skirt bulges forward in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are decently hidden by ${his} skirt.`); - } else if (slave.dick > 0) { - r.push(`conservative skirt gives no hint of the cock behind it.`); - } else if (slave.vagina === -1) { - r.push(`conservative skirt gives no hint of the perverse featurelessness behind it.`); - } else { - r.push(`conservative skirt gives no hint of the pussy behind it.`); - } - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia are a bit crowded by ${his} tight bodysuit.`); - } else if (slave.dick > 0) { - r.push(`cock is quite visible under the tight material of ${his} bodysuit.`); - } else if (slave.vagina === -1) { - r.push(`comfortable bodysuit fits ${his} groin well enough to make it clear there's nothing there.`); - } else { - r.push(`bodysuit forms a perfect cameltoe against ${his} pussy.`); - } - break; - case "a military uniform": - case "a red army uniform": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s uniform skirt bulges forward in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} skirt.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s uniform skirt gives no hint of the pussy behind it.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s uniform skirt gives no hint of the featureless groin behind it.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s uniform skirt gives no hint of the cock behind it.`); - } - break; - case "a schutzstaffel uniform": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s uniform trousers bulges forward in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} trousers.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s uniform trousers give no hint of the pussy behind it.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s uniform trousers give no hint of the featureless groin behind it.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s uniform trousers give no hint of the cock behind it.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s uniform miniskirt bulges forward in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} miniskirt.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the pussy behind it.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the featureless groin behind it.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the cock behind it.`); - } - break; - case "an apron": - if (slave.dick > 4) { - r.push(`${slave.slaveName}'s apron has a noticeable bulge in the front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hermaphroditic genitalia are hidden in the front by ${his} apron.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s cock is hidden in the front by ${his} apron.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s pussy is hidden in the front by ${his} apron.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s featureless groin is hidden in the front by ${his} apron.`); - } - break; - case "overalls": - if (slave.dick > 6) { - r.push(`There is a distinct bulge in the front of ${slave.slaveName}'s overalls.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s overalls cover ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s overalls cover ${his} cock.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s overalls cover ${his} pussy.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s overalls cover ${his} featureless groin.`); - } - break; - case "a bunny outfit": - if (slave.dick > 4) { - r.push(`The crotch of ${slave.slaveName}'s teddy has a significant bulge to it.`); - } else if (slave.dick > 0) { - r.push(`The crotch of ${slave.slaveName}'s teddy bulges slightly.`); - } else if (slave.vagina === -1) { - r.push(`The crotch of ${slave.slaveName}'s teddy is perfectly, and suspiciously, featureless.`); - } else { - r.push(`${slave.slaveName}'s teddy is tight enough to form a distinct cameltoe.`); - } - break; - case "a kimono": - if (slave.dick > 3) { - r.push(`Despite the quality tailoring of ${slave.slaveName}'s kimono, it is clear that ${he} has something`); - if (hasBothLegs(slave)) { - r.push(`between ${his} legs.`); - } else { - r.push(`at ${his} crotch.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s kimono demurely conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s kimono demurely conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s kimono demurely conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s kimono demurely conceals ${his} pussy.`); - } - break; - case "a biyelgee costume": - if (slave.dick > 3) { - r.push(`Despite the quality tailoring of ${slave.slaveName}'s costume, it is clear that ${he} has something`); - if (hasBothLegs(slave)) { - r.push(`between ${his} legs.`); - } else { - r.push(`at ${his} crotch.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s costume demurely conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s costume demurely conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s costume demurely conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s costume demurely conceals ${his} pussy.`); - } - break; - case "a dirndl": - if (slave.dick > 3) { - r.push(`Despite the quality tailoring of ${slave.slaveName}'s dirndl, it is clear that ${he} has something`); - if (hasBothLegs(slave)) { - r.push(`between ${his} legs.`); - } else { - r.push(`at ${his} crotch.`); - } - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} pussy.`); - } - break; - case "a latex catsuit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`latex encased cock and pussy are just waiting to be exposed through ${his} crotch zipper.`); - } else if (slave.dick > 0) { - r.push(`latex encased cock is just waiting to be exposed through ${his} crotch zipper.`); - } else if (slave.vagina === -1) { - r.push(`latex covered groin can be exposed with ${his} crotch zipper, though there's little point.`); - } else { - r.push(`latex encased pussy is just waiting to be exposed through ${his} crotch zipper.`); - } - break; - case "a leotard": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && canAchieveErection(slave)) { - r.push(`tight leotard affords no extra room for ${his} penis, so when ${he} gets hard, every vein is clearly visible through the material.`); - } else if (slave.dick > 0) { - r.push(`soft cock is clearly outlined by the tight material of ${his} leotard.`); - } else if (slave.clit > 1) { - r.push(`leotard hugs ${his} pussy, so closely that ${his} impressive clit is clearly visible.`); - } else if (slave.vagina === -1) { - r.push(`leotard hugs ${his} groin, making it obvious that there's nothing there.`); - } else { - r.push(`leotard hugs ${his} pussy, forming an inviting cameltoe.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`massive erection is agonizingly pinned to the front of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`gravid`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly, entirely visible against the straining fabric of ${his} dress.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`huge erection is agonizingly pinned to the front of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`gravid`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly, entirely visible against the straining fabric of ${his} dress.`); - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`massive erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`huge erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`); - } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`erection lies flush against the bottom of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`gravid`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`stomach, visible under the tight fabric of ${his} dress.`); - } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`erection lies flush against ${his} stomach, visible under the tight fabric of ${his} dress.`); - } else if (slave.dick > 5) { - r.push(`short dress can't possibly conceal ${his} huge cock; its lower half sticks out below the hemline.`); - } else if (slave.dick > 3) { - r.push(`short dress can't possibly conceal ${his} big cock; its head peeks out below the hemline.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`short dress scarcely covers the bulge of ${his} cock, while leaving a hint of ${his} bare pussy visible below the hemline.`); - } else if (slave.dick > 0) { - r.push(`short dress scarcely covers the bulge of ${his} cock.`); - } else if (slave.chastityVagina) { - r.push(`short dress leaves a hint of ${his} polished chastity belt below the hemline.`); - } else if (slave.chastityAnus) { - r.push(`short dress leaves a hint of ${his} polished anal chastity belt below the hemline.`); - } else if (slave.vagina === -1) { - r.push(`short dress leaves a hint of ${his} featureless groin below its hemline.`); - } else { - r.push(`short dress leaves a hint of ${his} bare pussy below the hemline.`); - } - break; - case "a nice maid outfit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia are protected by ${his} functional apron.`); - } else if (slave.dick > 0) { - r.push(`dick is protected by ${his} functional apron.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is protected by ${his} functional apron.`); - } else { - r.push(`pussy is protected by ${his} functional apron.`); - } - break; - case "a nice nurse outfit": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s trousers bulge forward in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} trousers.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s trousers give no hint of the cock behind it.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s trousers give no hint of the featureless groin behind it.`); - } else { - r.push(`${slave.slaveName}'s trousers give no hint of the pussy behind it.`); - } - break; - case "a schoolgirl outfit": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s dickhead is visible, swinging below the hem of ${his} skirt.`); - } else if (slave.dick > 0) { - r.push(`Something is pushing against the front of ${slave.slaveName}'s plaid skirt.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s plaid skirt lifts to show off ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s plaid skirt lifts to show off ${his} pussy with the slightest provocation.`); - } - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 3) { - r.push(`cockhead dangles down beneath the hem of ${his} short apron.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`hermaphroditic genitalia are poorly concealed by ${his} short apron.`); - } else if (slave.dick > 0) { - r.push(`cock is barely concealed by ${his} short apron.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is barely covered by ${his} short apron.`); - } else { - r.push(`pussy is barely covered by ${his} short apron.`); - } - break; - case "a slutty nurse outfit": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s skirt is tight enough to reveal the massive outline of ${his} dick behind it.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s skirt is tight enough to reveal the outline of the hermaphroditic genitalia behind it.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s skirt is tight enough to reveal the outline of ${his} dick behind it.`); - } else if (slave.vagina > -1) { - r.push(`${slave.slaveName}'s skirt is barely long enough to cover ${his} pussy.`); - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - if (slave.dick > 4) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} abaya.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s abaya properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s abaya properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s abaya properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s abaya properly conceals ${his} pussy.`); - } - break; - case "a klan robe": - if (slave.dick > 4) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} robe.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s robe properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s robe properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s robe properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s robe properly conceals ${his} pussy.`); - } - break; - case "a burqa": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} burqa.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s burqa properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s burqa properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s burqa properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s burqa properly conceals ${his} pussy.`); - } - break; - case "a tube top and thong": - case "a thong": - case "a slutty klan robe": - case "a t-shirt and thong": - if (slave.dick > 3) { - r.push(`When ${he} moves, ${his} thong bulges to the point of breaking.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} pussy.`); - } - break; - case "a button-up shirt and panties": - case "a sweater and panties": - case "panties and pasties": - case "a t-shirt and panties": - case "a tank-top and panties": - case "striped underwear": - case "panties": - if (slave.dick > 6) { - r.push(`When ${he} moves, ${his} panties bulge to the point of breaking.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s panties immodestly conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s panties immodestly conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s panties immodestly conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s panties immodestly conceal ${his} pussy.`); - } - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a tank-top": - case "a tube top": - case "a striped bra": - case "an oversized t-shirt": - case "a t-shirt": - case "a sports bra": - if (slave.dick > 6) { - r.push(`${his} outfit does nothing to conceal ${his} swinging cock.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} pussy.`); - } - break; - case "pasties": - if (slave.dick > 0) { - r.push(`${slave.slaveName}'s cock is completely exposed, save for the pastie covering its head.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s featureless groin is completely exposed, save for the pastie covering ${his} secret hole.`); - } else { - r.push(`${slave.slaveName}'s pussy is completely exposed, save for the pastie covering ${his} clit.`); - } - break; - case "a gothic lolita dress": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} dress.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s dress properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s dress properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s dress properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s dress properly conceals ${his} pussy.`); - } - break; - case "a hanbok": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} hanbok.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s hanbok properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s hanbok properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s hanbok properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s hanbok properly conceals ${his} pussy.`); - } - break; - case "a police uniform": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} trousers.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s trousers properly conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s trousers properly conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s trousers properly conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s trousers properly conceal ${his} pussy.`); - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} pony outfit.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} pussy.`); - } - break; - case "a one-piece swimsuit": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} swimsuit.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} pussy.`); - } - break; - case "a t-shirt and jeans": - case "cutoffs": - case "jeans": - case "a sweater and cutoffs": - if (slave.dick > 6) { - r.push(`When ${he} moves, ${his} cock nearly flops out of ${his} jeans.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s jeans properly conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s jeans properly conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s jeans properly conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s jeans properly conceal ${his} pussy.`); - } - break; - case "a skimpy loincloth": - if (slave.dick > 6) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} loincloth.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} pussy.`); - } - break; - case "an oversized t-shirt and boyshorts": - case "boyshorts": - if (slave.dick > 6) { - r.push(`When ${he} moves, the bulge in front of ${his} boy shorts bounces.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} pussy.`); - } - break; - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - if (slave.dick > 6) { - r.push(`When ${he} moves, the bulge in front of ${his} shorts bounces.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s shorts partially conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s shorts partially conceal ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s shorts partially conceal ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s shorts partially conceal ${his} pussy.`); - } - break; - case "leather pants and pasties": - case "leather pants": - case "leather pants and a tube top": - if (slave.dick > 6) { - r.push(`When ${he} moves, ${his} bulge stretches the front of ${his} leather pants.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s leather pants immodestly conceal ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} pussy.`); - } - break; - case "a hijab and blouse": - if (slave.dick > 6) { - r.push(`There is an absurd bulge at the crotch of ${slave.slaveName}'s skirt.`); - } else if (slave.dick > 4) { - r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s skirt.`); - } else if (slave.dick > 2) { - r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s skirt.`); - } else { - r.push(`The crotch of ${slave.slaveName}'s skirt is perfectly smooth.`); - } - break; - case "a long qipao": - if (slave.dick > 3) { - r.push(`When ${he} moves, something occasionally bulges the front of ${his} qipao.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s qipao properly conceals ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s qipao properly conceals ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s qipao properly conceals ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s qipao properly conceals ${his} pussy.`); - } - break; - case "battledress": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s fatigue pants bulge in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s fatigue pants protect ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s fatigue pants protect ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s fatigue pants protect ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s fatigue pants protect ${his} pussy.`); - } - break; - case "lederhosen": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s shorts bulge in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s shorts protect ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s shorts protect ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s shorts protect ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s shorts protect ${his} pussy.`); - } - break; - case "a mounty outfit": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s slacks bulge in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s slacks protect ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s slacks protect ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s slacks protect ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s slacks protect ${his} pussy.`); - } - break; - case "battlearmor": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s crotch bulges in front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s armor protects ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s armor protects ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s armor protects ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s armor protects ${his} pussy.`); - } - break; - case "Imperial Plate": - if (slave.dick > 3) { - r.push(`${slave.slaveName}'s plated crotch bulges out slightly at the front.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s armor protects ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s armor protects ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s armor protects ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s armor protects ${his} pussy.`); - } - break; - case "a fallen nuns habit": - r.push(`The ludicrously short skirt of ${slave.slaveName}'s habit parts below ${his} navel, leaving ${his}`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia`); - } else if (slave.dick > 0) { - r.push(`cock`); - } else if (slave.vagina === -1) { - r.push(`featureless groin`); - } else { - r.push(`pussy`); - } - r.push(`bare.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front`); - if (App.Data.misc.fakeBellies.includes(slave.bellyAccessory) || slave.weight > 95 || slave.belly >= 5000) { - r.push(`comes with a clip to fasten it to the underside of ${his} belly and`); - } - if (slave.dick > 0 && canAchieveErection(slave)) { - r.push(`splits well above the base of ${his} dick, allowing ${his} erection to stand out proudly.`); - } else if (slave.chastityVagina && slave.chastityAnus) { - r.push(`has the new religion's symbol for chastity embossed on it in gold, implying that this holy sex slave should only be used for oral.`); - } else if (slave.vagina < 0 || slave.chastityVagina) { - r.push(`has the new religion's symbol for anal sex embossed on it in gold, implying that this holy sex slave should be approached from the rear.`); - } else if (slave.chastityAnus && canDoVaginal(slave)) { - r.push(`has the new religion's symbol for anal chastity embossed on it in gold, implying that this holy sex slave should be used for vaginal sex or oral sex only.`); - } else if (slave.vagina === -1) { - r.push(`has the new religion's stylized for anal sex embossed on it in gold, since this slave's front is quite featureless.`); - } else { - r.push(`has the new religion's stylized symbol depicting the vagina embossed on it in gold, and can be tucked up to bare ${his} womanhood.`); - } - break; - case "a penitent nuns habit": - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor hermaphrodite's genitalia, keeping ${his} aware that ${he} is an abomination.`); - } else if (slave.dick > 0) { - r.push(`${He}'s wearing a painful metal cilice around the base of ${his} cock, making ${him} shift constantly in search of comfort that will not come.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor, featureless groin.`); - } else { - r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor womanhood.`); - } - break; - case "harem gauze": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia are partially obscured by a covering of sheer gauze. ${His} pussy is barely discernible.`); - } else if (slave.dick > 0) { - r.push(`cock is partially obscured by a covering of sheer gauze.`); - } else if (slave.vagina === -1) { - r.push(`featureless groin is partially obscured by a covering of sheer gauze.`); - } else { - r.push(`pussy is partially obscured by a covering of sheer gauze.`); - } - break; - case "a Santa dress": - if (slave.dick > 5) { - r.push(`${slave.slaveName}'s cock is long enough to poke out from under ${his} dress.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s dress covers ${his} hermaphroditic genitalia.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s dress covers ${his} cock.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s dress covers ${his} featureless groin.`); - } else { - r.push(`${slave.slaveName}'s dress covers ${his} pussy.`); - } - break; - case "a courtesan dress": - r.push(`${slave.slaveName}'s`); - if (slave.dick > 0 && slave.vagina > -1) { - r.push(`hermaphroditic genitalia`); - } else if (slave.dick > 0) { - r.push(`cock`); - } else if (slave.vagina === -1) { - r.push(`featureless groin`); - } else { - r.push(`pussy`); - } - r.push(`is obscured by a series of petal-like folds.`); - break; - case "a bimbo outfit": - if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { - r.push(`${slave.slaveName}'s massive erection extends from ${his} thong, trapping ${his} miniskirt against the underside of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`gravid`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { - r.push(`${slave.slaveName}'s huge erection extends from ${his} thong, trapping ${his} miniskirt against the underside of ${his}`); - if (slave.bellyPreg > 2000) { - r.push(`gravid`); - } else if (slave.bellyImplant > 2000) { - r.push(`rounded`); - } else { - r.push(`swollen`); - } - r.push(`belly.`); - } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s massive erection extends from ${his} thong and juts out from beneath ${his} miniskirt.`); - } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s huge erection extends from ${his} thong and juts out from beneath ${his} miniskirt.`); - } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20)) { - r.push(`${slave.slaveName}'s erection extends from ${his} thong, tenting ${his} typically useless miniskirt.`); - } else if (slave.dick > 5) { - r.push(`${slave.slaveName}'s thong can't possibly contain ${his} huge cock; it hangs out for all to see beneath ${his} miniskirt.`); - } else if (slave.dick > 3) { - r.push(`${slave.slaveName}'s thong can barely contain ${his} cock; it threatens to pop out in full view thanks to ${his} miniskirt.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} hermaphroditic genitalia in place of ${his} miniskirt.`); - } else if (slave.dick > 0) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} cock in place of ${his} miniskirt.`); - } else if (slave.chastityVagina) { - r.push(`${slave.slaveName}'s miniskirt leaves ${his} chastity belt fully visible.`); - } else if (slave.vagina === -1) { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} featureless groin in place of ${his} miniskirt.`); - } else { - r.push(`${slave.slaveName}'s thong immodestly conceals ${his} pussy in place of ${his} miniskirt.`); - } - break; - default: - if (slave.vagina > -1) { + break; + case "a monokini": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`dick creates a large bulge in the front of ${his} monokini.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} monokini.`); + } else if (slave.dick > 0) { + r.push(`dick creates a small bulge in the front of ${his} monokini.`); + } else if (slave.vagina === -1) { + r.push(`monokini bottom has no bulges or ridges at the front or bottom.`); + } else { + r.push(`pussy creates small ridges in the bottom of ${his} monokini.`); + } + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`dick creates a large bulge in the front of ${his} bodysuit.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} bodysuit.`); + } else if (slave.dick > 0) { + r.push(`dick creates a small bulge in the front of ${his} bodysuit.`); + } else if (slave.vagina === -1) { + r.push(`bodysuit conceals the featurelessness of ${his} crotch.`); + } else { + r.push(`pussy creates small soft ridges in the bottom of ${his} bodysuit.`); + } + break; + case "a tight Imperial bodysuit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`fat dick creates an obvious bulge at the front of ${his} bodysuit.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia creates a small bulge in the front of ${his} bodysuit.`); + } else if (slave.dick > 0) { + r.push(`dick creates a fairly pathetic bulge at the front of ${his} bodysuit.`); + } else if (slave.vagina === -1) { + r.push(`bodysuit conceals the featurelessness of ${his} crotch.`); + } else { + r.push(`pussy creates the clear indent of a puffy cameltoe at the crotch of ${his} bodysuit.`); + } + break; + case "a string bikini": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`huge erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { + r.push(`erection is so massive that ${he}'s got it restrained behind ${his} string bikini top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); + } + } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20) { + r.push(`erection is so big that ${he}'s got it restrained behind ${his} string bikini top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`just given up and pushed ${his} bikini bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`); + } else if (slave.dick > 0) { + r.push(`string bikini bottom is more of a banana hammock, in front.`); + } else if (slave.vagina === -1) { + r.push(`string bikini conceals the featurelessness of ${his} groin.`); + } else { + r.push(`string bikini runs lewdly between ${his} pussylips.`); + } + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`huge erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { + r.push(`erection is so massive that ${he}'s got it restrained behind ${his} scalemail bikini top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is so big that ${he}'s got it restrained behind ${his} scalemail bikini top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`just given up and pushed ${his} scalemail bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`); + } else if (slave.dick > 0) { + r.push(`scalemail bikini bottom is more of a banana hammock, in front.`); + } else { + r.push(`scalemail bikini conceals ${his} groin.`); + } + break; + case "striped panties": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`huge erection is agonizingly pressed down by ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnancy.`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded belly.`); + } else { + r.push(`swollen belly.`); + } + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`massive erection is completely unrestrained.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is completely unrestrained.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`cock is quite visible under the tight material of ${his} panties.`); + } else if (slave.dick > 0) { + r.push(`panties are more of a banana hammock, in front.`); + } else { + r.push(`panties conceal ${his} groin.`); + } + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia require a huge hole in ${his} netting to keep everything aired out and accessible.`); + } else if ((slave.dick > 0) && (slave.scrotum > 1)) { + r.push(`cock has its own hole in ${his} netting, but ${his} balls are restrained inside it.`); + } else if (slave.dick > 0) { + r.push(`cock has its own hole in ${his} netting.`); + } else if (slave.vagina === -1) { + r.push(`clubslut netting covers ${his} featureless groin, making it less obvious that there's nothing there.`); + } else { + r.push(`pussy is left bare by a hole in ${his} netting.`); + } + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection pins ${his} skirt against ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnant`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly, revealing ${his} bare pussy.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`huge erection pins ${his} skirt against ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`pregnant`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly, revealing ${his} bare pussy.`); + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`massive erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`); + } + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`); + if (slave.boobs > 800) { + r.push(`Its head peeks out from ${his} cleavage.`); + } + } else if (slave.dick > 5) { + r.push(`cheerleader skirt is not designed for someone with a cock as big as ${hers}; its lower half sticks out beneath its edge.`); + } else if (slave.dick > 3) { + r.push(`cheerleader skirt is not designed for someone with a cock as big as ${hers}; its head is easily visible beneath its edge.`); + } else if (slave.dick > 0) { + r.push(`cheerleader skirt hides ${his} dick reasonably well as long as ${he} stands still.`); + } else if (slave.vagina === -1) { + r.push(`cheerleader skirt hides the featurelessness of ${his} groin.`); + } else { + r.push(`cheerleader skirt often flips up to reveal ${his} bare pussy.`); + } + break; + case "cutoffs and a t-shirt": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) { + r.push(`erection is so massive that closing ${his} jean cutoffs are hopeless. ${He}'s got ${his} fly completely unbuttoned and ${his} gigantic dick sticking out proudly.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection is so big that closing ${his} jean cutoffs are hopeless. ${He}'s got ${his} fly unbuttoned and ${his} huge dick sticking out proudly.`); + } else if (slave.dick > 5) { + r.push(`jean cutoffs are pretty brief, and ${his} huge cock sticks out, trapped against one leg.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`jean cutoffs are pretty brief, but decently cover ${his} cock and pussy.`); + } else if (slave.dick > 0) { + r.push(`jean cutoffs are pretty brief, but decently cover ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`jean cutoffs are pretty brief, but decently cover ${his} featureless groin.`); + } else { + r.push(`jean cutoffs are pretty brief, but still cover ${his} pussy decently in front.`); + } + break; + case "a halter top dress": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`cock tents the front of ${his} beautiful halter top dress.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are hidden by ${his} beautiful halter top dress.`); + } else if (slave.dick > 0) { + r.push(`cock is hidden by ${his} beautiful halter top dress.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is concealed by ${his} halter top dress.`); + } else { + r.push(`pussy is concealed by ${his} beautiful halter top dress.`); + } + break; + case "a ball gown": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`cock tents the front of ${his} fabulous silken ball gown.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are hidden by ${his} fabulous silken ball gown.`); + } else if (slave.dick > 0) { + r.push(`cock is hidden by ${his} fabulous silken ball gown.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is hidden by ${his} fabulous silken ball gown.`); + } else { + r.push(`pussy is concealed by ${his} fabulous silken ball gown.`); + } + break; + case "slutty business attire": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`dickhead dangles down beneath the hem of ${his} short skirt.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are barely hidden by ${his} skirt.`); + } else if (slave.dick > 0) { + r.push(`cock is barely hidden by ${his} skirt.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is barely hidden by ${his} skirt.`); + } else { + r.push(`pussy is barely concealed by ${his} skirt.`); + } + break; + case "nice business attire": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`conservative skirt bulges forward in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are decently hidden by ${his} skirt.`); + } else if (slave.dick > 0) { + r.push(`conservative skirt gives no hint of the cock behind it.`); + } else if (slave.vagina === -1) { + r.push(`conservative skirt gives no hint of the perverse featurelessness behind it.`); + } else { + r.push(`conservative skirt gives no hint of the pussy behind it.`); + } + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia are a bit crowded by ${his} tight bodysuit.`); + } else if (slave.dick > 0) { + r.push(`cock is quite visible under the tight material of ${his} bodysuit.`); + } else if (slave.vagina === -1) { + r.push(`comfortable bodysuit fits ${his} groin well enough to make it clear there's nothing there.`); + } else { + r.push(`bodysuit forms a perfect cameltoe against ${his} pussy.`); + } + break; + case "a military uniform": + case "a red army uniform": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s uniform skirt bulges forward in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} skirt.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s uniform skirt gives no hint of the pussy behind it.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s uniform skirt gives no hint of the featureless groin behind it.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s uniform skirt gives no hint of the cock behind it.`); + } + break; + case "a schutzstaffel uniform": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s uniform trousers bulges forward in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} trousers.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s uniform trousers give no hint of the pussy behind it.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s uniform trousers give no hint of the featureless groin behind it.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s uniform trousers give no hint of the cock behind it.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s uniform miniskirt bulges forward in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} miniskirt.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the pussy behind it.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the featureless groin behind it.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s uniform miniskirt gives no hint of the cock behind it.`); + } + break; + case "an apron": + if (slave.dick > 4) { + r.push(`${slave.slaveName}'s apron has a noticeable bulge in the front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hermaphroditic genitalia are hidden in the front by ${his} apron.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s cock is hidden in the front by ${his} apron.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s pussy is hidden in the front by ${his} apron.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s featureless groin is hidden in the front by ${his} apron.`); + } + break; + case "overalls": + if (slave.dick > 6) { + r.push(`There is a distinct bulge in the front of ${slave.slaveName}'s overalls.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s overalls cover ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s overalls cover ${his} cock.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s overalls cover ${his} pussy.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s overalls cover ${his} featureless groin.`); + } + break; + case "a bunny outfit": + if (slave.dick > 4) { + r.push(`The crotch of ${slave.slaveName}'s teddy has a significant bulge to it.`); + } else if (slave.dick > 0) { + r.push(`The crotch of ${slave.slaveName}'s teddy bulges slightly.`); + } else if (slave.vagina === -1) { + r.push(`The crotch of ${slave.slaveName}'s teddy is perfectly, and suspiciously, featureless.`); + } else { + r.push(`${slave.slaveName}'s teddy is tight enough to form a distinct cameltoe.`); + } + break; + case "a kimono": + if (slave.dick > 3) { + r.push(`Despite the quality tailoring of ${slave.slaveName}'s kimono, it is clear that ${he} has something`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs.`); + } else { + r.push(`at ${his} crotch.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s kimono demurely conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s kimono demurely conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s kimono demurely conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s kimono demurely conceals ${his} pussy.`); + } + break; + case "a biyelgee costume": + if (slave.dick > 3) { + r.push(`Despite the quality tailoring of ${slave.slaveName}'s costume, it is clear that ${he} has something`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs.`); + } else { + r.push(`at ${his} crotch.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s costume demurely conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s costume demurely conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s costume demurely conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s costume demurely conceals ${his} pussy.`); + } + break; + case "a dirndl": + if (slave.dick > 3) { + r.push(`Despite the quality tailoring of ${slave.slaveName}'s dirndl, it is clear that ${he} has something`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs.`); + } else { + r.push(`at ${his} crotch.`); + } + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s dirndl demurely conceals ${his} pussy.`); + } + break; + case "a latex catsuit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`latex encased cock and pussy are just waiting to be exposed through ${his} crotch zipper.`); + } else if (slave.dick > 0) { + r.push(`latex encased cock is just waiting to be exposed through ${his} crotch zipper.`); + } else if (slave.vagina === -1) { + r.push(`latex covered groin can be exposed with ${his} crotch zipper, though there's little point.`); + } else { + r.push(`latex encased pussy is just waiting to be exposed through ${his} crotch zipper.`); + } + break; + case "a leotard": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && canAchieveErection(slave)) { + r.push(`tight leotard affords no extra room for ${his} penis, so when ${he} gets hard, every vein is clearly visible through the material.`); + } else if (slave.dick > 0) { + r.push(`soft cock is clearly outlined by the tight material of ${his} leotard.`); + } else if (slave.clit > 1) { + r.push(`leotard hugs ${his} pussy, so closely that ${his} impressive clit is clearly visible.`); + } else if (slave.vagina === -1) { + r.push(`leotard hugs ${his} groin, making it obvious that there's nothing there.`); + } else { + r.push(`leotard hugs ${his} pussy, forming an inviting cameltoe.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`massive erection is agonizingly pinned to the front of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`gravid`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly, entirely visible against the straining fabric of ${his} dress.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`huge erection is agonizingly pinned to the front of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`gravid`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly, entirely visible against the straining fabric of ${his} dress.`); + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`massive erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`huge erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`); + } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`erection lies flush against the bottom of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`gravid`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`stomach, visible under the tight fabric of ${his} dress.`); + } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`erection lies flush against ${his} stomach, visible under the tight fabric of ${his} dress.`); + } else if (slave.dick > 5) { + r.push(`short dress can't possibly conceal ${his} huge cock; its lower half sticks out below the hemline.`); + } else if (slave.dick > 3) { + r.push(`short dress can't possibly conceal ${his} big cock; its head peeks out below the hemline.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`short dress scarcely covers the bulge of ${his} cock, while leaving a hint of ${his} bare pussy visible below the hemline.`); + } else if (slave.dick > 0) { + r.push(`short dress scarcely covers the bulge of ${his} cock.`); + } else if (slave.chastityVagina) { + r.push(`short dress leaves a hint of ${his} polished chastity belt below the hemline.`); + } else if (slave.chastityAnus) { + r.push(`short dress leaves a hint of ${his} polished anal chastity belt below the hemline.`); + } else if (slave.vagina === -1) { + r.push(`short dress leaves a hint of ${his} featureless groin below its hemline.`); + } else { + r.push(`short dress leaves a hint of ${his} bare pussy below the hemline.`); + } + break; + case "a nice maid outfit": r.push(`${slave.slaveName}'s`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia are protected by ${his} functional apron.`); + } else if (slave.dick > 0) { + r.push(`dick is protected by ${his} functional apron.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is protected by ${his} functional apron.`); + } else { + r.push(`pussy is protected by ${his} functional apron.`); + } + break; + case "a nice nurse outfit": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s trousers bulge forward in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hermaphroditic genitalia are decently hidden by ${his} trousers.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s trousers give no hint of the cock behind it.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s trousers give no hint of the featureless groin behind it.`); + } else { + r.push(`${slave.slaveName}'s trousers give no hint of the pussy behind it.`); + } + break; + case "a schoolgirl outfit": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s dickhead is visible, swinging below the hem of ${his} skirt.`); + } else if (slave.dick > 0) { + r.push(`Something is pushing against the front of ${slave.slaveName}'s plaid skirt.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s plaid skirt lifts to show off ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s plaid skirt lifts to show off ${his} pussy with the slightest provocation.`); + } + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s`); + if (slave.dick > 3) { + r.push(`cockhead dangles down beneath the hem of ${his} short apron.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`hermaphroditic genitalia are poorly concealed by ${his} short apron.`); + } else if (slave.dick > 0) { + r.push(`cock is barely concealed by ${his} short apron.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is barely covered by ${his} short apron.`); + } else { + r.push(`pussy is barely covered by ${his} short apron.`); + } + break; + case "a slutty nurse outfit": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s skirt is tight enough to reveal the massive outline of ${his} dick behind it.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s skirt is tight enough to reveal the outline of the hermaphroditic genitalia behind it.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s skirt is tight enough to reveal the outline of ${his} dick behind it.`); + } else if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s skirt is barely long enough to cover ${his} pussy.`); + } + break; + case "a hijab and abaya": + case "a niqab and abaya": + if (slave.dick > 4) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} abaya.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s abaya properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s abaya properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s abaya properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s abaya properly conceals ${his} pussy.`); + } + break; + case "a klan robe": + if (slave.dick > 4) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} robe.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s robe properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s robe properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s robe properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s robe properly conceals ${his} pussy.`); + } + break; + case "a burqa": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} burqa.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s burqa properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s burqa properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s burqa properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s burqa properly conceals ${his} pussy.`); + } + break; + case "a tube top and thong": + case "a thong": + case "a slutty klan robe": + case "a t-shirt and thong": + if (slave.dick > 3) { + r.push(`When ${he} moves, ${his} thong bulges to the point of breaking.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} pussy.`); + } + break; + case "a button-up shirt and panties": + case "a sweater and panties": + case "panties and pasties": + case "a t-shirt and panties": + case "a tank-top and panties": + case "striped underwear": + case "panties": + if (slave.dick > 6) { + r.push(`When ${he} moves, ${his} panties bulge to the point of breaking.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s panties immodestly conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s panties immodestly conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s panties immodestly conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s panties immodestly conceal ${his} pussy.`); + } + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a tank-top": + case "a tube top": + case "a striped bra": + case "an oversized t-shirt": + case "a t-shirt": + case "a sports bra": + if (slave.dick > 6) { + r.push(`${his} outfit does nothing to conceal ${his} swinging cock.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s outfit does nothing to conceal ${his} pussy.`); + } + break; + case "pasties": if (slave.dick > 0) { - r.push(`hermaphroditic genitalia are`); + r.push(`${slave.slaveName}'s cock is completely exposed, save for the pastie covering its head.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s featureless groin is completely exposed, save for the pastie covering ${his} secret hole.`); } else { - r.push(`pussy is`); + r.push(`${slave.slaveName}'s pussy is completely exposed, save for the pastie covering ${his} clit.`); + } + break; + case "a gothic lolita dress": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} dress.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s dress properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s dress properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s dress properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s dress properly conceals ${his} pussy.`); + } + break; + case "a hanbok": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} hanbok.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s hanbok properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s hanbok properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s hanbok properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s hanbok properly conceals ${his} pussy.`); + } + break; + case "a police uniform": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} trousers.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s trousers properly conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s trousers properly conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s trousers properly conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s trousers properly conceal ${his} pussy.`); } - r.push(`bare and available.`); - } else if (slave.chastityPenis === 1) { - } else if (slave.dick > 0) { + break; + case "a nice pony outfit": + case "a slutty pony outfit": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} pony outfit.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s pony outfit immodestly conceals ${his} pussy.`); + } + break; + case "a one-piece swimsuit": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} swimsuit.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s swimsuit properly conceals ${his} pussy.`); + } + break; + case "a t-shirt and jeans": + case "cutoffs": + case "jeans": + case "a sweater and cutoffs": + if (slave.dick > 6) { + r.push(`When ${he} moves, ${his} cock nearly flops out of ${his} jeans.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s jeans properly conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s jeans properly conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s jeans properly conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s jeans properly conceal ${his} pussy.`); + } + break; + case "a skimpy loincloth": + if (slave.dick > 6) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} loincloth.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s loincloth immodestly conceals ${his} pussy.`); + } + break; + case "an oversized t-shirt and boyshorts": + case "boyshorts": + if (slave.dick > 6) { + r.push(`When ${he} moves, the bulge in front of ${his} boy shorts bounces.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s boy shorts barely conceal ${his} pussy.`); + } + break; + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + if (slave.dick > 6) { + r.push(`When ${he} moves, the bulge in front of ${his} shorts bounces.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s shorts partially conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s shorts partially conceal ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s shorts partially conceal ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s shorts partially conceal ${his} pussy.`); + } + break; + case "leather pants and pasties": + case "leather pants": + case "leather pants and a tube top": + if (slave.dick > 6) { + r.push(`When ${he} moves, ${his} bulge stretches the front of ${his} leather pants.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s leather pants immodestly conceal ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s leather pants immodestly conceals ${his} pussy.`); + } + break; + case "a hijab and blouse": + if (slave.dick > 6) { + r.push(`There is an absurd bulge at the crotch of ${slave.slaveName}'s skirt.`); + } else if (slave.dick > 4) { + r.push(`There is a distinct bulge at the crotch of ${slave.slaveName}'s skirt.`); + } else if (slave.dick > 2) { + r.push(`There is a modest bulge at the crotch of ${slave.slaveName}'s skirt.`); + } else { + r.push(`The crotch of ${slave.slaveName}'s skirt is perfectly smooth.`); + } + break; + case "a long qipao": + if (slave.dick > 3) { + r.push(`When ${he} moves, something occasionally bulges the front of ${his} qipao.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s qipao properly conceals ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s qipao properly conceals ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s qipao properly conceals ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s qipao properly conceals ${his} pussy.`); + } + break; + case "battledress": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s fatigue pants bulge in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s fatigue pants protect ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s fatigue pants protect ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s fatigue pants protect ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s fatigue pants protect ${his} pussy.`); + } + break; + case "lederhosen": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s shorts bulge in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s shorts protect ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s shorts protect ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s shorts protect ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s shorts protect ${his} pussy.`); + } + break; + case "a mounty outfit": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s slacks bulge in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s slacks protect ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s slacks protect ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s slacks protect ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s slacks protect ${his} pussy.`); + } + break; + case "battlearmor": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s crotch bulges in front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s armor protects ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s armor protects ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s armor protects ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s armor protects ${his} pussy.`); + } + break; + case "Imperial Plate": + if (slave.dick > 3) { + r.push(`${slave.slaveName}'s plated crotch bulges out slightly at the front.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s armor protects ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s armor protects ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s armor protects ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s armor protects ${his} pussy.`); + } + break; + case "a fallen nuns habit": + r.push(`The ludicrously short skirt of ${slave.slaveName}'s habit parts below ${his} navel, leaving ${his}`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia`); + } else if (slave.dick > 0) { + r.push(`cock`); + } else if (slave.vagina === -1) { + r.push(`featureless groin`); + } else { + r.push(`pussy`); + } + r.push(`bare.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front`); + if (App.Data.misc.fakeBellies.includes(slave.bellyAccessory) || slave.weight > 95 || slave.belly >= 5000) { + r.push(`comes with a clip to fasten it to the underside of ${his} belly and`); + } + if (slave.dick > 0 && canAchieveErection(slave)) { + r.push(`splits well above the base of ${his} dick, allowing ${his} erection to stand out proudly.`); + } else if (slave.chastityVagina && slave.chastityAnus) { + r.push(`has the new religion's symbol for chastity embossed on it in gold, implying that this holy sex slave should only be used for oral.`); + } else if (slave.vagina < 0 || slave.chastityVagina) { + r.push(`has the new religion's symbol for anal sex embossed on it in gold, implying that this holy sex slave should be approached from the rear.`); + } else if (slave.chastityAnus && canDoVaginal(slave)) { + r.push(`has the new religion's symbol for anal chastity embossed on it in gold, implying that this holy sex slave should be used for vaginal sex or oral sex only.`); + } else if (slave.vagina === -1) { + r.push(`has the new religion's stylized for anal sex embossed on it in gold, since this slave's front is quite featureless.`); + } else { + r.push(`has the new religion's stylized symbol depicting the vagina embossed on it in gold, and can be tucked up to bare ${his} womanhood.`); + } + break; + case "a penitent nuns habit": + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor hermaphrodite's genitalia, keeping ${his} aware that ${he} is an abomination.`); + } else if (slave.dick > 0) { + r.push(`${He}'s wearing a painful metal cilice around the base of ${his} cock, making ${him} shift constantly in search of comfort that will not come.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor, featureless groin.`); + } else { + r.push(`${slave.slaveName}'s sackcloth undergarments chafe and torture ${his} poor womanhood.`); + } + break; + case "harem gauze": r.push(`${slave.slaveName}'s`); - switch (slave.dick) { - case 10: - r.push(`inhuman cock hangs naked.`); - break; - case 9: - r.push(`absurd cock hangs naked.`); - break; - case 8: - r.push(`titanic`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock hangs naked.`); - break; - case 7: - r.push(`gigantic`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock hangs naked.`); - break; - case 6: - r.push(`huge`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock hangs naked.`); - break; - case 5: - r.push(`imposing`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock swings naked.`); - break; - case 4: - r.push(`big`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock dangles naked.`); - break; - case 3: - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`cock dangles bare.`); - break; - case 2: - r.push(`little`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`dick is bare.`); - break; - case 1: - r.push(`tiny`); - if (!canAchieveErection(slave)) { - r.push(`flaccid`); - } - r.push(`dick is bare.`); - break; - default: - r.push(`hypertrophied cock hangs naked.`); - break; + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia are partially obscured by a covering of sheer gauze. ${His} pussy is barely discernible.`); + } else if (slave.dick > 0) { + r.push(`cock is partially obscured by a covering of sheer gauze.`); + } else if (slave.vagina === -1) { + r.push(`featureless groin is partially obscured by a covering of sheer gauze.`); + } else { + r.push(`pussy is partially obscured by a covering of sheer gauze.`); + } + break; + case "a Santa dress": + if (slave.dick > 5) { + r.push(`${slave.slaveName}'s cock is long enough to poke out from under ${his} dress.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s dress covers ${his} hermaphroditic genitalia.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s dress covers ${his} cock.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s dress covers ${his} featureless groin.`); + } else { + r.push(`${slave.slaveName}'s dress covers ${his} pussy.`); } - } else { + break; + case "a courtesan dress": r.push(`${slave.slaveName}'s`); - if (slave.balls > 0) { - r.push(`lonely balls are`); + if (slave.dick > 0 && slave.vagina > -1) { + r.push(`hermaphroditic genitalia`); + } else if (slave.dick > 0) { + r.push(`cock`); + } else if (slave.vagina === -1) { + r.push(`featureless groin`); } else { - r.push(`featureless groin is`); + r.push(`pussy`); + } + r.push(`is obscured by a series of petal-like folds.`); + break; + case "a bimbo outfit": + if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) { + r.push(`${slave.slaveName}'s massive erection extends from ${his} thong, trapping ${his} miniskirt against the underside of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`gravid`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) { + r.push(`${slave.slaveName}'s huge erection extends from ${his} thong, trapping ${his} miniskirt against the underside of ${his}`); + if (slave.bellyPreg > 2000) { + r.push(`gravid`); + } else if (slave.bellyImplant > 2000) { + r.push(`rounded`); + } else { + r.push(`swollen`); + } + r.push(`belly.`); + } else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s massive erection extends from ${his} thong and juts out from beneath ${his} miniskirt.`); + } else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s huge erection extends from ${his} thong and juts out from beneath ${his} miniskirt.`); + } else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20)) { + r.push(`${slave.slaveName}'s erection extends from ${his} thong, tenting ${his} typically useless miniskirt.`); + } else if (slave.dick > 5) { + r.push(`${slave.slaveName}'s thong can't possibly contain ${his} huge cock; it hangs out for all to see beneath ${his} miniskirt.`); + } else if (slave.dick > 3) { + r.push(`${slave.slaveName}'s thong can barely contain ${his} cock; it threatens to pop out in full view thanks to ${his} miniskirt.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} hermaphroditic genitalia in place of ${his} miniskirt.`); + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} cock in place of ${his} miniskirt.`); + } else if (slave.chastityVagina) { + r.push(`${slave.slaveName}'s miniskirt leaves ${his} chastity belt fully visible.`); + } else if (slave.vagina === -1) { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} featureless groin in place of ${his} miniskirt.`); + } else { + r.push(`${slave.slaveName}'s thong immodestly conceals ${his} pussy in place of ${his} miniskirt.`); } - r.push(`bare and vulnerable.`); - } + break; + default: + if (slave.vagina > -1) { + r.push(`${slave.slaveName}'s`); + if (slave.dick > 0) { + r.push(`hermaphroditic genitalia are`); + } else { + r.push(`pussy is`); + } + r.push(`bare and available.`); + } else if (slave.chastityPenis === 1) { + } else if (slave.dick > 0) { + r.push(`${slave.slaveName}'s`); + switch (slave.dick) { + case 10: + r.push(`inhuman cock hangs naked.`); + break; + case 9: + r.push(`absurd cock hangs naked.`); + break; + case 8: + r.push(`titanic`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock hangs naked.`); + break; + case 7: + r.push(`gigantic`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock hangs naked.`); + break; + case 6: + r.push(`huge`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock hangs naked.`); + break; + case 5: + r.push(`imposing`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock swings naked.`); + break; + case 4: + r.push(`big`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock dangles naked.`); + break; + case 3: + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`cock dangles bare.`); + break; + case 2: + r.push(`little`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`dick is bare.`); + break; + case 1: + r.push(`tiny`); + if (!canAchieveErection(slave)) { + r.push(`flaccid`); + } + r.push(`dick is bare.`); + break; + default: + r.push(`hypertrophied cock hangs naked.`); + break; + } + } else { + r.push(`${slave.slaveName}'s`); + if (slave.balls > 0) { + r.push(`lonely balls are`); + } else { + r.push(`featureless groin is`); + } + r.push(`bare and vulnerable.`); + } + } } } } diff --git a/src/npc/descriptions/describePiercings.js b/src/npc/descriptions/describePiercings.js index 4120e520ebc1a3b80010855c2eee2dc92e92b411..d5d27e471cffed0213debb59c34be93af9814f3a 100644 --- a/src/npc/descriptions/describePiercings.js +++ b/src/npc/descriptions/describePiercings.js @@ -15,6 +15,7 @@ App.Desc.piercing = function(slave, surface) { switch (surface) { case "ear": { if (slave.earPiercing > 0) { + const clothing = App.Data.clothes.get(slave.clothes); if (slave.earPiercing === 1) { r.push(`${His} earlobes are conventionally pierced.`); } else { @@ -22,6 +23,8 @@ App.Desc.piercing = function(slave, surface) { } if (slave.assignment === "get milked" || slave.assignment === "work in the dairy") { r.push(`${He} has a plastic livestock tag in one ear to help identify ${him} for milking.`); + } else if (clothing && clothing.desc && "earPiercing" in clothing.desc) { + r.push(clothing.desc.earPiercing(slave)); } else { switch (slave.clothes) { case "attractive lingerie": @@ -139,7 +142,6 @@ App.Desc.piercing = function(slave, surface) { case "a burqa": r.push(`${He}'s wearing cheap metal earrings with fake gems.`); break; - case "a slave gown": case "a halter top dress": case "a ball gown": case "a maternity dress": @@ -516,263 +518,265 @@ App.Desc.piercing = function(slave, surface) { r.push(`Any attempt to remove it will cause intense pain.`); } } else { - switch (slave.clothes) { - case "a hijab and blouse": - case "a schoolgirl outfit": - case "conservative clothing": - case "nice business attire": - case "slutty business attire": - r.push(`${his} blouse hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "chains": - r.push(`they're laced together with steel cable, tightly enough that they're tugging at ${his} skin.`); - break; - case "Western clothing": - r.push(`${his} shirt hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a toga": - r.push(`${his} toga hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a huipil": - r.push(`${his} huipil hides them partially, so the leather straps that pull on ${his} skin are clearly evident.`); - break; - case "a long qipao": - case "a slutty qipao": - r.push(`${his} qipao hides them completely, but they're laced tightly with silk cord, so ${he}'s aware they're there.`); - break; - case "uncomfortable straps": - r.push(`they're laced together with a leather cord, tightly enough that they're tugging at ${his} skin.`); - break; - case "shibari ropes": - r.push(`they're laced together as part of ${his} bindings.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`these are clipped into the latex covering them, making it almost a part of ${his} body.`); - if (slave.devotion > 50) { - r.push(`${He} couldn't remove it, even if ${he} wanted to.`); - } else if (slave.devotion >= -20) { - r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); - } else { - r.push(`Any attempt to remove it will cause intense pain.`); - } - break; - case "a military uniform": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a schutzstaffel uniform": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a slutty schutzstaffel uniform": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a red army uniform": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "battlearmor": - r.push(`${his} armor hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "Imperial Plate": - r.push(`${his} ultra-heavy armor hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a dirndl": - r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "lederhosen": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a mounty outfit": - r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a biyelgee costume": - r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a nice nurse outfit": - r.push(`${his} scrubs hide them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a mini dress": - r.push(`these are clipped into the mini dress covering them, making it almost a part of ${his} body.`); - if (slave.devotion > 50) { - r.push(`${He} couldn't remove it, even if ${he} wanted to.`); - } else if (slave.devotion >= -20) { - r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); - } else { - r.push(`Any attempt to remove it will cause intense pain.`); - } - break; - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - case "kitty lingerie": - r.push(`they're laced together with a lacy ribbon finished off with a bow.`); - break; - case "a succubus outfit": - r.push(`they're laced into ${his} succubus corset, making it a part of ${him}.`); - break; - case "a fallen nuns habit": - r.push(`they're laced together with cord, tightly enough that ${he} is forced to arch ${his} back or suffer. ${He} spends most of ${his} time involuntarily presenting ${his} bottom to relieve the tugging.`); - break; - case "a chattel habit": - r.push(`${his} white habit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a penitent nuns habit": - r.push(`${his} habit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a gothic lolita dress": - case "a hanbok": - case "a Santa dress": - r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a burkini": - case "a one-piece swimsuit": - r.push(`${his} swimsuit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a monokini": - r.push(`the straps of ${his} swimsuit run on each side of these loops.`); - break; - case "an apron": - r.push(`the straps of ${his} apron run on each side of these loops.`); - break; - case "overalls": - r.push(`the straps of ${his} overalls run on each side of these loops.`); - break; - case "a bra": - case "a skimpy loincloth": - case "a striped bra": - case "a thong": - case "boyshorts": - case "cutoffs": - case "jeans": - case "leather pants": - case "leather pants and pasties": - case "panties": - case "panties and pasties": - case "pasties": - case "sport shorts": - case "striped panties": - case "striped underwear": - r.push(`the piercings are plainly visible on ${his} bare back.`); - break; - case "a slutty klan robe": - case "a slutty pony outfit": - case "a sports bra": - case "a tank-top and panties": - case "a tube top": - case "a tube top and thong": - case "leather pants and a tube top": - r.push(`the piercings are only partly visible on ${his} back.`); - break; - case "a button-up shirt": - case "a button-up shirt and panties": - case "a police uniform": - case "a t-shirt and jeans": - case "a t-shirt and panties": - case "a t-shirt and thong": - case "a t-shirt": - case "a tank-top": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "sport shorts and a sports bra": - case "sport shorts and a t-shirt": - r.push(`${his} shirt hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${his} sweater hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a nice pony outfit": - r.push(`${his} outfit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a string bikini": - r.push(`the back of ${his} string top loops into them and runs down through them to become ${his} bottom, such as it is.`); - break; - case "a scalemail bikini": - r.push(`they're laced together with a steel chain.`); - break; - case "a cheerleader outfit": - r.push(`they're laced together with a simple ribbon, but the effect makes it clear that this is one kinky cheerleader.`); - break; - case "clubslut netting": - r.push(`these are clipped into the netting covering them, making it almost a part of ${his} body.`); - if (slave.devotion > 50) { - r.push(`${He} couldn't remove it, even if ${he} wanted to.`); - } else if (slave.devotion >= -20) { - r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); - } else { - r.push(`Any attempt to remove it will cause intense pain.`); - } - break; - case "cutoffs and a t-shirt": - r.push(`they're laced together with a simple ribbon, but the effect makes it clear that this is one kinky ${girl}.`); - break; - case "a slutty outfit": - r.push(`they're laced together with a simple ribbon, tightly enough that ${he}'s aware they're there.`); - break; - case "a slave gown": - r.push(`they're revealed by the swooping back of ${his} gown and laced up with matching silk ribbon.`); - break; - case "a comfortable bodysuit": - r.push(`these are clipped into the bodysuit covering them, making it almost a part of ${his} body.`); - if (slave.devotion > 50) { - r.push(`${He} couldn't remove it, even if ${he} wanted to.`); - } else if (slave.devotion >= -20) { - r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); - } else { - r.push(`Any attempt to remove it will cause intense pain.`); - } - break; - case "a leotard": - r.push(`these are clipped into the leotard covering them, making it almost a part of ${his} body.`); - if (slave.devotion > 50) { - r.push(`${He} couldn't remove it, even if ${he} wanted to.`); - } else if (slave.devotion >= -20) { - r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); - } else { - r.push(`Any attempt to remove it will cause intense pain.`); - } - break; - case "a bunny outfit": - r.push(`${his} teddy hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a slutty maid outfit": - r.push(`${his} dress has an open back to reveal them and the black ribbon that laces them tightly together.`); - break; - case "a nice maid outfit": - r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a slutty nurse outfit": - r.push(`${his} jacket hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a kimono": - r.push(`${his} kimono hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${his} abaya hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a klan robe": - r.push(`${his} robe hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "a burqa": - r.push(`${his} burqa hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); - break; - case "battledress": - r.push(`they're laced together with paracord.`); - break; - case "harem gauze": - r.push(`they're laced up with a light golden chain that glints through ${his} filmy clothing.`); - break; - case "slutty jewelry": - r.push(`they're laced up with a light golden chain that begins and ends in other parts of ${his} glinting bonds.`); - break; - case "a courtesan dress": - r.push(`they're laced into ${his} dress's corset, binding the material even closer to ${him}.`); - break; - case "a bimbo outfit": - r.push(`they're laced together with a bright pink ribbon.`); - break; - default: - r.push(`they're laced up with a ribbon, tightly enough to keep ${him} aware they're there.`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "corsetPiercing" in clothing.desc) { + r.push(clothing.desc.corsetPiercing(slave)); + } else { + switch (slave.clothes) { + case "a hijab and blouse": + case "a schoolgirl outfit": + case "conservative clothing": + case "nice business attire": + case "slutty business attire": + r.push(`${his} blouse hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "chains": + r.push(`they're laced together with steel cable, tightly enough that they're tugging at ${his} skin.`); + break; + case "Western clothing": + r.push(`${his} shirt hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a toga": + r.push(`${his} toga hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a huipil": + r.push(`${his} huipil hides them partially, so the leather straps that pull on ${his} skin are clearly evident.`); + break; + case "a long qipao": + case "a slutty qipao": + r.push(`${his} qipao hides them completely, but they're laced tightly with silk cord, so ${he}'s aware they're there.`); + break; + case "uncomfortable straps": + r.push(`they're laced together with a leather cord, tightly enough that they're tugging at ${his} skin.`); + break; + case "shibari ropes": + r.push(`they're laced together as part of ${his} bindings.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`these are clipped into the latex covering them, making it almost a part of ${his} body.`); + if (slave.devotion > 50) { + r.push(`${He} couldn't remove it, even if ${he} wanted to.`); + } else if (slave.devotion >= -20) { + r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); + } else { + r.push(`Any attempt to remove it will cause intense pain.`); + } + break; + case "a military uniform": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a schutzstaffel uniform": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a slutty schutzstaffel uniform": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a red army uniform": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "battlearmor": + r.push(`${his} armor hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "Imperial Plate": + r.push(`${his} ultra-heavy armor hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a dirndl": + r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "lederhosen": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a mounty outfit": + r.push(`${his} tunic hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a biyelgee costume": + r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a nice nurse outfit": + r.push(`${his} scrubs hide them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a mini dress": + r.push(`these are clipped into the mini dress covering them, making it almost a part of ${his} body.`); + if (slave.devotion > 50) { + r.push(`${He} couldn't remove it, even if ${he} wanted to.`); + } else if (slave.devotion >= -20) { + r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); + } else { + r.push(`Any attempt to remove it will cause intense pain.`); + } + break; + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + case "kitty lingerie": + r.push(`they're laced together with a lacy ribbon finished off with a bow.`); + break; + case "a succubus outfit": + r.push(`they're laced into ${his} succubus corset, making it a part of ${him}.`); + break; + case "a fallen nuns habit": + r.push(`they're laced together with cord, tightly enough that ${he} is forced to arch ${his} back or suffer. ${He} spends most of ${his} time involuntarily presenting ${his} bottom to relieve the tugging.`); + break; + case "a chattel habit": + r.push(`${his} white habit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a penitent nuns habit": + r.push(`${his} habit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a gothic lolita dress": + case "a hanbok": + case "a Santa dress": + r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a burkini": + case "a one-piece swimsuit": + r.push(`${his} swimsuit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a monokini": + r.push(`the straps of ${his} swimsuit run on each side of these loops.`); + break; + case "an apron": + r.push(`the straps of ${his} apron run on each side of these loops.`); + break; + case "overalls": + r.push(`the straps of ${his} overalls run on each side of these loops.`); + break; + case "a bra": + case "a skimpy loincloth": + case "a striped bra": + case "a thong": + case "boyshorts": + case "cutoffs": + case "jeans": + case "leather pants": + case "leather pants and pasties": + case "panties": + case "panties and pasties": + case "pasties": + case "sport shorts": + case "striped panties": + case "striped underwear": + r.push(`the piercings are plainly visible on ${his} bare back.`); + break; + case "a slutty klan robe": + case "a slutty pony outfit": + case "a sports bra": + case "a tank-top and panties": + case "a tube top": + case "a tube top and thong": + case "leather pants and a tube top": + r.push(`the piercings are only partly visible on ${his} back.`); + break; + case "a button-up shirt": + case "a button-up shirt and panties": + case "a police uniform": + case "a t-shirt and jeans": + case "a t-shirt and panties": + case "a t-shirt and thong": + case "a t-shirt": + case "a tank-top": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "sport shorts and a sports bra": + case "sport shorts and a t-shirt": + r.push(`${his} shirt hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${his} sweater hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a nice pony outfit": + r.push(`${his} outfit hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a string bikini": + r.push(`the back of ${his} string top loops into them and runs down through them to become ${his} bottom, such as it is.`); + break; + case "a scalemail bikini": + r.push(`they're laced together with a steel chain.`); + break; + case "a cheerleader outfit": + r.push(`they're laced together with a simple ribbon, but the effect makes it clear that this is one kinky cheerleader.`); + break; + case "clubslut netting": + r.push(`these are clipped into the netting covering them, making it almost a part of ${his} body.`); + if (slave.devotion > 50) { + r.push(`${He} couldn't remove it, even if ${he} wanted to.`); + } else if (slave.devotion >= -20) { + r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); + } else { + r.push(`Any attempt to remove it will cause intense pain.`); + } + break; + case "cutoffs and a t-shirt": + r.push(`they're laced together with a simple ribbon, but the effect makes it clear that this is one kinky ${girl}.`); + break; + case "a slutty outfit": + r.push(`they're laced together with a simple ribbon, tightly enough that ${he}'s aware they're there.`); + break; + case "a comfortable bodysuit": + r.push(`these are clipped into the bodysuit covering them, making it almost a part of ${his} body.`); + if (slave.devotion > 50) { + r.push(`${He} couldn't remove it, even if ${he} wanted to.`); + } else if (slave.devotion >= -20) { + r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); + } else { + r.push(`Any attempt to remove it will cause intense pain.`); + } + break; + case "a leotard": + r.push(`these are clipped into the leotard covering them, making it almost a part of ${his} body.`); + if (slave.devotion > 50) { + r.push(`${He} couldn't remove it, even if ${he} wanted to.`); + } else if (slave.devotion >= -20) { + r.push(`${He} couldn't remove it, even if ${he} were inclined to try.`); + } else { + r.push(`Any attempt to remove it will cause intense pain.`); + } + break; + case "a bunny outfit": + r.push(`${his} teddy hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a slutty maid outfit": + r.push(`${his} dress has an open back to reveal them and the black ribbon that laces them tightly together.`); + break; + case "a nice maid outfit": + r.push(`${his} dress hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a slutty nurse outfit": + r.push(`${his} jacket hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a kimono": + r.push(`${his} kimono hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${his} abaya hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a klan robe": + r.push(`${his} robe hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "a burqa": + r.push(`${his} burqa hides them completely, but they're laced tightly, so ${he}'s aware they're there.`); + break; + case "battledress": + r.push(`they're laced together with paracord.`); + break; + case "harem gauze": + r.push(`they're laced up with a light golden chain that glints through ${his} filmy clothing.`); + break; + case "slutty jewelry": + r.push(`they're laced up with a light golden chain that begins and ends in other parts of ${his} glinting bonds.`); + break; + case "a courtesan dress": + r.push(`they're laced into ${his} dress's corset, binding the material even closer to ${him}.`); + break; + case "a bimbo outfit": + r.push(`they're laced together with a bright pink ribbon.`); + break; + default: + r.push(`they're laced up with a ribbon, tightly enough to keep ${him} aware they're there.`); + } } } } diff --git a/src/npc/descriptions/drugs.js b/src/npc/descriptions/drugs.js index 4609cc969ab188b4ca1559b74d0e90df1cbeb8c3..d1f5639449a4f2a72b9838cb0a5e4dcfd1682ca8 100644 --- a/src/npc/descriptions/drugs.js +++ b/src/npc/descriptions/drugs.js @@ -921,9 +921,9 @@ App.Desc.drugs = function(slave) { } } } - if (slave.addict > 0 && slave.addict <= 2) { + if (slave.addict.isBetween(0, 3)) { r.push(`${He} is a new <span class="cyan">aphrodisiac addict.</span>`); - } else if (slave.addict > 0 && slave.addict < 10) { + } else if (slave.addict.isBetween(0, 10)) { r.push(`${He} is a confirmed <span class="cyan">aphrodisiac addict.</span>`); } else if (slave.addict > 0) { r.push(`${He} is completely <span class="cyan">dependent on aphrodisiacs,</span> and it is unlikely you will ever be able to wean ${him} off them.`); diff --git a/src/npc/descriptions/legs.js b/src/npc/descriptions/legs.js index fb8a53a9be1a90ecb0866455fae6e15fd861eddf..87d7d5bb81770228e28c434e18b72d228eca7edc 100644 --- a/src/npc/descriptions/legs.js +++ b/src/npc/descriptions/legs.js @@ -58,13 +58,13 @@ App.Desc.legs = function(slave) { } } else if (slave.muscles > 30) { if (slave.weight > 95) { - return `obvious muscles hidden beneath ${his} soft flab.`; + return `obvious muscles hidden beneath ${his} soft flab`; } else { return `obvious muscles`; } } else if (slave.muscles > 5) { if (slave.weight > 30) { - return `toned muscles hidden beneath ${his} soft flab.`; + return `toned muscles hidden beneath ${his} soft flab`; } else { return `toned muscles`; } diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js index 939e00b9b7ace2ef41359953c58e5e9b3708deab..67a7f3de6c46309f0531c136ea79c52b568df40f 100644 --- a/src/npc/descriptions/longSlave.js +++ b/src/npc/descriptions/longSlave.js @@ -430,7 +430,7 @@ App.Desc.longSlave = function(slave, {market = 0, eventDescription = false, pris if (slave.hColor === "red") { if (slave.hLength >= 10) { if (slave.markings === "freckles" || slave.markings === "heavily freckled") { - if (skinToneLevel(slave.skin) > 5 && skinToneLevel(slave.skin) < 10) { + if (skinToneLevel(slave.skin).isBetween(5, 10)) { r.push(`It goes perfectly with ${his} ${slave.skin} skin and freckles.`); } } diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js index 7c8b2bdbe611251e4a6065c5748b4a519a09dd67..158a6f1300a4e0beea7946c0171119e9f407fc39 100644 --- a/src/npc/descriptions/style/clothing.js +++ b/src/npc/descriptions/style/clothing.js @@ -15,960 +15,951 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) { const feet = hasBothLegs(slave) ? "feet" : "foot"; r.push(`${slave.slaveName} is wearing ${slave.clothes},`); - - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`an advanced slave garment designed for permanent wear. The suit's inhabitant is protected, cooled, dosed, and subject to total control. It also eliminates all sensory stimulation other than orders passed by the suit's systems and objects inserted into the Fuckdoll's`); - if (slave.vagina > -1) { - r.push(`face, front, and rear holes.`); - } else { - r.push(`face and lower holes.`); - } - break; - case "conservative clothing": - r.push(`including`); - if (hasAnyLegs(slave)) { - r.push(`nice slacks, a pretty silk blouse, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`a pretty silk blouse.`); - } - break; - case "chains": - r.push(`looped tightly around ${his} body wherever they can make ${his} most uncomfortable.`); - if (hasAnyLegs(slave)) { - r.push(`On ${his} ${feet}, ${he}'s wearing`); - r.push(App.Desc.footwear(slave)); - } - break; - case "Western clothing": - r.push(`including a flannel`); - if (hasAnyLegs(slave)) { - r.push(`shirt, chaps, a cowboy hat, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`shirt and a cowboy hat.`); - } - break; - case "body oil": - r.push(`rubbed into every`); - if (V.showInches === 2) { - r.push(`inch`); - } else { - r.push(`centimeter`); - } - r.push(`of exposed skin to show off ${his} body.`); - if (hasAnyLegs(slave)) { - r.push(`${He}'s wearing`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a toga": - r.push(`made of sturdy white linen, appropriate for a female sex`); - if (hasAnyLegs(slave)) { - r.push(`worker, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`worker.`); - } - break; - case "a huipil": - case "a slutty qipao": - r.push(`made of beautiful`); - if (hasAnyLegs(slave)) { - r.push(`silk, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`silk.`); - } - break; - case "spats and a tank top": - r.push(`including`); - if (hasAnyLegs(slave)) { - r.push(`a comfortable top along with form fitting shorts and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`a comfortable top.`); - } - break; - case "uncomfortable straps": - r.push(`which are in the shape of sturdy lingerie, except that wherever the straps cross a nipple or a hole, there is a steel ring to permit access.`); - if (hasAnyLegs(slave)) { - r.push(`${He} is bound by`); - r.push(App.Desc.footwear(slave)); - } - break; - case "shibari ropes": - r.push(`bound tightly around ${his} body.`); - if (hasAnyLegs(slave)) { - r.push(`${He} is bound by`); - r.push(App.Desc.footwear(slave)); - } - break; - case "restrictive latex": - r.push(`which covers everything except ${his} mouth, breasts, and genitals.`); - if (hasAnyLegs(slave)) { - r.push(`Even lower down, ${he} is squeezed by`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a latex catsuit": - r.push(`shiny and supple latex hugging every`); - if (V.showInches === 2) { - r.push(`inch`); - } else { - r.push(`centimeter`); - } - r.push(`of ${his} body below the neck.`); - if (hasAnyLegs(slave)) { - r.push(`${His} latex enclosed ${hasBothLegs(slave) ? "feet fit" : "foot fits"} snugly into`); - r.push(App.Desc.footwear(slave)); - } - break; - case "attractive lingerie": - r.push(`including a lovely bra with holes for ${his} nipples to poke through, a pretty g-string,`); - if (hasAnyLegs(slave)) { - r.push(`sheer stockings, and a garter belt.`); - if (slave.vagina === 0) { - r.push(`${His} lingerie is virgin white,`); - } else if ((slave.vagina === -1) && (slave.anus === 0)) { - r.push(`${His} lingerie is white, since ${he} has a virgin asspussy,`); - } else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) { - r.push(`${He}'s gone with black lingerie to look a bit more intimidating,`); - } else if (slave.hormoneBalance < 0) { - r.push(`${He}'s gone with blue lingerie for some reason,`); - } else if ((slave.dick > 0) && (slave.balls === 0)) { - r.push(`The lingerie is girly pink,`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "summary" in clothing.desc) { + r.push(clothing.desc.summary(slave)); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`an advanced slave garment designed for permanent wear. The suit's inhabitant is protected, cooled, dosed, and subject to total control. It also eliminates all sensory stimulation other than orders passed by the suit's systems and objects inserted into the Fuckdoll's`); + if (slave.vagina > -1) { + r.push(`face, front, and rear holes.`); } else { - r.push(`The lingerie is ${slave.hColor} to match ${his} hair,`); + r.push(`face and lower holes.`); + } + break; + case "conservative clothing": + r.push(`including`); + if (hasAnyLegs(slave)) { + r.push(`nice slacks, a pretty silk blouse, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`a pretty silk blouse.`); + } + break; + case "chains": + r.push(`looped tightly around ${his} body wherever they can make ${his} most uncomfortable.`); + if (hasAnyLegs(slave)) { + r.push(`On ${his} ${feet}, ${he}'s wearing`); + r.push(App.Desc.footwear(slave)); + } + break; + case "Western clothing": + r.push(`including a flannel`); + if (hasAnyLegs(slave)) { + r.push(`shirt, chaps, a cowboy hat, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`shirt and a cowboy hat.`); + } + break; + case "body oil": + r.push(`rubbed into every`); + if (V.showInches === 2) { + r.push(`inch`); + } else { + r.push(`centimeter`); + } + r.push(`of exposed skin to show off ${his} body.`); + if (hasAnyLegs(slave)) { + r.push(`${He}'s wearing`); + r.push(App.Desc.footwear(slave)); + } + break; + case "a toga": + r.push(`made of sturdy white linen, appropriate for a female sex`); + if (hasAnyLegs(slave)) { + r.push(`worker, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`worker.`); + } + break; + case "a huipil": + case "a slutty qipao": + r.push(`made of beautiful`); + if (hasAnyLegs(slave)) { + r.push(`silk, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`silk.`); + } + break; + case "spats and a tank top": + r.push(`including`); + if (hasAnyLegs(slave)) { + r.push(`a comfortable top along with form fitting shorts and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`a comfortable top.`); + } + break; + case "uncomfortable straps": + r.push(`which are in the shape of sturdy lingerie, except that wherever the straps cross a nipple or a hole, there is a steel ring to permit access.`); + if (hasAnyLegs(slave)) { + r.push(`${He} is bound by`); + r.push(App.Desc.footwear(slave)); + } + break; + case "shibari ropes": + r.push(`bound tightly around ${his} body.`); + if (hasAnyLegs(slave)) { + r.push(`${He} is bound by`); + r.push(App.Desc.footwear(slave)); + } + break; + case "restrictive latex": + r.push(`which covers everything except ${his} mouth, breasts, and genitals.`); + if (hasAnyLegs(slave)) { + r.push(`Even lower down, ${he} is squeezed by`); + r.push(App.Desc.footwear(slave)); } - r.push(`and ${he}'s wearing`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`and a garter belt.`); + break; + case "a latex catsuit": + r.push(`shiny and supple latex hugging every`); + if (V.showInches === 2) { + r.push(`inch`); + } else { + r.push(`centimeter`); + } + r.push(`of ${his} body below the neck.`); + if (hasAnyLegs(slave)) { + r.push(`${His} latex enclosed ${hasBothLegs(slave) ? "feet fit" : "foot fits"} snugly into`); + r.push(App.Desc.footwear(slave)); + } + break; + case "attractive lingerie": + r.push(`including a lovely bra with holes for ${his} nipples to poke through, a pretty g-string,`); + if (hasAnyLegs(slave)) { + r.push(`sheer stockings, and a garter belt.`); + if (slave.vagina === 0) { + r.push(`${His} lingerie is virgin white,`); + } else if ((slave.vagina === -1) && (slave.anus === 0)) { + r.push(`${His} lingerie is white, since ${he} has a virgin asspussy,`); + } else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) { + r.push(`${He}'s gone with black lingerie to look a bit more intimidating,`); + } else if (slave.hormoneBalance < 0) { + r.push(`${He}'s gone with blue lingerie for some reason,`); + } else if ((slave.dick > 0) && (slave.balls === 0)) { + r.push(`The lingerie is girly pink,`); + } else { + r.push(`The lingerie is ${slave.hColor} to match ${his} hair,`); + } + r.push(`and ${he}'s wearing`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`and a garter belt.`); + if (slave.vagina === 0) { + r.push(`${His} lingerie is virgin white.`); + } else if ((slave.vagina === -1) && (slave.anus === 0)) { + r.push(`${His} lingerie is white, since ${he} has a virgin asspussy.`); + } else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) { + r.push(`${He}'s gone with black lingerie to look a bit more intimidating.`); + } else if (slave.hormoneBalance < 0) { + r.push(`${He}'s gone with blue lingerie for some reason.`); + } else if ((slave.dick > 0) && (slave.balls === 0)) { + r.push(`The lingerie is girly pink.`); + } else { + r.push(`The lingerie is ${slave.hColor} to match ${his} hair.`); + } + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`including a lovely bra that becomes transparent when wet, a pretty pair of panties designed to easily break if their wearer decides to give birth in them, and a light silken vest that exposes ${his} stomach.`); if (slave.vagina === 0) { - r.push(`${His} lingerie is virgin white.`); + r.push(`${His} lingerie is the purest white, since ${he} is a pregnant virgin`); } else if ((slave.vagina === -1) && (slave.anus === 0)) { - r.push(`${His} lingerie is white, since ${he} has a virgin asspussy.`); + r.push(`${His} lingerie is white, since ${he} has a virgin asspussy`); } else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) { - r.push(`${He}'s gone with black lingerie to look a bit more intimidating.`); + r.push(`${He}'s gone with black lingerie to look a bit more intimidating`); } else if (slave.hormoneBalance < 0) { - r.push(`${He}'s gone with blue lingerie for some reason.`); + r.push(`${He}'s gone with blue lingerie for some reason`); } else if ((slave.dick > 0) && (slave.balls === 0)) { - r.push(`The lingerie is girly pink.`); - } else { - r.push(`The lingerie is ${slave.hColor} to match ${his} hair.`); - } - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`including a lovely bra that becomes transparent when wet, a pretty pair of panties designed to easily break if their wearer decides to give birth in them, and a light silken vest that exposes ${his} stomach.`); - if (slave.vagina === 0) { - r.push(`${His} lingerie is the purest white, since ${he} is a pregnant virgin`); - } else if ((slave.vagina === -1) && (slave.anus === 0)) { - r.push(`${His} lingerie is white, since ${he} has a virgin asspussy`); - } else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) { - r.push(`${He}'s gone with black lingerie to look a bit more intimidating`); - } else if (slave.hormoneBalance < 0) { - r.push(`${He}'s gone with blue lingerie for some reason`); - } else if ((slave.dick > 0) && (slave.balls === 0)) { - r.push(`The lingerie is girly pink`); - } else { - r.push(`The lingerie is ${slave.hColor} to match ${his} hair`); - } - if (hasAnyLegs(slave)) { - r.push(r.pop() + `, and ${he}'s wearing`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(r.pop() + "."); - } - break; - case "kitty lingerie": - r.push(`consisting of a ruffled lace bra with a window shaped like a cat's head on the front and center,`); - if (hasAnyLegs(slave)) { - r.push(`a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`and a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back.`); - } - break; - case "a maternity dress": - r.push(`including a long loose dress made to stretch with a low cut neck designed for easy breast`); - if (hasAnyLegs(slave)) { - r.push(`exposure, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`exposure.`); - } - break; - case "stretch pants and a crop-top": - r.push(`including`); - if (hasAnyLegs(slave)) { - r.push(`a tight, low-cut, midriff exposing crop-top, a pair of stretch pants, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`a tight, low-cut, midriff exposing crop-top and a legless pair of stretch pants to slip over ${his} limbless bottom.`); - } - break; - case "a succubus outfit": - if (hasAnyLegs(slave)) { - r.push(`consisting of a short red leather corset, an even shorter skirt of the same material, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`consisting of a short red leather corset and an even shorter skirt of the same material.`); - } - break; - case "a fallen nuns habit": - r.push(`a kinky latex affair that manages to look enough like traditional religious garb to be thoroughly sacrilegious.`); - if (hasAnyLegs(slave)) { - r.push(`${He} is wearing`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a chattel habit": - r.push(`the revealing white and gold vestments of an ordained sex slave.`); - if (hasAnyLegs(slave)) { - r.push(`They include`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a penitent nuns habit": - r.push(`made of roughspun sackcloth designed to chafe the`); - if (hasAnyLegs(slave)) { - r.push(`wearer, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`wearer.`); - } - break; - case "a string bikini": - r.push(`which passes around ${his} nipples and`); - if (slave.dick === 1) { - r.push(`dick`); - } else if (slave.vagina === -1) { - r.push(`smooth groin`); - } else { - r.push(`pussy`); - } - r.push(`rather than covering`); - if (hasAnyLegs(slave)) { - r.push(`them, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`them.`); - } - break; - case "a scalemail bikini": - r.push(`with leather insides for`); - if (hasAnyLegs(slave)) { - r.push(`comfort, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`comfort.`); - } - break; - case "striped panties": - r.push(`a simple garment that hugs ${his}`); - if (hasAnyLegs(slave)) { - r.push(`body closely and comfortably, and`); - r.push(App.Desc.footwear(slave)); - } else { + r.push(`The lingerie is girly pink`); + } else { + r.push(`The lingerie is ${slave.hColor} to match ${his} hair`); + } + if (hasAnyLegs(slave)) { + r.push(r.pop() + `, and ${he}'s wearing`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(r.pop() + "."); + } + break; + case "kitty lingerie": + r.push(`consisting of a ruffled lace bra with a window shaped like a cat's head on the front and center,`); + if (hasAnyLegs(slave)) { + r.push(`a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`and a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back.`); + } + break; + case "a maternity dress": + r.push(`including a long loose dress made to stretch with a low cut neck designed for easy breast`); + if (hasAnyLegs(slave)) { + r.push(`exposure, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`exposure.`); + } + break; + case "stretch pants and a crop-top": + r.push(`including`); + if (hasAnyLegs(slave)) { + r.push(`a tight, low-cut, midriff exposing crop-top, a pair of stretch pants, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`a tight, low-cut, midriff exposing crop-top and a legless pair of stretch pants to slip over ${his} limbless bottom.`); + } + break; + case "a succubus outfit": + if (hasAnyLegs(slave)) { + r.push(`consisting of a short red leather corset, an even shorter skirt of the same material, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`consisting of a short red leather corset and an even shorter skirt of the same material.`); + } + break; + case "a fallen nuns habit": + r.push(`a kinky latex affair that manages to look enough like traditional religious garb to be thoroughly sacrilegious.`); + if (hasAnyLegs(slave)) { + r.push(`${He} is wearing`); + r.push(App.Desc.footwear(slave)); + } + break; + case "a chattel habit": + r.push(`the revealing white and gold vestments of an ordained sex slave.`); + if (hasAnyLegs(slave)) { + r.push(`They include`); + r.push(App.Desc.footwear(slave)); + } + break; + case "a penitent nuns habit": + r.push(`made of roughspun sackcloth designed to chafe the`); + if (hasAnyLegs(slave)) { + r.push(`wearer, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`wearer.`); + } + break; + case "a string bikini": + r.push(`which passes around ${his} nipples and`); + if (slave.dick === 1) { + r.push(`dick`); + } else if (slave.vagina === -1) { + r.push(`smooth groin`); + } else { + r.push(`pussy`); + } + r.push(`rather than covering`); + if (hasAnyLegs(slave)) { + r.push(`them, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`them.`); + } + break; + case "a scalemail bikini": + r.push(`with leather insides for`); + if (hasAnyLegs(slave)) { + r.push(`comfort, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`comfort.`); + } + break; + case "striped panties": + r.push(`a simple garment that hugs ${his}`); + if (hasAnyLegs(slave)) { + r.push(`body closely and comfortably, and`); + r.push(App.Desc.footwear(slave)); + } else { + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`body closely and comfortably.`); + } + break; + case "a cheerleader outfit": if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`body closely and comfortably.`); - } - break; - case "a cheerleader outfit": - if (isAmputee(slave)) { - r.push(`which lacks holes for ${his} arms.`); - } else if (!hasAnyArms(slave)) { - r.push(`which lacks holes for ${his} arms, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`and`); - r.push(App.Desc.footwear(slave)); - } - break; - case "clubslut netting": - if ( - (slave.nails === 2 || slave.nails === 7 || slave.nails === 9) && + r.push(`which lacks holes for ${his} arms.`); + } else if (!hasAnyArms(slave)) { + r.push(`which lacks holes for ${his} arms, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`and`); + r.push(App.Desc.footwear(slave)); + } + break; + case "clubslut netting": + if ( + (slave.nails === 2 || slave.nails === 7 || slave.nails === 9) && (slave.makeup === 3 || slave.makeup === 6 || slave.makeup === 8) - ) { - r.push(`${slave.hColor} to match ${his} monochrome style,`); - } else if ((skinToneLevel(slave.skin) > 22)) { - r.push(`in white to create a striking contrast with ${his} ${slave.skin} skin,`); - } else if (slave.addict > 5) { - r.push(`in the electric blue color of aphrodisiacs to signal ${he}'s down to fuck high,`); - } else if ((slave.dick > 0) && canAchieveErection(slave)) { - r.push(`in blue to signal that ${he} can get hard,`); - } else { - r.push(`in classic bubblegum pink,`); - } - if (isAmputee(slave)) { - r.push(`and lacks arm or leg holes, so ${his} limbless torso is in a net.`); - } else if (!hasAnyLegs(slave)) { - r.push(`and lacks leg holes, so ${his} body is in a net.`); - } else { - r.push(`and`); - r.push(App.Desc.footwear(slave)); - } - break; - case "cutoffs and a t-shirt": - r.push(`which has`); - if (slave.fetish === "buttslut" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { - r.push(`"BUTTSLUT" across the front in capital letters.`); - } else if (slave.fetish === "cumslut" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { - r.push(`"CUMSLUT" across the front in capital letters.`); - } else if (slave.fetish === "submissive" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { - r.push(`"SUB" on the front in capital letters.`); - } else if (slave.fetish === "sadist" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { - r.push(`"AWFUL BITCH" on the front in capital letters.`); - } else if (slave.fetish === "masochist" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { - r.push(`"PAINSLUT" on the front in capital letters.`); - } else if ((slave.fetish === "dom") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { - r.push(`"TOP" on the front in capital letters.`); - } else if ((slave.fetish === "humiliation") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { - r.push(`"SEX SLAVE" on the front in capital letters.`); - } else if ((slave.fetish === "pregnancy") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { - r.push(`"BREEDER" on the front in capital letters.`); - } else if ((slave.fetish === "boobs") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { - r.push(`"I <3 BOOBS" on the front in capital letters.`); - } else if (slave.energy > 95) { - r.push(`"Fuck me!" across the front in huge letters.`); - } else if ((slave.dick === 0) && (slave.vagina === -1)) { - r.push(`"NULL ASSWHORE" on the front in capital letters.`); - } else if ((slave.dick > 0) && (slave.vagina > -1)) { - r.push(`"HERMAPHRODITE" on the front in capital letters.`); - } else if ((slave.dick > 0) && (slave.balls > 0)) { - r.push(`"Sissy Slave" across the front in large letters.`); - } else if (slave.dick > 0) { - r.push(`"Orchi Bitch" across the front in large letters.`); - } else if (slave.vagina === 0) { - r.push(`"Virgin!" across the front in large letters.`); - } else if (slave.anus === 0) { - r.push(`"Anal Virgin!" across the front in large letters.`); - } else if (slave.pregKnown === 1) { - r.push(`"I'm Pregnant!" across the front in large letters.`); - } else { - r.push(`"Property of ${PlayerName()}" across the front.`); - } - if (hasAnyLegs(slave)) { - r.push(`The look is completed by wearing`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a slave gown": - r.push(`a gorgeous affair`); - if (isAmputee(slave)) { - r.push(`tailored to favor ${his} lack of arms and legs.`); - } else if (!hasAnyLegs(slave)) { - r.push(`with cuts that offer tantalizing glimpses of delicate flesh.`); - } else { - r.push(`with cuts that offer tantalizing glimpses of delicate flesh.`); - r.push(`${He} completes the look with`); - r.push(App.Desc.footwear(slave)); - } - break; - case "slutty business attire": - r.push(`a suit jacket cut to show a great deal of`); - if (hasAnyLegs(slave)) { - r.push(`cleavage and a short skirt with`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`cleavage and a short skirt.`); - } - break; - case "nice business attire": - r.push(`a suit jacket and a nice`); - if (hasAnyLegs(slave)) { - r.push(`skirt with`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`skirt.`); - } - break; - case "a ball gown": - r.push(`a majestically grand silken dress for formal`); - if (hasAnyLegs(slave)) { - r.push(`occasions, stockings, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`occasions.`); - } - break; - case "a halter top dress": - r.push(`an extravagant garment showing off ${his} bare`); - if (hasAnyLegs(slave)) { - r.push(`back,`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`back.`); - } - break; - case "a mini dress": - r.push(`a body hugging strapless number that shows as much skin as it`); - if (hasAnyLegs(slave)) { - r.push(`covers, paired with`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`covers.`); - } - break; - case "a comfortable bodysuit": - r.push(`which covers ${him} to the neck while displaying the shape of`); - if (hasAnyLegs(slave)) { - r.push(`everything, and seamlessly transitions down into`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`everything.`); - } - break; - case "a leotard": - r.push(`a sporty garment that hugs ${his}`); - if (hasAnyLegs(slave)) { - r.push(`body closely and comfortably, and`); - r.push(App.Desc.footwear(slave)); - } else { - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`body closely and comfortably.`); - } - break; - case "a monokini": - r.push(`a one-piece swimsuit that stops halfway up ${his}`); - if (hasAnyLegs(slave)) { - r.push(`torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`torso.`); - } - break; - case "an apron": - r.push(`but is otherwise almost entirely`); - if (hasAnyLegs(slave)) { - r.push(`naked,`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`naked.`); - } - break; - case "overalls": - r.push(`but little`); - if (hasAnyLegs(slave)) { - r.push(`else,`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`else.`); - } - break; - case "a cybersuit": - r.push(`a form-fitting military bodysuit covering ${his}`); - if (hasAnyLegs(slave)) { - r.push(`face and torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`face and`); - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`torso.`); - } - break; - case "a tight Imperial bodysuit": - r.push(`a form-fitting cybernetic bodysuit, pulsating with various pieces of integrated technology and emblazoned with your Imperial crest over the chest, covering ${his}`); - if (hasAnyLegs(slave)) { - r.push(`face and torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`face and`); - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`torso.`); - } - break; - case "battlearmor": - r.push(`a form-fitting military armor covering ${his}`); - if (hasAnyLegs(slave)) { - r.push(`face and torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`face and`); - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`torso.`); - } - break; - case "Imperial Plate": - r.push(`an set of high-tech plated armor so heavy it makes ${him} look like a walking tank, emblazoned with your Imperial crest and covering ${his}`); - if (hasAnyLegs(slave)) { - r.push(`face, torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`face and`); - if (isAmputee(slave)) { - r.push(`limbless`); - } - r.push(`torso.`); - } - break; - case "a bunny outfit": - r.push(`a strapless satin teddy with a beribboned rosette over ${his} left hip, printed with ${his} name.`); - if (hasAnyLegs(slave)) { - r.push(`The ensemble includes sheer black hose ${he} wears with`); - r.push(App.Desc.footwear(slave)); - } - break; - case "a slutty maid outfit": - r.push(`which includes a very short, dark dress, a white blouse,`); - if (hasAnyLegs(slave)) { - r.push(`an apron, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`and an apron.`); - } - break; - case "a nice maid outfit": - r.push(`which includes a dark dress, a white blouse,`); - if (hasAnyLegs(slave)) { - r.push(`an apron, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`and an apron.`); - } - break; - case "a slutty nurse outfit": - r.push(`which includes an immodest low cut white`); - if (hasAnyLegs(slave)) { - r.push(`jacket, a tight white miniskirt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`jacket and a tight white miniskirt.`); - } - break; - case "a nice nurse outfit": - r.push(`which includes a plain white scrub`); - if (hasAnyLegs(slave)) { - r.push(`top, trousers, a stethoscope, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`top and trousers.`); - } - break; - case "a schoolgirl outfit": - r.push(`which includes a tight white`); - if (hasAnyLegs(slave)) { - r.push(`blouse, a short plaid skirt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`blouse and a short plaid skirt.`); - } - break; - case "a kimono": - r.push(`of the furisode`); - if (hasAnyLegs(slave)) { - r.push(`pattern, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`pattern.`); - } - break; - case "a dirndl": - case "a long qipao": - case "lederhosen": - case "a biyelgee costume": - case "a hanbok": - r.push(`of a traditional`); - if (hasAnyLegs(slave)) { - r.push(`pattern, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`pattern.`); - } - break; - case "a burkini": - r.push(`consisting of a polyester tunic and`); - if (hasAnyLegs(slave)) { - r.push(`pants, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`pants, which have been tailored for ${his} leglessness.`); - } - break; - case "a hijab and blouse": - r.push(`alongside a short-sleeved overshirt and a skirt that`); - if (hasAnyLegs(slave)) { - r.push(`body, down to ${his} ${feet}, which`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`dangles uselessly off ${his}`); + ) { + r.push(`${slave.hColor} to match ${his} monochrome style,`); + } else if ((skinToneLevel(slave.skin) > 22)) { + r.push(`in white to create a striking contrast with ${his} ${slave.skin} skin,`); + } else if (slave.addict > 5) { + r.push(`in the electric blue color of aphrodisiacs to signal ${he}'s down to fuck high,`); + } else if ((slave.dick > 0) && canAchieveErection(slave)) { + r.push(`in blue to signal that ${he} can get hard,`); + } else { + r.push(`in classic bubblegum pink,`); + } if (isAmputee(slave)) { - r.push(`limbless`); - } else { - r.push(`legless`); - } - r.push(`torso.`); - } - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`which modestly covers ${his} entire`); - if (hasAnyLegs(slave)) { - r.push(`body, down to ${his} ${feet}, which`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`body.`); - } - break; - case "a klan robe": - r.push(`which fully covers ${his} entire`); - if (hasAnyLegs(slave)) { - r.push(`body, down to ${his} ${feet}, which`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`body.`); - } - break; - case "a burqa": - r.push(`which restrictingly covers ${his} entire`); - if (hasAnyLegs(slave)) { - r.push(`body, down to ${his} ${feet}, which`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`body.`); - } - break; - case "a police uniform": - r.push(`of a traditional`); - if (hasAnyLegs(slave)) { - r.push(`styling, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`styling.`); - } - break; - case "a gothic lolita dress": - r.push(`of a Victorian`); - if (hasAnyLegs(slave)) { - r.push(`pattern, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`pattern.`); - } - break; - case "a one-piece swimsuit": - r.push(`which modestly covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`body, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`body.`); - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`which restrictingly covers ${his} entire`); - if (hasAnyLegs(slave)) { - r.push(`body, down to ${his} ${feet}, with`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`body.`); - } - break; - case "a button-up shirt and panties": - case "a button-up shirt": - case "a sweater": - case "a t-shirt": - case "a tank-top": - case "a nice over-sizes shirt": - case "a tube top": - case "an oversized t-shirt": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`torso, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`torso.`); - } - break; - case "a bra": - case "a sports bra": - case "a striped bra": - case "pasties": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`breasts, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`breasts.`); - } - break; - case "a tube top and thong": - case "a sweater and panties": - case "a slutty klan robe": - case "a tank-top and panties": - case "a t-shirt and thong": - case "an oversized t-shirt and boyshorts": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "a t-shirt and panties": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`torso, crotch, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`torso and crotch.`); - } - break; - case "striped underwear": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`breasts, crotch, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`breasts and crotch.`); - } - break; - case "a thong": - case "a skimpy loincloth": - case "boyshorts": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`crotch, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`crotch.`); - } - break; - case "panties": - case "panties and pasties": - r.push(`which only cover ${his}`); - if (hasAnyLegs(slave)) { - r.push(`crotch, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`crotch.`); - } - break; - case "cutoffs": - case "sport shorts": - r.push(`which only cover ${his}`); - if (hasAnyLegs(slave)) { - r.push(`crotch, ass, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`crotch and ass.`); - } - break; - case "a sweater and cutoffs": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`torso, crotch, ass, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`torso, crotch, and ass.`); - } - break; - case "leather pants and a tube top": - case "a t-shirt and jeans": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`torso, ass, legs, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`torso and ass.`); - } - break; - case "leather pants and pasties": - case "leather pants": - case "jeans": - r.push(`which only covers ${his}`); - if (hasAnyLegs(slave)) { - r.push(`legs, ass, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`ass.`); - } - break; - case "a military uniform": - r.push(`consisting of a shirt and tie, military`); - if (hasAnyLegs(slave)) { - r.push(`tunic, matching skirt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`tunic, and matching skirt.`); - } - r.push(`${His} uniform is pinned with the`); - if (slave.ID === V.BodyguardID || slave.ID === V.HeadGirlID || slave.ID === V.RecruiterID || slave.ID === V.ConcubineID) { - r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { - r.push(`golden manacles insignia of a junior slave officer,`); - } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { - r.push(`silver spear and manacles insignia of an augmented slave soldier,`); - } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { - r.push(`silver manacles insignia of a slave soldier,`); - } else { - r.push(`black iron manacles insignia of a slave,`); - } - r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); - break; - case "a schutzstaffel uniform": - r.push(`consisting of a shirt and tie, military`); - if (hasAnyLegs(slave)) { - r.push(`tunic, matching trousers, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`tunic, and matching trousers.`); - } - r.push(`${His} uniform is pinned with the`); - if (slave.ID === V.BodyguardID || slave.ID === V.HeadGirlID || slave.ID === V.RecruiterID || slave.ID === V.ConcubineID) { - r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { - r.push(`golden manacles insignia of a junior slave officer,`); - } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { - r.push(`silver spear and manacles insignia of an augmented slave soldier,`); - } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { - r.push(`silver manacles insignia of a slave soldier,`); - } else { - r.push(`black iron manacles insignia of a slave,`); - } - r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); - break; - case "a slutty schutzstaffel uniform": - r.push(`consisting of a shirt and tie, military`); - if (hasAnyLegs(slave)) { - r.push(`tunic, matching miniskirt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`tunic, and matching miniskirt.`); - } - r.push(`${His} uniform is pinned with the`); - if ((slave.ID === V.BodyguardID) || (slave.ID === V.HeadGirlID) || (slave.ID === V.RecruiterID) || (slave.ID === V.ConcubineID)) { - r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { - r.push(`golden manacles insignia of a junior slave officer,`); - } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { - r.push(`silver spear and manacles insignia of an augmented slave soldier,`); - } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { - r.push(`silver manacles insignia of a slave soldier,`); - } else { - r.push(`black iron manacles insignia of a slave,`); - } - r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); - break; - case "a red army uniform": - r.push(`consisting of a shirt and tie, military`); - if (hasAnyLegs(slave)) { - r.push(`tunic, matching skirt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`tunic, and matching skirt.`); - } - r.push(`${His} uniform is pinned with the`); - if ((slave.ID === V.BodyguardID) || (slave.ID === V.HeadGirlID) || (slave.ID === V.RecruiterID) || (slave.ID === V.ConcubineID)) { - r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { - r.push(`golden manacles insignia of a junior slave officer,`); - } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { - r.push(`silver spear and manacles insignia of an augmented slave soldier,`); - } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { - r.push(`silver manacles insignia of a slave soldier,`); - } else { - r.push(`black iron manacles insignia of a slave,`); - } - r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); - break; - case "battledress": - r.push(`including comfortable fatigue`); - if (hasAnyLegs(slave)) { - r.push(`pants, a sturdy tank top and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`pants (pinned over ${his} stumps) and a sturdy tank top.`); - } - break; - case "a mounty outfit": - r.push(`including comfortable`); - if (hasAnyLegs(slave)) { - r.push(`slacks, a sturdy tunic and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`slacks (pinned over ${his} stumps) and a sturdy tunic.`); - } - break; - case "harem gauze": - if (hasAnyLegs(slave)) { - r.push(`${He} is wearing`); - r.push(App.Desc.footwear(slave)); - } - r.push(`${He}'s covered and even veiled, but you can see everything straight through the filmy cloth.`); - break; - case "slutty jewelry": - r.push(`including a belt of thin chain with a lewd ornament (a little`); - if (slave.dick > 0 && slave.balls === 0) { - r.push(`curved golden cock without balls)`); - } else if (slave.dick > 0) { - r.push(`golden cock and balls)`); - } else if ((slave.fetish === "cumslut") && (slave.fetishStrength > 95)) { - r.push(`pair of golden lips)`); - } else if (slave.boobs > 1000) { - r.push(`pair of golden breasts)`); - } else if (slave.vagina === -1) { - r.push(`crinkled anus)`); - } else { - r.push(`golden pussy)`); - } - r.push(`over ${his} stomach.`); - if (hasAnyLegs(slave)) { - r.push(`${He} is wearing bangles which`); - r.push(App.Desc.footwear(slave)); - } - r.push(App.Desc.piercing(slave, "chastity")); - break; - case "a Santa dress": - r.push(`made of red felt with white fur`); - if (hasAnyLegs(slave)) { - r.push(`trim, a leather belt, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`trim and a leather belt.`); - } - break; - case "a bimbo outfit": - r.push(`consisting of a top and miniskirt that completely expose ${his} bra and`); - if (hasAnyLegs(slave)) { - r.push(`thong, and`); - r.push(App.Desc.footwear(slave)); - } else { - r.push(`thong.`); - } + r.push(`and lacks arm or leg holes, so ${his} limbless torso is in a net.`); + } else if (!hasAnyLegs(slave)) { + r.push(`and lacks leg holes, so ${his} body is in a net.`); + } else { + r.push(`and`); + r.push(App.Desc.footwear(slave)); + } + break; + case "cutoffs and a t-shirt": + r.push(`which has`); + if (slave.fetish === "buttslut" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { + r.push(`"BUTTSLUT" across the front in capital letters.`); + } else if (slave.fetish === "cumslut" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { + r.push(`"CUMSLUT" across the front in capital letters.`); + } else if (slave.fetish === "submissive" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { + r.push(`"SUB" on the front in capital letters.`); + } else if (slave.fetish === "sadist" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { + r.push(`"AWFUL BITCH" on the front in capital letters.`); + } else if (slave.fetish === "masochist" && slave.fetishStrength > 95 && slave.fetishKnown === 1) { + r.push(`"PAINSLUT" on the front in capital letters.`); + } else if ((slave.fetish === "dom") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { + r.push(`"TOP" on the front in capital letters.`); + } else if ((slave.fetish === "humiliation") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { + r.push(`"SEX SLAVE" on the front in capital letters.`); + } else if ((slave.fetish === "pregnancy") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { + r.push(`"BREEDER" on the front in capital letters.`); + } else if ((slave.fetish === "boobs") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) { + r.push(`"I <3 BOOBS" on the front in capital letters.`); + } else if (slave.energy > 95) { + r.push(`"Fuck me!" across the front in huge letters.`); + } else if ((slave.dick === 0) && (slave.vagina === -1)) { + r.push(`"NULL ASSWHORE" on the front in capital letters.`); + } else if ((slave.dick > 0) && (slave.vagina > -1)) { + r.push(`"HERMAPHRODITE" on the front in capital letters.`); + } else if ((slave.dick > 0) && (slave.balls > 0)) { + r.push(`"Sissy Slave" across the front in large letters.`); + } else if (slave.dick > 0) { + r.push(`"Orchi Bitch" across the front in large letters.`); + } else if (slave.vagina === 0) { + r.push(`"Virgin!" across the front in large letters.`); + } else if (slave.anus === 0) { + r.push(`"Anal Virgin!" across the front in large letters.`); + } else if (slave.pregKnown === 1) { + r.push(`"I'm Pregnant!" across the front in large letters.`); + } else { + r.push(`"Property of ${PlayerName()}" across the front.`); + } + if (hasAnyLegs(slave)) { + r.push(`The look is completed by wearing`); + r.push(App.Desc.footwear(slave)); + } + break; + case "slutty business attire": + r.push(`a suit jacket cut to show a great deal of`); + if (hasAnyLegs(slave)) { + r.push(`cleavage and a short skirt with`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`cleavage and a short skirt.`); + } + break; + case "nice business attire": + r.push(`a suit jacket and a nice`); + if (hasAnyLegs(slave)) { + r.push(`skirt with`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`skirt.`); + } + break; + case "a ball gown": + r.push(`a majestically grand silken dress for formal`); + if (hasAnyLegs(slave)) { + r.push(`occasions, stockings, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`occasions.`); + } + break; + case "a halter top dress": + r.push(`an extravagant garment showing off ${his} bare`); + if (hasAnyLegs(slave)) { + r.push(`back,`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`back.`); + } + break; + case "a mini dress": + r.push(`a body hugging strapless number that shows as much skin as it`); + if (hasAnyLegs(slave)) { + r.push(`covers, paired with`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`covers.`); + } + break; + case "a comfortable bodysuit": + r.push(`which covers ${him} to the neck while displaying the shape of`); + if (hasAnyLegs(slave)) { + r.push(`everything, and seamlessly transitions down into`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`everything.`); + } + break; + case "a leotard": + r.push(`a sporty garment that hugs ${his}`); + if (hasAnyLegs(slave)) { + r.push(`body closely and comfortably, and`); + r.push(App.Desc.footwear(slave)); + } else { + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`body closely and comfortably.`); + } + break; + case "a monokini": + r.push(`a one-piece swimsuit that stops halfway up ${his}`); + if (hasAnyLegs(slave)) { + r.push(`torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`torso.`); + } + break; + case "an apron": + r.push(`but is otherwise almost entirely`); + if (hasAnyLegs(slave)) { + r.push(`naked,`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`naked.`); + } + break; + case "overalls": + r.push(`but little`); + if (hasAnyLegs(slave)) { + r.push(`else,`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`else.`); + } + break; + case "a cybersuit": + r.push(`a form-fitting military bodysuit covering ${his}`); + if (hasAnyLegs(slave)) { + r.push(`face and torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`face and`); + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`torso.`); + } + break; + case "a tight Imperial bodysuit": + r.push(`a form-fitting cybernetic bodysuit, pulsating with various pieces of integrated technology and emblazoned with your Imperial crest over the chest, covering ${his}`); + if (hasAnyLegs(slave)) { + r.push(`face and torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`face and`); + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`torso.`); + } + break; + case "battlearmor": + r.push(`a form-fitting military armor covering ${his}`); + if (hasAnyLegs(slave)) { + r.push(`face and torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`face and`); + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`torso.`); + } + break; + case "Imperial Plate": + r.push(`an set of high-tech plated armor so heavy it makes ${him} look like a walking tank, emblazoned with your Imperial crest and covering ${his}`); + if (hasAnyLegs(slave)) { + r.push(`face, torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`face and`); + if (isAmputee(slave)) { + r.push(`limbless`); + } + r.push(`torso.`); + } + break; + case "a bunny outfit": + r.push(`a strapless satin teddy with a beribboned rosette over ${his} left hip, printed with ${his} name.`); + if (hasAnyLegs(slave)) { + r.push(`The ensemble includes sheer black hose ${he} wears with`); + r.push(App.Desc.footwear(slave)); + } + break; + case "a slutty maid outfit": + r.push(`which includes a very short, dark dress, a white blouse,`); + if (hasAnyLegs(slave)) { + r.push(`an apron, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`and an apron.`); + } + break; + case "a nice maid outfit": + r.push(`which includes a dark dress, a white blouse,`); + if (hasAnyLegs(slave)) { + r.push(`an apron, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`and an apron.`); + } + break; + case "a slutty nurse outfit": + r.push(`which includes an immodest low cut white`); + if (hasAnyLegs(slave)) { + r.push(`jacket, a tight white miniskirt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`jacket and a tight white miniskirt.`); + } + break; + case "a nice nurse outfit": + r.push(`which includes a plain white scrub`); + if (hasAnyLegs(slave)) { + r.push(`top, trousers, a stethoscope, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`top and trousers.`); + } + break; + case "a schoolgirl outfit": + r.push(`which includes a tight white`); + if (hasAnyLegs(slave)) { + r.push(`blouse, a short plaid skirt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`blouse and a short plaid skirt.`); + } + break; + case "a kimono": + r.push(`of the furisode`); + if (hasAnyLegs(slave)) { + r.push(`pattern, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`pattern.`); + } + break; + case "a dirndl": + case "a long qipao": + case "lederhosen": + case "a biyelgee costume": + case "a hanbok": + r.push(`of a traditional`); + if (hasAnyLegs(slave)) { + r.push(`pattern, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`pattern.`); + } + break; + case "a burkini": + r.push(`consisting of a polyester tunic and`); + if (hasAnyLegs(slave)) { + r.push(`pants, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`pants, which have been tailored for ${his} leglessness.`); + } + break; + case "a hijab and blouse": + r.push(`alongside a short-sleeved overshirt and a skirt that`); + if (hasAnyLegs(slave)) { + r.push(`body, down to ${his} ${feet}, which`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`dangles uselessly off ${his}`); + if (isAmputee(slave)) { + r.push(`limbless`); + } else { + r.push(`legless`); + } + r.push(`torso.`); + } + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`which modestly covers ${his} entire`); + if (hasAnyLegs(slave)) { + r.push(`body, down to ${his} ${feet}, which`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`body.`); + } + break; + case "a klan robe": + r.push(`which fully covers ${his} entire`); + if (hasAnyLegs(slave)) { + r.push(`body, down to ${his} ${feet}, which`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`body.`); + } + break; + case "a burqa": + r.push(`which restrictingly covers ${his} entire`); + if (hasAnyLegs(slave)) { + r.push(`body, down to ${his} ${feet}, which`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`body.`); + } + break; + case "a police uniform": + r.push(`of a traditional`); + if (hasAnyLegs(slave)) { + r.push(`styling, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`styling.`); + } + break; + case "a gothic lolita dress": + r.push(`of a Victorian`); + if (hasAnyLegs(slave)) { + r.push(`pattern, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`pattern.`); + } + break; + case "a one-piece swimsuit": + r.push(`which modestly covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`body, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`body.`); + } + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`which restrictingly covers ${his} entire`); + if (hasAnyLegs(slave)) { + r.push(`body, down to ${his} ${feet}, with`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`body.`); + } + break; + case "a button-up shirt and panties": + case "a button-up shirt": + case "a sweater": + case "a t-shirt": + case "a tank-top": + case "a tube top": + case "an oversized t-shirt": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`torso, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`torso.`); + } + break; + case "a bra": + case "a sports bra": + case "a striped bra": + case "pasties": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`breasts, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`breasts.`); + } + break; + case "a tube top and thong": + case "a sweater and panties": + case "a slutty klan robe": + case "a tank-top and panties": + case "a t-shirt and thong": + case "an oversized t-shirt and boyshorts": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "a t-shirt and panties": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`torso, crotch, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`torso and crotch.`); + } + break; + case "striped underwear": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`breasts, crotch, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`breasts and crotch.`); + } + break; + case "a thong": + case "a skimpy loincloth": + case "boyshorts": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`crotch, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`crotch.`); + } + break; + case "panties": + case "panties and pasties": + r.push(`which only cover ${his}`); + if (hasAnyLegs(slave)) { + r.push(`crotch, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`crotch.`); + } + break; + case "cutoffs": + case "sport shorts": + r.push(`which only cover ${his}`); + if (hasAnyLegs(slave)) { + r.push(`crotch, ass, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`crotch and ass.`); + } + break; + case "a sweater and cutoffs": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`torso, crotch, ass, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`torso, crotch, and ass.`); + } + break; + case "leather pants and a tube top": + case "a t-shirt and jeans": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`torso, ass, legs, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`torso and ass.`); + } + break; + case "leather pants and pasties": + case "leather pants": + case "jeans": + r.push(`which only covers ${his}`); + if (hasAnyLegs(slave)) { + r.push(`legs, ass, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`ass.`); + } + break; + case "a military uniform": + r.push(`consisting of a shirt and tie, military`); + if (hasAnyLegs(slave)) { + r.push(`tunic, matching skirt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`tunic, and matching skirt.`); + } + r.push(`${His} uniform is pinned with the`); + if (slave.ID === V.BodyguardID || slave.ID === V.HeadGirlID || slave.ID === V.RecruiterID || slave.ID === V.ConcubineID) { + r.push(`golden whip and manacles insignia of a senior slave officer,`); + } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + r.push(`golden manacles insignia of a junior slave officer,`); + } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { + r.push(`silver spear and manacles insignia of an augmented slave soldier,`); + } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { + r.push(`silver manacles insignia of a slave soldier,`); + } else { + r.push(`black iron manacles insignia of a slave,`); + } + r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); + break; + case "a schutzstaffel uniform": + r.push(`consisting of a shirt and tie, military`); + if (hasAnyLegs(slave)) { + r.push(`tunic, matching trousers, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`tunic, and matching trousers.`); + } + r.push(`${His} uniform is pinned with the`); + if (slave.ID === V.BodyguardID || slave.ID === V.HeadGirlID || slave.ID === V.RecruiterID || slave.ID === V.ConcubineID) { + r.push(`golden whip and manacles insignia of a senior slave officer,`); + } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + r.push(`golden manacles insignia of a junior slave officer,`); + } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { + r.push(`silver spear and manacles insignia of an augmented slave soldier,`); + } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { + r.push(`silver manacles insignia of a slave soldier,`); + } else { + r.push(`black iron manacles insignia of a slave,`); + } + r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); + break; + case "a slutty schutzstaffel uniform": + r.push(`consisting of a shirt and tie, military`); + if (hasAnyLegs(slave)) { + r.push(`tunic, matching miniskirt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`tunic, and matching miniskirt.`); + } + r.push(`${His} uniform is pinned with the`); + if ((slave.ID === V.BodyguardID) || (slave.ID === V.HeadGirlID) || (slave.ID === V.RecruiterID) || (slave.ID === V.ConcubineID)) { + r.push(`golden whip and manacles insignia of a senior slave officer,`); + } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + r.push(`golden manacles insignia of a junior slave officer,`); + } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { + r.push(`silver spear and manacles insignia of an augmented slave soldier,`); + } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { + r.push(`silver manacles insignia of a slave soldier,`); + } else { + r.push(`black iron manacles insignia of a slave,`); + } + r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); + break; + case "a red army uniform": + r.push(`consisting of a shirt and tie, military`); + if (hasAnyLegs(slave)) { + r.push(`tunic, matching skirt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`tunic, and matching skirt.`); + } + r.push(`${His} uniform is pinned with the`); + if ((slave.ID === V.BodyguardID) || (slave.ID === V.HeadGirlID) || (slave.ID === V.RecruiterID) || (slave.ID === V.ConcubineID)) { + r.push(`golden whip and manacles insignia of a senior slave officer,`); + } else if ((slave.ID === V.MadamID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.MatronID) || (slave.ID === V.djID) || (slave.ID === V.MilkmaidID) || (slave.ID === V.FarmerID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + r.push(`golden manacles insignia of a junior slave officer,`); + } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { + r.push(`silver spear and manacles insignia of an augmented slave soldier,`); + } else if ((slave.skill.combat > 0) && !isAmputee(slave)) { + r.push(`silver manacles insignia of a slave soldier,`); + } else { + r.push(`black iron manacles insignia of a slave,`); + } + r.push(`along with various ribbons denoting sexual aptitude and prized traits.`); + break; + case "battledress": + r.push(`including comfortable fatigue`); + if (hasAnyLegs(slave)) { + r.push(`pants, a sturdy tank top and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`pants (pinned over ${his} stumps) and a sturdy tank top.`); + } + break; + case "a mounty outfit": + r.push(`including comfortable`); + if (hasAnyLegs(slave)) { + r.push(`slacks, a sturdy tunic and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`slacks (pinned over ${his} stumps) and a sturdy tunic.`); + } + break; + case "harem gauze": + if (hasAnyLegs(slave)) { + r.push(`${He} is wearing`); + r.push(App.Desc.footwear(slave)); + } + r.push(`${He}'s covered and even veiled, but you can see everything straight through the filmy cloth.`); + break; + case "slutty jewelry": + r.push(`including a belt of thin chain with a lewd ornament (a little`); + if (slave.dick > 0 && slave.balls === 0) { + r.push(`curved golden cock without balls)`); + } else if (slave.dick > 0) { + r.push(`golden cock and balls)`); + } else if ((slave.fetish === "cumslut") && (slave.fetishStrength > 95)) { + r.push(`pair of golden lips)`); + } else if (slave.boobs > 1000) { + r.push(`pair of golden breasts)`); + } else if (slave.vagina === -1) { + r.push(`crinkled anus)`); + } else { + r.push(`golden pussy)`); + } + r.push(`over ${his} stomach.`); + if (hasAnyLegs(slave)) { + r.push(`${He} is wearing bangles which`); + r.push(App.Desc.footwear(slave)); + } + r.push(App.Desc.piercing(slave, "chastity")); + break; + case "a Santa dress": + r.push(`made of red felt with white fur`); + if (hasAnyLegs(slave)) { + r.push(`trim, a leather belt, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`trim and a leather belt.`); + } + break; + case "a bimbo outfit": + r.push(`consisting of a top and miniskirt that completely expose ${his} bra and`); + if (hasAnyLegs(slave)) { + r.push(`thong, and`); + r.push(App.Desc.footwear(slave)); + } else { + r.push(`thong.`); + } - break; - case "a courtesan dress": - r.push(`with exposed shoulders,`); - if (hasAnyArms(slave)) { - r.push(`flowing sleeves,`); - } - r.push(`built-in corset and an elegant, layered skirt that evokes the feeling of a flower ready to blossom.`); - if (hasAnyLegs(slave)) { - r.push(`${He} is wearing`); - r.push(App.Desc.footwear(slave)); - } - break; - default: - r.push(`so ${his} nude body is on display.`); - if (isAmputee(slave)) { - r.push(`In fact, ${he}'s devoid even of limbs.`); - } else if (hasAnyLegs(slave)) { - r.push(`${He} is wearing`); - r.push(App.Desc.footwear(slave)); - } + break; + case "a courtesan dress": + r.push(`with exposed shoulders,`); + if (hasAnyArms(slave)) { + r.push(`flowing sleeves,`); + } + r.push(`built-in corset and an elegant, layered skirt that evokes the feeling of a flower ready to blossom.`); + if (hasAnyLegs(slave)) { + r.push(`${He} is`); + r.push(App.Desc.footwear(slave)); + } + break; + default: + r.push(`so ${his} nude body is on display.`); + if (isAmputee(slave)) { + r.push(`In fact, ${he}'s devoid even of limbs.`); + } else if (hasAnyLegs(slave)) { + r.push(`${He} is wearing`); + r.push(App.Desc.footwear(slave)); + } + } } } return r.join(" "); diff --git a/src/npc/descriptions/style/clothingCorset.js b/src/npc/descriptions/style/clothingCorset.js index 8c7c9a38337fce6e50abfa8b3975c6d00fc8bd09..9d7d202c2a5f35683274d5fb05db81a067afb1a7 100644 --- a/src/npc/descriptions/style/clothingCorset.js +++ b/src/npc/descriptions/style/clothingCorset.js @@ -7,631 +7,626 @@ App.Desc.clothingCorset = function(slave) { const { his, He, His } = getPronouns(slave); - switch (slave.clothes) { - case "a Fuckdoll suit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is built into ${his} suit.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is built into ${his} suit.`); - } - break; - case "a hijab and blouse": - case "conservative clothing": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by ${his} blouse.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by ${his} blouse.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} blouse.`); - } - break; - case "spats and a tank top": - if (slave.boobs > 1200) { - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is open to view due to ${his} large chest hiking up ${his} top.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is open to view due to ${his} large chest hiking up ${his} top.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is open to view due to ${his} large chest hiking up ${his} top.`); - } - } else { - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by ${his} top.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by ${his} top.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} top.`); - } - } - break; - case "chains": - if (slave.bellyAccessory === "a corset") { - r.push(`Leather cased lengths of chain form a corset around ${his} waist.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${He}'s encased in a very tight corset made of leather cased iron straps, with eyelets to attach to the chains.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is buried under ${his} chains.`); - } - break; - case "Western clothing": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by ${his} flannel.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by ${his} flannel.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} flannel.`); - } - break; - case "body oil": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is ${his} only real item of clothing.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is ${his} only real item of clothing.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is ${his} only real item of clothing.`); - } - break; - case "a toga": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by the toga.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by the toga.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by the toga.`); - } - break; - case "a huipil": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is visible through the sides.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is visible through the sides.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is is visible through the sides.`); - } - break; - case "a slutty qipao": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by the silk.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by the silk.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by the silk.`); - } - break; - case "uncomfortable straps": - if (slave.bellyAccessory === "a corset") { - r.push(`${He}'s wearing a leather corset, hooked into the straps.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${He}'s wearing an extreme leather corset, hooked into the straps.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is buried under ${his} straps.`); - } - break; - case "shibari ropes": - if (slave.bellyAccessory === "a corset") { - r.push(`A dense web of thick ropes around ${his} waist form an effective corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} ropes bind into an extreme corset woven from hemp.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is buried under ${his} ropes.`); - } - break; - case "restrictive latex": - if (slave.bellyAccessory === "a corset") { - r.push(`The latex features an integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The latex features a punishingly extreme integral corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by the latex.`); - } - break; - case "a latex catsuit": - if (slave.bellyAccessory === "a corset") { - r.push(`An underbust corset cinches ${his} waist and ensures proper posture.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`An underbust corset in punishing tightlace cinches ${his} waist and ensures proper posture.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by the latex.`); - } - break; - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - case "kitty lingerie": - if (slave.bellyAccessory === "a corset") { - r.push(`${He}'s wearing a pretty lace corset to match.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${He}'s wearing a strict whalebone corset to match.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is in plain sight.`); - } - break; - case "a succubus outfit": - case "a courtesan dress": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset includes steel stays to give it real effect.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} corset includes punishingly tight steel stays to give it real effect.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is layered under ${his} corset.`); - } - break; - case "a fallen nuns habit": - if (slave.bellyAccessory === "a corset") { - r.push(`The latex features an integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The latex features a punishingly extreme integral corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is layered under ${his} corset.`); - } - break; - case "a chattel habit": - if (slave.bellyAccessory === "a corset") { - r.push(`The habit includes a prominent white corset with gold stays.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The habit includes an extremely tight white corset with gold stays.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is visible through ${his} habit.`); - } - break; - case "a penitent nuns habit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is hidden, but very uncomfortable.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} corset is hidden, but crushingly uncomfortable.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} habit.`); - } - break; - case "a string bikini": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is a fun color, but still clashes with ${his} bikini pretty badly.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset is a fun color, but still clashes with ${his} bikini pretty badly.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is a fun color, but still clashes with ${his} bikini pretty badly.`); - } - break; - case "a scalemail bikini": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is a dull color, and clashes with ${his} bikini pretty badly.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset is a dull color, and clashes with ${his} bikini pretty badly.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band clashes with ${his} bikini pretty badly.`); - } - break; - case "striped panties": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is a fun color and compliments ${his} cute panties.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset is a fun color and compliments ${his} cute panties.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is a fun color and compliments ${his} cute panties.`); - } - break; - case "a cheerleader outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} top incorporates a subtle corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} top incorporates severe corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} top does little to conceal ${his} support band.`); - } - break; - case "clubslut netting": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is a fun color, but still clashes with ${his} netting pretty badly.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset is a fun color, but still clashes with ${his} netting pretty badly.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is a fun color, but still clashes with ${his} netting pretty badly.`); - } - break; - case "cutoffs and a t-shirt": - if (slave.bellyAccessory === "a corset") { - r.push(`The t-shirt conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The t-shirt conceals ${his} severe corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} t-shirt.`); - } - break; - case "a slave gown": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} gown has an elegant integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} gown has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is concealed by ${his} gown.`); - } - break; - case "slutty business attire": - case "nice business attire": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} jacket totally conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} jacket totally conceals ${his} absurd corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} jacket.`); - } - break; - case "a ball gown": - if (slave.bellyAccessory === "a corset") { - r.push(`The dress has an elegant integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The dress has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} gown.`); - } - break; - case "a halter top dress": - if (slave.bellyAccessory === "a corset") { - r.push(`The dress has an elegant integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The dress has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} dress.`); - } - break; - case "a mini dress": - if (slave.bellyAccessory === "a corset") { - r.push(`The dress also cleverly doubles as an overbust corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The dress also cleverly doubles as an extreme overbust corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} dress.`); - } - break; - case "a comfortable bodysuit": - if (slave.bellyAccessory === "a corset") { - r.push(`Its middle is reinforced to act as a corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`Its middle is strongly reinforced to act as a merciless corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} bodysuit.`); - } - break; - case "a leotard": - if (slave.bellyAccessory === "a corset") { - r.push(`The leotard's middle is reinforced to act as a corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The leotard's middle is strongly reinforced to act as a merciless corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} leotard.`); - } - break; - case "a burkini": - case "a one-piece swimsuit": - if (slave.bellyAccessory === "a corset") { - r.push(`The swimsuit's middle is reinforced to act as a corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The swimsuit's middle is strongly reinforced to act as a merciless corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden under ${his} swimsuit.`); - } - break; - case "a monokini": - if (slave.bellyAccessory === "a corset") { - r.push(`A corset peeks out from the top of the swimsuit.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`An extreme corset peeks out from the top of the swimsuit.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band peeks out from the top of the swimsuit.`); - } - break; - case "overalls": - if (slave.bellyAccessory === "a corset") { - r.push(`A corset peeks out from the top of the overalls.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`An extreme corset peeks out from the top of the overalls.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band peeks out from the top of the overalls.`); - } - break; - case "an apron": - if (slave.bellyAccessory === "a corset") { - r.push(`The apron hides the front of ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The apron hides the front of ${his} extreme corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`The apron hides the front of ${his} support band.`); - } - break; - case "a cybersuit": - if (slave.bellyAccessory === "a corset") { - r.push(`A corset wraps the bodysuit snugly.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`An extreme corset wraps the bodysuit tightly.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden under ${his} bodysuit.`); - } - break; - case "a tight Imperial bodysuit": - if (slave.bellyAccessory === "a corset") { - r.push(`A corset wraps the bodysuit snugly.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`An extreme corset wraps the bodysuit tightly.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden under ${his} bodysuit.`); - } - break; - case "a bunny outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} bunny outfit has an integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} bunny outfit has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} teddy.`); - } - break; - case "a slutty maid outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} maid uniform has an integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} maid uniform has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} maid uniform.`); - } - break; - case "a nice maid outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} maid uniform has an integral corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} uniform has extreme corsetage built into it.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} maid uniform.`); - } - break; - case "a slutty nurse outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} jacket totally conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} jacket totally conceals ${his} absurd corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} jacket.`); - } - break; - case "a nice nurse outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} scrubs totally conceal ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} scrubs totally conceal ${his} absurd corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} scrubs.`); - } - break; - case "a schoolgirl outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`The outline of ${his} corset can be seen through ${his} blouse.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The outline of ${his} absurd corsetage can be seen through ${his} blouse.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band can be seen under ${his} blouse.`); - } - break; - case "a hanbok": - case "a kimono": - if (slave.bellyAccessory === "a corset") { - r.push(`The handsome silk completely conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The handsome silk completely conceals ${his} absurd corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`The handsome silk completely conceals ${his} support band.`); - } - break; - case "a klan robe": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is hidden by ${his} long robes.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corsetage is hidden by ${his} long robes.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} long robes.`); - } - break; - case "a burqa": - case "a hijab and abaya": - case "a niqab and abaya": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is properly hidden along with everything else.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corsetage is properly hidden along with everything else.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is properly hidden along with everything else.`); - } - break; - case "a gothic lolita dress": - case "a Santa dress": - if (slave.bellyAccessory === "a corset") { - r.push(`The thick fabric of ${his} dress conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`The thick fabric of ${his} dress conceals ${his} extreme corset.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`The thick fabric of ${his} dress conceals ${his} support band.`); - } - break; - case "a military uniform": - case "a mounty outfit": - case "a red army uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a police uniform": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} tunic conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} tunic conceals ${his} extreme corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} tunic.`); - } - break; - case "a biyelgee costume": - case "a dirndl": - case "a long qipao": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} dress conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} dress conceals ${his} extreme corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} dress.`); - } - break; - case "battlearmor": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} armor conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} armor conceals ${his} extreme corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden under ${his} armor.`); - } - break; - case "Imperial Plate": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} armor conceals ${his} corset.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} armor conceals ${his} extreme corsetage.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden under ${his} armor.`); - } - break; - case "lederhosen": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is built into the suspenders of ${his} outfit.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is built into the suspenders of ${his} outfit.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} outfit.`); - } - break; - case "battledress": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is strapped on top of ${his} shirt.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} ridiculous corset is strapped on top of ${his} shirt.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} shirt.`); - } - break; - case "harem gauze": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset, though functional, is covered with little bells and charms that glint through the gauze.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset, though cruelly functional, is covered with little bells and charms that glint through the gauze.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is covered with little bells and charms that glint through the gauze.`); - } - break; - case "slutty jewelry": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is ${his} only real piece of clothing.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corset is ${his} only real piece of clothing.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is ${his} only real piece of clothing.`); - } - break; - case "a maternity dress": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by ${his} blouse.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by ${his} blouse.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} blouse.`); - } - break; - case "stretch pants and a crop-top": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is completely exposed between ${his} top and bottom.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is completely exposed between ${his} top and bottom.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is left completely exposed between ${his} top and bottom.`); - } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset compliments ${his} outfit nicely.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage compliments ${his} outfit nicely.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden within ${his} outfit.`); - } - break; - case "a tube top and thong": - case "striped underwear": - case "leather pants and tube top": - case "sport shorts and a sports bra": - case "a slutty klan robe": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is completely exposed between ${his} top and bottom.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is completely exposed between ${his} top and bottom.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is completely exposed between ${his} top and bottom.`); - } - break; - case "a bra": - case "a striped bra": - case "a sports bra": - case "a thong": - case "panties": - case "a tube top": - case "a skimpy loincloth": - case "boyshorts": - case "cutoffs": - case "jeans": - case "sport shorts": - case "leather pants": - case "leather pants and a tube top": - case "leather pants and pasties": - case "panties and pasties": - case "pasties": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is completely exposed.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is completely exposed.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is completely exposed.`); - } - break; - case "a button-up shirt and panties": - case "a button-up shirt": - case "a sweater": - case "a tank-top": - case "a sweater and panties": - case "a t-shirt": - case "a tank-top and panties": - case "a t-shirt and thong": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "sport shorts and a t-shirt": - case "a t-shirt and panties": - case "a sweater and cutoffs": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} sturdy corset is hidden by ${his} clothing.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corsetage is hidden by ${his} clothing.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is hidden by ${his} clothing.`); - } - break; - case "a bimbo outfit": - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is a fun color and compliments ${his} slutty appearance.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} absurd corset is a fun color and compliments ${his} slutty appearance.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is a fun color and compliments ${his} slutty appearance.`); - } - break; - default: - if (slave.bellyAccessory === "a corset") { - r.push(`${His} corset is ${his} only real piece of clothing.`); - } else if (slave.bellyAccessory === "an extreme corset") { - r.push(`${His} extreme corset is ${his} only real piece of clothing.`); - } else if (slave.bellyAccessory === "a support band") { - r.push(`${His} support band is ${his} only real piece of clothing.`); - } + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "clothingCorset" in clothing.desc) { + r.push(clothing.desc.clothingCorset(slave)); + } else { + switch (slave.clothes) { + case "a Fuckdoll suit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is built into ${his} suit.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is built into ${his} suit.`); + } + break; + case "a hijab and blouse": + case "conservative clothing": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by ${his} blouse.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by ${his} blouse.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} blouse.`); + } + break; + case "spats and a tank top": + if (slave.boobs > 1200) { + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is open to view due to ${his} large chest hiking up ${his} top.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is open to view due to ${his} large chest hiking up ${his} top.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is open to view due to ${his} large chest hiking up ${his} top.`); + } + } else { + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by ${his} top.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by ${his} top.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} top.`); + } + } + break; + case "chains": + if (slave.bellyAccessory === "a corset") { + r.push(`Leather cased lengths of chain form a corset around ${his} waist.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${He}'s encased in a very tight corset made of leather cased iron straps, with eyelets to attach to the chains.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is buried under ${his} chains.`); + } + break; + case "Western clothing": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by ${his} flannel.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by ${his} flannel.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} flannel.`); + } + break; + case "body oil": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is ${his} only real item of clothing.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is ${his} only real item of clothing.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is ${his} only real item of clothing.`); + } + break; + case "a toga": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by the toga.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by the toga.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by the toga.`); + } + break; + case "a huipil": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is visible through the sides.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is visible through the sides.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is is visible through the sides.`); + } + break; + case "a slutty qipao": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by the silk.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by the silk.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by the silk.`); + } + break; + case "uncomfortable straps": + if (slave.bellyAccessory === "a corset") { + r.push(`${He}'s wearing a leather corset, hooked into the straps.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${He}'s wearing an extreme leather corset, hooked into the straps.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is buried under ${his} straps.`); + } + break; + case "shibari ropes": + if (slave.bellyAccessory === "a corset") { + r.push(`A dense web of thick ropes around ${his} waist form an effective corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} ropes bind into an extreme corset woven from hemp.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is buried under ${his} ropes.`); + } + break; + case "restrictive latex": + if (slave.bellyAccessory === "a corset") { + r.push(`The latex features an integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The latex features a punishingly extreme integral corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by the latex.`); + } + break; + case "a latex catsuit": + if (slave.bellyAccessory === "a corset") { + r.push(`An underbust corset cinches ${his} waist and ensures proper posture.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`An underbust corset in punishing tightlace cinches ${his} waist and ensures proper posture.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by the latex.`); + } + break; + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + case "kitty lingerie": + if (slave.bellyAccessory === "a corset") { + r.push(`${He}'s wearing a pretty lace corset to match.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${He}'s wearing a strict whalebone corset to match.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is in plain sight.`); + } + break; + case "a succubus outfit": + case "a courtesan dress": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset includes steel stays to give it real effect.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} corset includes punishingly tight steel stays to give it real effect.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is layered under ${his} corset.`); + } + break; + case "a fallen nuns habit": + if (slave.bellyAccessory === "a corset") { + r.push(`The latex features an integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The latex features a punishingly extreme integral corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is layered under ${his} corset.`); + } + break; + case "a chattel habit": + if (slave.bellyAccessory === "a corset") { + r.push(`The habit includes a prominent white corset with gold stays.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The habit includes an extremely tight white corset with gold stays.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is visible through ${his} habit.`); + } + break; + case "a penitent nuns habit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is hidden, but very uncomfortable.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} corset is hidden, but crushingly uncomfortable.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} habit.`); + } + break; + case "a string bikini": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is a fun color, but still clashes with ${his} bikini pretty badly.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset is a fun color, but still clashes with ${his} bikini pretty badly.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is a fun color, but still clashes with ${his} bikini pretty badly.`); + } + break; + case "a scalemail bikini": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is a dull color, and clashes with ${his} bikini pretty badly.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset is a dull color, and clashes with ${his} bikini pretty badly.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band clashes with ${his} bikini pretty badly.`); + } + break; + case "striped panties": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is a fun color and compliments ${his} cute panties.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset is a fun color and compliments ${his} cute panties.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is a fun color and compliments ${his} cute panties.`); + } + break; + case "a cheerleader outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} top incorporates a subtle corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} top incorporates severe corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} top does little to conceal ${his} support band.`); + } + break; + case "clubslut netting": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is a fun color, but still clashes with ${his} netting pretty badly.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset is a fun color, but still clashes with ${his} netting pretty badly.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is a fun color, but still clashes with ${his} netting pretty badly.`); + } + break; + case "cutoffs and a t-shirt": + if (slave.bellyAccessory === "a corset") { + r.push(`The t-shirt conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The t-shirt conceals ${his} severe corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} t-shirt.`); + } + break; + case "slutty business attire": + case "nice business attire": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} jacket totally conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} jacket totally conceals ${his} absurd corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} jacket.`); + } + break; + case "a ball gown": + if (slave.bellyAccessory === "a corset") { + r.push(`The dress has an elegant integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The dress has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} gown.`); + } + break; + case "a halter top dress": + if (slave.bellyAccessory === "a corset") { + r.push(`The dress has an elegant integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The dress has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} dress.`); + } + break; + case "a mini dress": + if (slave.bellyAccessory === "a corset") { + r.push(`The dress also cleverly doubles as an overbust corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The dress also cleverly doubles as an extreme overbust corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} dress.`); + } + break; + case "a comfortable bodysuit": + if (slave.bellyAccessory === "a corset") { + r.push(`Its middle is reinforced to act as a corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`Its middle is strongly reinforced to act as a merciless corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} bodysuit.`); + } + break; + case "a leotard": + if (slave.bellyAccessory === "a corset") { + r.push(`The leotard's middle is reinforced to act as a corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The leotard's middle is strongly reinforced to act as a merciless corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} leotard.`); + } + break; + case "a burkini": + case "a one-piece swimsuit": + if (slave.bellyAccessory === "a corset") { + r.push(`The swimsuit's middle is reinforced to act as a corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The swimsuit's middle is strongly reinforced to act as a merciless corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden under ${his} swimsuit.`); + } + break; + case "a monokini": + if (slave.bellyAccessory === "a corset") { + r.push(`A corset peeks out from the top of the swimsuit.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`An extreme corset peeks out from the top of the swimsuit.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band peeks out from the top of the swimsuit.`); + } + break; + case "overalls": + if (slave.bellyAccessory === "a corset") { + r.push(`A corset peeks out from the top of the overalls.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`An extreme corset peeks out from the top of the overalls.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band peeks out from the top of the overalls.`); + } + break; + case "an apron": + if (slave.bellyAccessory === "a corset") { + r.push(`The apron hides the front of ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The apron hides the front of ${his} extreme corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`The apron hides the front of ${his} support band.`); + } + break; + case "a cybersuit": + if (slave.bellyAccessory === "a corset") { + r.push(`A corset wraps the bodysuit snugly.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`An extreme corset wraps the bodysuit tightly.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden under ${his} bodysuit.`); + } + break; + case "a tight Imperial bodysuit": + if (slave.bellyAccessory === "a corset") { + r.push(`A corset wraps the bodysuit snugly.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`An extreme corset wraps the bodysuit tightly.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden under ${his} bodysuit.`); + } + break; + case "a bunny outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} bunny outfit has an integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} bunny outfit has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} teddy.`); + } + break; + case "a slutty maid outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} maid uniform has an integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} maid uniform has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} maid uniform.`); + } + break; + case "a nice maid outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} maid uniform has an integral corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} uniform has extreme corsetage built into it.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} maid uniform.`); + } + break; + case "a slutty nurse outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} jacket totally conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} jacket totally conceals ${his} absurd corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} jacket.`); + } + break; + case "a nice nurse outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} scrubs totally conceal ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} scrubs totally conceal ${his} absurd corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} scrubs.`); + } + break; + case "a schoolgirl outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`The outline of ${his} corset can be seen through ${his} blouse.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The outline of ${his} absurd corsetage can be seen through ${his} blouse.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band can be seen under ${his} blouse.`); + } + break; + case "a hanbok": + case "a kimono": + if (slave.bellyAccessory === "a corset") { + r.push(`The handsome silk completely conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The handsome silk completely conceals ${his} absurd corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`The handsome silk completely conceals ${his} support band.`); + } + break; + case "a klan robe": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is hidden by ${his} long robes.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corsetage is hidden by ${his} long robes.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} long robes.`); + } + break; + case "a burqa": + case "a hijab and abaya": + case "a niqab and abaya": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is properly hidden along with everything else.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corsetage is properly hidden along with everything else.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is properly hidden along with everything else.`); + } + break; + case "a gothic lolita dress": + case "a Santa dress": + if (slave.bellyAccessory === "a corset") { + r.push(`The thick fabric of ${his} dress conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`The thick fabric of ${his} dress conceals ${his} extreme corset.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`The thick fabric of ${his} dress conceals ${his} support band.`); + } + break; + case "a military uniform": + case "a mounty outfit": + case "a red army uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a police uniform": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} tunic conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} tunic conceals ${his} extreme corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} tunic.`); + } + break; + case "a biyelgee costume": + case "a dirndl": + case "a long qipao": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} dress conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} dress conceals ${his} extreme corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} dress.`); + } + break; + case "battlearmor": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} armor conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} armor conceals ${his} extreme corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden under ${his} armor.`); + } + break; + case "Imperial Plate": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} armor conceals ${his} corset.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} armor conceals ${his} extreme corsetage.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden under ${his} armor.`); + } + break; + case "lederhosen": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is built into the suspenders of ${his} outfit.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is built into the suspenders of ${his} outfit.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} outfit.`); + } + break; + case "battledress": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is strapped on top of ${his} shirt.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} ridiculous corset is strapped on top of ${his} shirt.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} shirt.`); + } + break; + case "harem gauze": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset, though functional, is covered with little bells and charms that glint through the gauze.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset, though cruelly functional, is covered with little bells and charms that glint through the gauze.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is covered with little bells and charms that glint through the gauze.`); + } + break; + case "slutty jewelry": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is ${his} only real piece of clothing.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corset is ${his} only real piece of clothing.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is ${his} only real piece of clothing.`); + } + break; + case "a maternity dress": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by ${his} blouse.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by ${his} blouse.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} blouse.`); + } + break; + case "stretch pants and a crop-top": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is completely exposed between ${his} top and bottom.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is completely exposed between ${his} top and bottom.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is left completely exposed between ${his} top and bottom.`); + } + break; + case "a nice pony outfit": + case "a slutty pony outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset compliments ${his} outfit nicely.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage compliments ${his} outfit nicely.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden within ${his} outfit.`); + } + break; + case "a tube top and thong": + case "striped underwear": + case "leather pants and a tube top": + case "sport shorts and a sports bra": + case "a slutty klan robe": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is completely exposed between ${his} top and bottom.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is completely exposed between ${his} top and bottom.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is completely exposed between ${his} top and bottom.`); + } + break; + case "a bra": + case "a striped bra": + case "a sports bra": + case "a thong": + case "panties": + case "a tube top": + case "a skimpy loincloth": + case "boyshorts": + case "cutoffs": + case "jeans": + case "sport shorts": + case "leather pants": + case "leather pants and pasties": + case "panties and pasties": + case "pasties": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is completely exposed.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is completely exposed.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is completely exposed.`); + } + break; + case "a button-up shirt and panties": + case "a button-up shirt": + case "a sweater": + case "a tank-top": + case "a sweater and panties": + case "a t-shirt": + case "a tank-top and panties": + case "a t-shirt and thong": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "sport shorts and a t-shirt": + case "a t-shirt and panties": + case "a sweater and cutoffs": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} sturdy corset is hidden by ${his} clothing.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corsetage is hidden by ${his} clothing.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is hidden by ${his} clothing.`); + } + break; + case "a bimbo outfit": + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is a fun color and compliments ${his} slutty appearance.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} absurd corset is a fun color and compliments ${his} slutty appearance.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is a fun color and compliments ${his} slutty appearance.`); + } + break; + default: + if (slave.bellyAccessory === "a corset") { + r.push(`${His} corset is ${his} only real piece of clothing.`); + } else if (slave.bellyAccessory === "an extreme corset") { + r.push(`${His} extreme corset is ${his} only real piece of clothing.`); + } else if (slave.bellyAccessory === "a support band") { + r.push(`${His} support band is ${his} only real piece of clothing.`); + } + } } return r.join(" "); diff --git a/src/npc/descriptions/style/footwear.js b/src/npc/descriptions/style/footwear.js index 619b1405f2b7ded7e529669b47e545eab5158a74..acd8801803f85ce6f4a0ce35a3390af9d1129586 100644 --- a/src/npc/descriptions/style/footwear.js +++ b/src/npc/descriptions/style/footwear.js @@ -1928,68 +1928,6 @@ App.Desc.footwear = function(slave) { r.push(`nothing on ${his} bare ${feet}.`); } break; - case "a slave gown": - switch (slave.shoes) { - case "flats": - if (bothFeet) { - r.push(`a pair of fashionable slingback sandals.`); - } else { - r.push(`a fashionable slingback sandal.`); - } - break; - case "boots": - if (bothFeet) { - r.push(`elegant worked leather boots.`); - } else { - r.push(`an elegant worked leather boot.`); - } - break; - case "heels": - if (bothFeet) { - r.push(`kitten heels.`); - } else { - r.push(`a kitten heel.`); - } - break; - case "pumps": - if (bothFeet) { - r.push(`sleek pumps.`); - } else { - r.push(`a sleek heel.`); - } - break; - case "extreme heels": - if (bothFeet) { - r.push(`daring spike heels so high ${his} butt is at dick height.`); - } else { - r.push(`a daring spike heel so high ${he} can't even stand.`); - } - break; - case "platform shoes": - if (bothFeet) { - r.push(`stylish platform shoes.`); - } else { - r.push(`a stylish platform shoe.`); - } - break; - case "platform hees": - if (bothFeet) { - r.push(`elegant platform heels.`); - } else { - r.push(`an elegant platform heel.`); - } - break; - case "extreme platform heels": - if (bothFeet) { - r.push(`elegant platform heels so high ${his} butt is at dick height.`); - } else { - r.push(`an elegant platform heel so high ${he} can't stand even with assistance.`); - } - break; - default: - r.push(`nothing on ${his} bare ${feet}.`); - } - break; case "slutty business attire": switch (slave.shoes) { case "flats": @@ -4371,66 +4309,62 @@ App.Desc.footwear = function(slave) { switch (slave.shoes) { case "flats": if (bothFeet) { - r.push(`an elegant pair of dancing slippers.`); + r.push(`wearing an elegant pair of dancing slippers.`); } else { - r.push(`an elegant dancing slipper.`); + r.push(`wearing an elegant dancing slipper.`); } break; case "boots": if (bothFeet) { - r.push(`an elegant pair of heeled booties.`); + r.push(`wearing an elegant pair of heeled booties.`); } else { - r.push(`an elegant heeled boot.`); + r.push(`wearing an elegant heeled boot.`); } break; case "heels": if (bothFeet) { - r.push(`an elegant pair of heels.`); + r.push(`wearing an elegant pair of heels.`); } else { - r.push(`an elegant heel.`); + r.push(`wearing an elegant heel.`); } break; case "pumps": if (bothFeet) { - r.push(`an elegant pair of pumps.`); + r.push(`wearing an elegant pair of pumps.`); } else { - r.push(`an elegant heel.`); + r.push(`wearing an elegant heel.`); } break; case "extreme heels": if (bothFeet) { - r.push(`an elegant pair of excruciatingly high heels that test ${his} grace.`); + r.push(`wearing an elegant pair of excruciatingly high heels that test ${his} grace.`); } else { - r.push(`an elegant, excruciatingly high heel that makes it impossible for ${him} to stand.`); + r.push(`wearing an elegant, excruciatingly high heel that makes it impossible for ${him} to stand.`); } break; case "platform shoes": if (bothFeet) { - r.push(`a fragile pair of platform shoes.`); + r.push(`wearing a fragile pair of platform shoes.`); } else { - r.push(`a fragile platform shoe.`); + r.push(`wearing a fragile platform shoe.`); } break; case "platform heels": if (bothFeet) { - r.push(`a fragile pair of platform heels.`); + r.push(`wearing a fragile pair of platform heels.`); } else { - r.push(`a fragile platform heel.`); + r.push(`wearing a fragile platform heel.`); } break; case "extreme platform heels": if (bothFeet) { - r.push(`a fragile pair of excruciatingly high platform heels that test ${his} focus with each step.`); + r.push(`wearing a fragile pair of excruciatingly high platform heels that test ${his} focus with each step.`); } else { - r.push(`a fragile, excruciatingly high platform heel that makes it impossible for ${him} to stand.`); + r.push(`wearing a fragile, excruciatingly high platform heel that makes it impossible for ${him} to stand.`); } break; default: - if (bothFeet) { - r.push(`elegantly bare feet.`); - } else { - r.push(`an elegant bare feet.`); - } + r.push(`elegantly bare footed.`); } break; case "a bimbo outfit": diff --git a/src/npc/descriptions/style/hairClothing.js b/src/npc/descriptions/style/hairClothing.js index abb2b573157580e82502466a04ad98bd63873ded..bfa07f1a2fcab85bf6cfb29e4ee57aa1d77061cd 100644 --- a/src/npc/descriptions/style/hairClothing.js +++ b/src/npc/descriptions/style/hairClothing.js @@ -9,6889 +9,6857 @@ App.Desc.hairClothing = function(slave) { } = getPronouns(slave); if (slave.fuckdoll === 0) { - switch (slave.hStyle) { - case "neat": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "chains": - r.push(`is caught painfully in ${his} chains here and there.`); - break; - case "body oil": - r.push(`rampages down ${his} back in the glorious feathering of an 80's perm.`); - break; - case "a slutty qipao": - r.push(`cascades down ${his} back, ornamented with little silver talismans here and there.`); - break; - case "a huipil": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "restrictive latex": - r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); - break; - case "harem gauze": - r.push(`cascades down ${his} back, covered by a flimsy hairnet.`); - break; - case "a halter top dress": - case "a ball gown": - case "a slave gown": - r.push(`cascades gorgeously down ${his} bare back.`); - break; - case "a courtesan dress": - r.push(`cascades elegantly down ${his} back.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a kimono": - case "a long qipao": - r.push(`cascades elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - case "pasties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is long and loose, but is decorated with little black bows here and there.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`is kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`cascades out from under a cowboy hat.`); - break; - case "a Santa dress": - r.push(`cascades out from under a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`flows back in a mane, with a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is topped by a gold headband, and flows back in a mane.`); - break; - case "kitty lingerie": - r.push(`is topped by a cat ear headband, and cascades almost to the ground.`); - break; - default: - r.push(`cascades almost to the ground.`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "hStyle" in clothing.desc) { + r.push(clothing.desc.hStyle(slave)); + } else { + switch (slave.hStyle) { + case "neat": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "chains": + r.push(`is caught painfully in ${his} chains here and there.`); + break; + case "body oil": + r.push(`rampages down ${his} back in the glorious feathering of an 80's perm.`); + break; + case "a slutty qipao": + r.push(`cascades down ${his} back, ornamented with little silver talismans here and there.`); + break; + case "a huipil": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "restrictive latex": + r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); + break; + case "harem gauze": + r.push(`cascades down ${his} back, covered by a flimsy hairnet.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`cascades gorgeously down ${his} bare back.`); + break; + case "a courtesan dress": + r.push(`cascades elegantly down ${his} back.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a kimono": + case "a long qipao": + r.push(`cascades elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + case "pasties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is long and loose, but is decorated with little black bows here and there.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`is kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`cascades out from under a cowboy hat.`); + break; + case "a Santa dress": + r.push(`cascades out from under a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`flows back in a mane, with a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is topped by a gold headband, and flows back in a mane.`); + break; + case "kitty lingerie": + r.push(`is topped by a cat ear headband, and cascades almost to the ground.`); + break; + default: + r.push(`cascades almost to the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "body oil": + r.push(`is in a big, classic 80's perm.`); + break; + case "a slutty qipao": + r.push(`is brushed back over ${his} shoulders, ornamented with little silver talismans here and there.`); + break; + case "a huipil": + r.push(`flows down ${his} shoulders, giving ${him} a very innocent look.`); + break; + case "restrictive latex": + r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); + break; + case "harem gauze": + r.push(`flows down ${his} back, covered by a flimsy hairnet.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`flows fashionably down ${his} bare back.`); + break; + case "a courtesan dress": + r.push(`flows elegantly down ${his} back.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a kimono": + case "a long qipao": + r.push(`flows elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is decorated with a little black bow in back.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`is kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`flows out from under a cowboy hat.`); + break; + case "a Santa dress": + r.push(`flows out from under a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is tucked back by a flower, tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is brushed back over ${his} shoulders, and topped by a cat ear headband.`); + break; + default: + r.push(`is brushed back over ${his} shoulders.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "body oil": + r.push(`is in a classic 80's perm.`); + break; + case "a slutty qipao": + r.push(`is brushed back and ornamented with a little jade talisman.`); + break; + case "a huipil": + r.push(`is short and neat, giving ${him} an innocent look.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`is crammed under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is covered by a flimsy hairnet.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`follows the latest fashion.`); + break; + case "a courtesan dress": + r.push(`is meticulously brushed.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is kept sensibly in place by a set of ivory hairpins.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is decorated with a little black bow in back.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is kept out of ${his} face by simple barrette.`); + break; + case "slutty business attire": + r.push(`is kept out of ${his} face by a gaudy golden barrette.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is kept out of ${his} face by a sturdy hairpin.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is topped by a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`bears a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is brushed back and topped by a cat ear headband.`); + break; + default: + r.push(`is brushed back.`); + } + } else { + switch (slave.clothes) { + case "body oil": + r.push(`is in a classic 80's perm.`); + break; + case "restrictive latex": + r.push(`fits under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is covered by a flimsy hairnet.`); + break; + case "a halter top dress": + r.push(`is gelled into a fashionable wave.`); + break; + case "a ball gown": + r.push(`is gelled into a fashionable wave.`); + break; + case "a courtesan dress": + r.push(`is meticulously brushed.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`rustles freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is parted on the side.`); + break; + case "slutty business attire": + r.push(`is parted in the middle.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is in a utilitarian cut.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is hidden by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is hidden by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is hidden by a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + case "a long qipao": + case "a dirndl": + case "lederhosen": + case "a biyelgee costume": + case "striped panties": + r.push(`is short, and ${he} has a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is short, and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is neatly brushed and topped by a cat ear headband.`); + break; + default: + r.push(`is neatly brushed.`); + } } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "body oil": - r.push(`is in a big, classic 80's perm.`); - break; - case "a slutty qipao": - r.push(`is brushed back over ${his} shoulders, ornamented with little silver talismans here and there.`); - break; - case "a huipil": - r.push(`flows down ${his} shoulders, giving ${him} a very innocent look.`); - break; - case "restrictive latex": - r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); - break; - case "harem gauze": - r.push(`flows down ${his} back, covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`flows fashionably down ${his} bare back.`); - break; - case "a courtesan dress": - r.push(`flows elegantly down ${his} back.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a kimono": - case "a long qipao": - r.push(`flows elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is decorated with a little black bow in back.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`is kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`flows out from under a cowboy hat.`); - break; - case "a Santa dress": - r.push(`flows out from under a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is tucked back by a flower, tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is brushed back over ${his} shoulders, and topped by a cat ear headband.`); - break; - default: - r.push(`is brushed back over ${his} shoulders.`); + break; + case "up": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "chains": + r.push(`is pulled painfully back into a long tail, which is secured to ${his} chains at ${his} torso and ${his} ass.`); + break; + case "body oil": + r.push(`is in an 80's perm and back in a scrunchy, from which it explodes backwards with 80's violence.`); + break; + case "a slutty qipao": + r.push(`is in a perfect bun, secured with a jade comb; ${his} bun is so large it forms an artful arrangement down to the nape of ${his} neck.`); + break; + case "a huipil": + r.push(`is twisted into two horns that rest on top of ${his} head, the rest is bulked on the back of ${his} neck.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in a perfect bun, secured with an ivory comb; ${his} bun is so large it forms an artful arrangement down to the nape of ${his} neck.`); + break; + case "a courtesan dress": + r.push(`is in a perfect bun.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "restrictive latex": + r.push(`sticks out of the latex hood in a huge bun.`); + break; + case "harem gauze": + r.push(`is piled up on ${his} head in a huge beehive, itself veiled.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`is piled up on ${his} head in a perfect 60's beehive.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering, though it's obvious ${he} has a huge mass of hair restrained under there.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood, though it's evident ${he} has a huge mass of hair restrained under there.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is back in a huge bun, and topped with a little maid's cap.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is back in a huge bun, so severe it pulls at ${his} temples a little.`); + break; + case "slutty business attire": + r.push(`is pinned back in a hasty bun.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is pulled hard back into a big bun held in place with paracord.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + r.push(`is in a huge bun secured by a pastel scrunchy.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is back in a huge bun and topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is back in a bun so huge it pushes ${his} cowboy hat forward at a rakish angle.`); + break; + case "a Santa dress": + r.push(`is back in a bun so huge it pushes ${his} festive hat forward at a rakish angle.`); + break; + case "kitty lingerie": + r.push(`is back in an enormous bun, and topped by a cat ear headband.`); + break; + default: + r.push(`is back in an enormous bun.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "chains": + r.push(`is pulled painfully back into a long tail, which is secured to ${his} chains at ${his} torso.`); + break; + case "body oil": + r.push(`is in an 80's perm and back in a scrunchy, from which it bursts backwards with 80's violence.`); + break; + case "a slutty qipao": + r.push(`is in a perfect bun, secured with a jade comb.`); + break; + case "spats and a tank top": + r.push(`is in a neat bun, held back with a scrunchy.`); + break; + case "a huipil": + r.push(`is twisted into two horns that rest on top of ${his} head, the rest sits tightly on the back of ${his} neck.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in a perfect bun, secured with an ivory comb.`); + break; + case "restrictive latex": + r.push(`sticks out of the latex hood in a big bun.`); + break; + case "harem gauze": + r.push(`is piled up on ${his} head in a beehive, pulling ${his} veil up a little.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is piled up on ${his} head in a perfect 60's beehive.`); + break; + case "a courtesan dress": + r.push(`is in a perfect bun.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is back in a severe bun, and topped with a little maid's cap.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is back in a bun, so severe it pulls at ${his} temples a little.`); + break; + case "slutty business attire": + r.push(`is pinned back in a hasty bun.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is pulled hard back into a bun held in place with paracord.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + r.push(`is in a bun secured by a pastel scrunchy.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is back in a bun and topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is back in a high bun that pushes ${his} cowboy hat forward at a rakish angle.`); + break; + case "a Santa dress": + r.push(`is back in a high bun that pushes ${his} festive hat forward at a rakish angle.`); + break; + case "kitty lingerie": + r.push(`is back in a big bun, and topped by a cat ear headband.`); + break; + default: + r.push(`is back in a big bun.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "chains": + r.push(`is pulled painfully back into a bun, which is secured to ${his} collar.`); + break; + case "body oil": + r.push(`is in an 80's perm and back in a scrunchy, from which it shoots backwards with 80's violence.`); + break; + case "a slutty qipao": + r.push(`is in a tight little bun, secured with a jade comb.`); + break; + case "spats and a tank top": + r.push(`is in a neat little bun, held back with a scrunchy.`); + break; + case "a huipil": + r.push(`is twisted into two horns that rest on top of ${his} head.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in a tight little bun, secured with an ivory comb.`); + break; + case "restrictive latex": + r.push(`fits back under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is piled on ${his} head, pulling ${his} veil up a little.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is piled up on ${his} head in a perfect 60's 'do.`); + break; + case "a courtesan dress": + r.push(`is in a perfect little bun.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is back in a little bun, and topped with a little maid's cap.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is back in a tight little bun, so severe it pulls at ${his} temples a little.`); + break; + case "slutty business attire": + r.push(`is pinned back in a hasty bun.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is pulled hard back into a bun held in place with paracord.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + r.push(`is in a tight little bun secured by a pastel scrunchy.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is back in a tight little bun and topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is back in a tight little bun that pushes ${his} cowboy hat forward at a rakish angle.`); + break; + case "a Santa dress": + r.push(`is back in a tight little bun that pushes ${his} festive hat forward at a rakish angle.`); + break; + case "kitty lingerie": + r.push(`is back in a tight little bun, and topped by a cat ear headband.`); + break; + default: + r.push(`is back in a tight little bun.`); + } + } else { + switch (slave.clothes) { + case "restrictive latex": + r.push(`fits back under ${his} latex hood.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is combed back and topped with a little maid's cap.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is combed back and topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + default: + r.push(`is combed back.`); + } } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "body oil": - r.push(`is in a classic 80's perm.`); - break; - case "a slutty qipao": - r.push(`is brushed back and ornamented with a little jade talisman.`); - break; - case "a huipil": - r.push(`is short and neat, giving ${him} an innocent look.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`is crammed under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a halter top dress": - case "a ball gown": - r.push(`follows the latest fashion.`); - break; - case "a courtesan dress": - r.push(`is meticulously brushed.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is kept sensibly in place by a set of ivory hairpins.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is decorated with a little black bow in back.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is kept out of ${his} face by simple barrette.`); - break; - case "slutty business attire": - r.push(`is kept out of ${his} face by a gaudy golden barrette.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is kept out of ${his} face by a sturdy hairpin.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is topped by a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`bears a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is brushed back and topped by a cat ear headband.`); - break; - default: - r.push(`is brushed back.`); + break; + case "tails": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into tails.`); + break; + case "chains": + r.push(`is back in tails secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is bound by latex hair cuffs into long matching pigtails.`); + break; + case "Western clothing": + r.push(`is back in huge tails that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in huge tails that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in big poofy tails secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in huge tails secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is pulled back with a pair of scrunchies into long tails that almost reach the ground.`); + break; + case "a huipil": + r.push(`is twisted into two huge tails that rest on top of ${his} shoulders.`); + break; + case "a kimono": + r.push(`is in huge tails secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in huge tails secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in huge tails tied back with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is back in huge tails secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in twin tails that almost reach the ground, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in floor-length tails secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is gathered into two tight tails wrapped in golden thread that almost reach the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in tails that nearly reach the ground.`); + break; + case "a chattel habit": + r.push(`is in a couple of tails that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in long tails, but they're hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into beautiful long tails, one of which comes around to run down ${his} chest.`); + break; + case "slutty business attire": + r.push(`is gathered into floor-length tails by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into secure tails and doubled up so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into floor-length tails by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in long tails, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in long tails, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in long tails and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in long tails and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in long tails and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in long tails and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in long tails and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in long tails and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in long tails and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in long tails and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in twin tails that almost reach the ground, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in long tails and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is in twin tails that almost reach the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into tails.`); + break; + case "chains": + r.push(`is back in tails secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is bound by latex hair cuffs into matching pigtails.`); + break; + case "Western clothing": + r.push(`is back in long tails that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in long tails that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in big poofy tails secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in big tails secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is pulled back with a pair of scrunchies into long tails.`); + break; + case "a huipil": + r.push(`is twisted into two tails that rest on top of ${his} shoulders.`); + break; + case "a kimono": + r.push(`is in big tails secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in big tails secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in big tails tied back with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is back in big tails secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in long twin braids, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in long braids secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is gathered into two long tails wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long loose tails.`); + break; + case "a chattel habit": + r.push(`is in a couple of long tails that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in long tails, but they're hidden by ${his} surplice.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`is combed into beautiful tails, one of which comes around to fall between ${his} breasts.`); + break; + case "slutty business attire": + r.push(`is gathered into long tails by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into secure tails so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into long tails by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in tails, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in tails, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in long tails and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in long tails and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in long tails and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in long tails and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in long tails and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in long tails and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in long tails and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in long tails and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in long twin tails, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in long tails and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is in long twin tails.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into short tails.`); + break; + case "chains": + r.push(`is back in short tails secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is bound by latex hair cuffs into short matching pigtails.`); + break; + case "Western clothing": + r.push(`is back in short braids that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in short braids that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in poofy tails secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in short tails secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is pulled back with a pair of scrunchies into little tails.`); + break; + case "a huipil": + r.push(`is twisted into two short tails that give ${him} the look of a little girl.`); + break; + case "a kimono": + r.push(`is in short tails secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in short tails secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in short tails secured with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is back in short tails secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in short braids, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is in short braids secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is gathered into two short tails wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in short, slutty tails.`); + break; + case "a chattel habit": + r.push(`is in a couple of short tails that are hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in short tails hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into short tails set low at the nape of ${his} neck.`); + break; + case "slutty business attire": + r.push(`is gathered into short tails by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into short tails so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into short tails by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in tails, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in tails, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in short braids and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in short braids and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in short braids and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in short braids and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in short braids and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in short braids and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in short braids and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in short braids and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in short braids and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in short braids, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in short tails held in place with heart-shaped clips.`); + break; + default: + r.push(`is in short braids.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is combed back and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is too short to be kept in proper tails, so it's simply combed back.`); + } } - } else { - switch (slave.clothes) { - case "body oil": - r.push(`is in a classic 80's perm.`); - break; - case "restrictive latex": - r.push(`fits under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is covered by a flimsy hairnet.`); - break; - case "a slave gown": - r.push(`is gelled into a fashionable wave.`); - break; - case "a halter top dress": - r.push(`is gelled into a fashionable wave.`); - break; - case "a ball gown": - r.push(`is gelled into a fashionable wave.`); - break; - case "a courtesan dress": - r.push(`is meticulously brushed.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`rustles freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is parted on the side.`); - break; - case "slutty business attire": - r.push(`is parted in the middle.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is in a utilitarian cut.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is hidden by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is hidden by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is hidden by a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - case "long qipao": - case "a dirndl": - case "lederhosen": - case "a biyelgee costume": - case "striped panties": - r.push(`is short, and ${he} has a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is short, and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is neatly brushed and topped by a cat ear headband.`); - break; - default: - r.push(`is neatly brushed.`); - } - } - break; - case "up": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "chains": - r.push(`is pulled painfully back into a long tail, which is secured to ${his} chains at ${his} torso and ${his} ass.`); - break; - case "body oil": - r.push(`is in an 80's perm and back in a scrunchy, from which it explodes backwards with 80's violence.`); - break; - case "a slutty qipao": - r.push(`is in a perfect bun, secured with a jade comb; ${his} bun is so large it forms an artful arrangement down to the nape of ${his} neck.`); - break; - case "a huipil": - r.push(`is twisted into two horns that rest on top of ${his} head, the rest is bulked on the back of ${his} neck.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in a perfect bun, secured with an ivory comb; ${his} bun is so large it forms an artful arrangement down to the nape of ${his} neck.`); - break; - case "a courtesan dress": - r.push(`is in a perfect bun.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "restrictive latex": - r.push(`sticks out of the latex hood in a huge bun.`); - break; - case "harem gauze": - r.push(`is piled up on ${his} head in a huge beehive, itself veiled.`); - break; - case "a slave gown": - case "a halter top dress": - case "a ball gown": - r.push(`is piled up on ${his} head in a perfect 60's beehive.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering, though it's obvious ${he} has a huge mass of hair restrained under there.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood, though it's evident ${he} has a huge mass of hair restrained under there.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is back in a huge bun, and topped with a little maid's cap.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is back in a huge bun, so severe it pulls at ${his} temples a little.`); - break; - case "slutty business attire": - r.push(`is pinned back in a hasty bun.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is pulled hard back into a big bun held in place with paracord.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - r.push(`is in a huge bun secured by a pastel scrunchy.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is back in a huge bun and topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is back in a bun so huge it pushes ${his} cowboy hat forward at a rakish angle.`); - break; - case "a Santa dress": - r.push(`is back in a bun so huge it pushes ${his} festive hat forward at a rakish angle.`); - break; - case "kitty lingerie": - r.push(`is back in an enormous bun, and topped by a cat ear headband.`); - break; - default: - r.push(`is back in an enormous bun.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "chains": - r.push(`is pulled painfully back into a long tail, which is secured to ${his} chains at ${his} torso.`); - break; - case "body oil": - r.push(`is in an 80's perm and back in a scrunchy, from which it bursts backwards with 80's violence.`); - break; - case "a slutty qipao": - r.push(`is in a perfect bun, secured with a jade comb.`); - break; - case "spats and a tank top": - r.push(`is in a neat bun, held back with a scrunchy.`); - break; - case "a huipil": - r.push(`is twisted into two horns that rest on top of ${his} head, the rest sits tightly on the back of ${his} neck.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in a perfect bun, secured with an ivory comb.`); - break; - case "restrictive latex": - r.push(`sticks out of the latex hood in a big bun.`); - break; - case "harem gauze": - r.push(`is piled up on ${his} head in a beehive, pulling ${his} veil up a little.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is piled up on ${his} head in a perfect 60's beehive.`); - break; - case "a courtesan dress": - r.push(`is in a perfect bun.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is back in a severe bun, and topped with a little maid's cap.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is back in a bun, so severe it pulls at ${his} temples a little.`); - break; - case "slutty business attire": - r.push(`is pinned back in a hasty bun.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is pulled hard back into a bun held in place with paracord.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - r.push(`is in a bun secured by a pastel scrunchy.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is back in a bun and topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is back in a high bun that pushes ${his} cowboy hat forward at a rakish angle.`); - break; - case "a Santa dress": - r.push(`is back in a high bun that pushes ${his} festive hat forward at a rakish angle.`); - break; - case "kitty lingerie": - r.push(`is back in a big bun, and topped by a cat ear headband.`); - break; - default: - r.push(`is back in a big bun.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "chains": - r.push(`is pulled painfully back into a bun, which is secured to ${his} collar.`); - break; - case "body oil": - r.push(`is in an 80's perm and back in a scrunchy, from which it shoots backwards with 80's violence.`); - break; - case "a slutty qipao": - r.push(`is in a tight little bun, secured with a jade comb.`); - break; - case "spats and a tank top": - r.push(`is in a neat little bun, held back with a scrunchy.`); - break; - case "a huipil": - r.push(`is twisted into two horns that rest on top of ${his} head.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in a tight little bun, secured with an ivory comb.`); - break; - case "restrictive latex": - r.push(`fits back under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is piled on ${his} head, pulling ${his} veil up a little.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is piled up on ${his} head in a perfect 60's 'do.`); - break; - case "a courtesan dress": - r.push(`is in a perfect little bun.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is back in a little bun, and topped with a little maid's cap.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is back in a tight little bun, so severe it pulls at ${his} temples a little.`); - break; - case "slutty business attire": - r.push(`is pinned back in a hasty bun.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is pulled hard back into a bun held in place with paracord.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - r.push(`is in a tight little bun secured by a pastel scrunchy.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is back in a tight little bun and topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is back in a tight little bun that pushes ${his} cowboy hat forward at a rakish angle.`); - break; - case "a Santa dress": - r.push(`is back in a tight little bun that pushes ${his} festive hat forward at a rakish angle.`); - break; - case "kitty lingerie": - r.push(`is back in a tight little bun, and topped by a cat ear headband.`); - break; - default: - r.push(`is back in a tight little bun.`); - } - } else { - switch (slave.clothes) { - case "restrictive latex": - r.push(`fits back under ${his} latex hood.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is combed back and topped with a little maid's cap.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is combed back and topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - default: - r.push(`is combed back.`); - } - } - break; - case "tails": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into tails.`); - break; - case "chains": - r.push(`is back in tails secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is bound by latex hair cuffs into long matching pigtails.`); - break; - case "Western clothing": - r.push(`is back in huge tails that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in huge tails that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in big poofy tails secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in huge tails secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is pulled back with a pair of scrunchies into long tails that almost reach the ground.`); - break; - case "a huipil": - r.push(`is twisted into two huge tails that rest on top of ${his} shoulders.`); - break; - case "a kimono": - r.push(`is in huge tails secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in huge tails secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in huge tails tied back with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is back in huge tails secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in twin tails that almost reach the ground, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in floor-length tails secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is gathered into two tight tails wrapped in golden thread that almost reach the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in tails that nearly reach the ground.`); - break; - case "a chattel habit": - r.push(`is in a couple of tails that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in long tails, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into beautiful long tails, one of which comes around to run down ${his} chest.`); - break; - case "slutty business attire": - r.push(`is gathered into floor-length tails by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into secure tails and doubled up so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into floor-length tails by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in long tails, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in long tails, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in long tails and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in long tails and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in long tails and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in long tails and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in long tails and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in long tails and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in long tails and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in long tails and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in twin tails that almost reach the ground, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in long tails and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is in twin tails that almost reach the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into tails.`); - break; - case "chains": - r.push(`is back in tails secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is bound by latex hair cuffs into matching pigtails.`); - break; - case "Western clothing": - r.push(`is back in long tails that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in long tails that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in big poofy tails secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in big tails secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is pulled back with a pair of scrunchies into long tails.`); - break; - case "a huipil": - r.push(`is twisted into two tails that rest on top of ${his} shoulders.`); - break; - case "a kimono": - r.push(`is in big tails secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in big tails secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in big tails tied back with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is back in big tails secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in long twin braids, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in long braids secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is gathered into two long tails wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long loose tails.`); - break; - case "a chattel habit": - r.push(`is in a couple of long tails that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in long tails, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a halter top dress": - case "a ball gown": - r.push(`is combed into beautiful tails, one of which comes around to fall between ${his} breasts.`); - break; - case "slutty business attire": - r.push(`is gathered into long tails by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into secure tails so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into long tails by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in tails, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in tails, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in long tails and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in long tails and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in long tails and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in long tails and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in long tails and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in long tails and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in long tails and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in long tails and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in long twin tails, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in long tails and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is in long twin tails.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into short tails.`); - break; - case "chains": - r.push(`is back in short tails secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is bound by latex hair cuffs into short matching pigtails.`); - break; - case "Western clothing": - r.push(`is back in short braids that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in short braids that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in poofy tails secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in short tails secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is pulled back with a pair of scrunchies into little tails.`); - break; - case "a huipil": - r.push(`is twisted into two short tails that give ${him} the look of a little girl.`); - break; - case "a kimono": - r.push(`is in short tails secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in short tails secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in short tails secured with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is back in short tails secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in short braids, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is in short braids secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is gathered into two short tails wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in short, slutty tails.`); - break; - case "a chattel habit": - r.push(`is in a couple of short tails that are hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in short tails hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into short tails set low at the nape of ${his} neck.`); - break; - case "slutty business attire": - r.push(`is gathered into short tails by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into short tails so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into short tails by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in tails, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in tails, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in short braids and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in short braids and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in short braids and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in short braids and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in short braids and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in short braids and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in short braids and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in short braids and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in short braids and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in short braids, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in short tails held in place with heart-shaped clips.`); - break; - default: - r.push(`is in short braids.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is combed back and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is too short to be kept in proper tails, so it's simply combed back.`); - } - } - break; - case "ponytail": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is tied back with a simple hair tie into a long ponytail.`); - break; - case "chains": - r.push(`is tied back into a ponytail secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is threaded through a thick latex sleeve into a peaked ponytail resembling a long flogger.`); - break; - case "Western clothing": - r.push(`is back in a huge ponytail emerging from the back of ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in a huge ponytail emerging from the back of ${his} festive hat.`); - break; - case "body oil": - r.push(`is back in a big, long ponytail, tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is tied back in a huge ponytail secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is tied back with a scrunchy into a long ponytail that falls down`); - if (hasAnyLegs(slave)) { - r.push(his); - if (hasBothLegs(slave)) { - r.push(`legs.`); + break; + case "ponytail": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is tied back with a simple hair tie into a long ponytail.`); + break; + case "chains": + r.push(`is tied back into a ponytail secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is threaded through a thick latex sleeve into a peaked ponytail resembling a long flogger.`); + break; + case "Western clothing": + r.push(`is back in a huge ponytail emerging from the back of ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in a huge ponytail emerging from the back of ${his} festive hat.`); + break; + case "body oil": + r.push(`is back in a big, long ponytail, tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is tied back in a huge ponytail secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is tied back with a scrunchy into a long ponytail that falls down`); + if (hasAnyLegs(slave)) { + r.push(his); + if (hasBothLegs(slave)) { + r.push(`legs.`); + } else { + r.push(`leg.`); + } } else { - r.push(`leg.`); + r.push(`past ${his} torso.`); } - } else { - r.push(`past ${his} torso.`); - } - break; - case "a huipil": - r.push(`is tied into a huge ponytail, that leaves ${his} long hair to wave in the wind.`); - break; - case "a kimono": - r.push(`is in a huge ponytail secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in a huge ponytail secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in a huge ponytail tied back with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of a hole in the back of in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in a huge ponytail secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in a huge ponytail secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in a floor-length ponytail secured by paracord.`); - break; - case "harem gauze": - r.push(`is gathered into a tight ponytail wrapped in golden thread that almost reaches the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in a ponytail that nearly reaches the ground.`); - break; - case "a chattel habit": - r.push(`is in a long ponytail that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in a long ponytail, but it's hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into a beautiful long ponytail, which swooshes as ${he} moves.`); - break; - case "slutty business attire": - r.push(`is gathered into a floor-length ponytail by a gaudy gold clasp.`); - break; - case "nice business attire": - r.push(`is gathered into a ponytail and doubled up so ${he} can do business without it getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into a floor-length ponytail by a white cloth tie emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in a long ponytail, but it's hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in a long ponytail, but it's hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in a long ponytail and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in a long ponytail and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in a long ponytail and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in a long ponytail held in place by a heart-shaped clip.`); - break; - default: - r.push(`is in a ponytail that almost reaches the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a simple hair tie into a ponytail.`); - break; - case "chains": - r.push(`is tied back in a ponytail secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is threaded through a thick latex sleeve into a peaked ponytail resembling a flogger.`); - break; - case "Western clothing": - r.push(`is tied back in a long ponytail that emerges from the back of ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is tied back in a long ponytail that emerges from the back of ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in a big, long ponytail tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in a big ponytail secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is tied back with a scrunchy into a long ponytail.`); - break; - case "a huipil": - r.push(`is tied into a modest ponytail, that leaves ${his} hair to wave in the wind.`); - break; - case "a kimono": - r.push(`is in a big ponytail secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in a big ponytail secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in a big ponytail tied back with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of a hole in the back of ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in a big ponytail secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in a big ponytail secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in a long braid secured by paracord.`); - break; - case "harem gauze": - r.push(`is gathered into a long ponytail wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in a long loose ponytail.`); - break; - case "a chattel habit": - r.push(`is in a long ponytail that flows out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in a long ponytail, but it's hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into a beautiful ponytail, which swooshes as ${he} moves.`); - break; - case "slutty business attire": - r.push(`is gathered into a long ponytail by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into a secure ponytail so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into a long ponytail by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in a long ponytail, but it's hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in a long ponytail, but it's hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in a long ponytail and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in a long ponytail and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in a long ponytail and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in a long ponytail and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in a long ponytail held in place by a heart-shaped clip.`); - break; - default: - r.push(`is in a long ponytail.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a simple hair tie into short ponytail.`); - break; - case "chains": - r.push(`is back in a short ponytail secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is bound by a latex hair cuff into a short and severe ponytail.`); - break; - case "Western clothing": - r.push(`is back in a short braid that emerges from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in a short braid that emerges from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in a big, long ponytail tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in short ponytail secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is tied back with a scrunchy into a short, cute ponytail.`); - break; - case "a huipil": - r.push(`is tied into a small ponytail, that leaves ${his} short hair to wave in the wind.`); - break; - case "a kimono": - r.push(`is in short ponytail secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in short ponytail secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in short ponytail secured with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of a hole in the back of ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in a short ponytail secured by a hair tie with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in a short ponytail secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is in a short braid secured by paracord.`); - break; - case "harem gauze": - r.push(`is gathered into a short ponytail wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in a short, slutty ponytail.`); - break; - case "a chattel habit": - r.push(`is in a short ponytail that is hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in a short ponytail hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into a short ponytail set low at the nape of ${his} neck.`); - break; - case "slutty business attire": - r.push(`is gathered into a short ponytail by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into a short ponytail so ${he} can do business without it getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into a short ponytail by a white cloth tie emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in a ponytail, but it's hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in a ponytail, but it's hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in a ponytail and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in a ponytail and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in a ponytail and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in a ponytail and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in a short ponytail, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in a short ponytail held in place by a heart-shaped clip.`); - break; - default: - r.push(`is in a short ponytail.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is combed back and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - default: - r.push(`is too short to be kept in a proper ponytail, so it's simply combed back.`); - } - } - break; - case "braided": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into braids.`); - break; - case "chains": - r.push(`is back in braids secured by steel rings.`); - break; - case "Western clothing": - r.push(`is back in huge braids that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in huge braids that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in big poofy braids secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in huge braids secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is twisted into huge braids, that rest on ${his} shoulders.`); - break; - case "a kimono": - r.push(`is in huge braids secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in huge braids secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in huge braids tied back with rope.`); - break; - case "restrictive latex": - r.push(`sticks out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in huge braids secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in huge braids secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in floor-length braids secured by paracord.`); - break; - case "harem gauze": - r.push(`is gathered into two tight braids wrapped in golden thread that almost reach the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in braids that nearly reach the ground.`); - break; - case "a chattel habit": - r.push(`is in a couple of braids that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in long braids, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into beautiful long braids, one of which comes around to run down ${his} chest.`); - break; - case "slutty business attire": - r.push(`is gathered into floor-length braids by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into secure braids and doubled up so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into floor-length braids by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in long braids, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in long braids, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in long braids and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in long braids and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in long braids and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in long braids and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in long braids and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in long braids and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in long braids and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in long braids and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in long braids and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in braids that almost reach the ground, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is gathered into floor-length braids by pink cloth ties emblazoned with little hearts.`); - break; - default: - r.push(`is in braids that almost reach the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with simple hair ties into braids.`); - break; - case "chains": - r.push(`is back in braids secured by steel rings.`); - break; - case "Western clothing": - r.push(`is back in long braids that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in long braids that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in big, long braids secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in big braids secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is twisted into braids, that rest on ${his} shoulders.`); - break; - case "a kimono": - r.push(`is in long braids secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in long braids secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in long braids tied back with rope.`); - break; - case "restrictive latex": - r.push(`is braided and sticks out of holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in long braids secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in long braids secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is back in long braids secured by paracord.`); - break; - case "harem gauze": - r.push(`is tied into long braids wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long braids.`); - break; - case "a chattel habit": - r.push(`is in long braids that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in long braids, but they're hidden by ${his} surplice.`); - break; - case "a halter top dress": - case "a ball gown": - case "a slave gown": - r.push(`is in beautiful braids, one of which comes around to fall between ${his} breasts.`); - break; - case "slutty business attire": - r.push(`is tied into long braids and secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is tied into long braids and secured so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - r.push(`is tied into long braids and secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in braids, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in braids, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in braids and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in braids and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in braids and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in braids and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in braids and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in braids and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in braids and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in braids and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in braids and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in long braids, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is tied into long braids and secured by pink cloth ties emblazoned with little hearts.`); - break; - default: - r.push(`is in long braids.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into short braids.`); - break; - case "chains": - r.push(`is back in short braids secured by steel rings.`); - break; - case "Western clothing": - r.push(`is back in short braids that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in short braids that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in short braids secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in short braids secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is twisted into short braids, that rest on ${his} shoulders.`); - break; - case "a kimono": - r.push(`is in short braids secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in short braids secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in short braids secured with rope.`); - break; - case "restrictive latex": - r.push(`is braided and sticks out of holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is back in short braids secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is back in short braids secured by steel, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is in short braids secured by paracord.`); - break; - case "harem gauze": - r.push(`is gathered into short braids wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice short, slutty tails.`); - break; - case "a chattel habit": - r.push(`is in short braids that are hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in short braids hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is combed into short braids set low at the nape of ${his} neck.`); - break; - case "slutty business attire": - r.push(`is gathered into short braids by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into short braids so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into short braids by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in short braids, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in short braids, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in short braids and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in short braids and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in short braids and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in short braids and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in short braids and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in short braids and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in short braids and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in short braids and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in short braids and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in short braids, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is gathered into long braids by pink cloth ties emblazoned with little hearts.`); - break; - default: - r.push(`is in short braids.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is combed back and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - default: - r.push(`is too short to be kept in proper braids, so it's simply combed back.`); - } - } - break; - case "dreadlocks": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is in dreadlocks, reaching down almost to the ground.`); - break; - case "chains": - r.push(`is in long dreadlocks, connected to ${his} chains at the ends by steel rings.`); - break; - case "Western clothing": - r.push(`is long dreadlocks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is long dreadlocks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is in dreadlocks, some tied with bands of colored string.`); - break; - case "a slutty qipao": - r.push(`is in long dreadlocks, some with jade ornaments etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in long dreadlocks, with a couple of small ornaments important to ${him}.`); - break; - case "a kimono": - r.push(`is in long dreadlocks, some in ivory rings carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is in long dreadlocks some in simple leather ties.`); - break; - case "shibari rope": - r.push(`is in long dreadlocks, some simply tied with string.`); - break; - case "restrictive latex": - r.push(`is in dreadlocks, poking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is in dreadlocks, some in ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in dreadlocks bunched up by leather, and topped with a gold headband.`); - break; - case "battledress": - r.push(`is in floor-length dreadlocks, some secured by paracord.`); - break; - case "harem gauze": - r.push(`is in dreadlocks wrapped in golden thread that almost reach the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in dreadlocks that nearly reach the ground.`); - break; - case "a chattel habit": - r.push(`is in long dreadlocks that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in long dreadlocks, barely hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is in dreadlocks, spreading out in many directions and almost reaching the ground.`); - break; - case "slutty business attire": - r.push(`is in floor-length dreadlocks, some in gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is in dreadlocks and tied up so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in floor-length dreadlocks, some in white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in long dreadlocks, barely hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in long dreadlocks, well hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in long dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in long dreadlocks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in long dreadlocks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in dreadlocks that reach almost to the ground, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is in dreadlocks that almost reach the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is in dreadlocks, reaching past ${his} shoulders.`); - break; - case "chains": - r.push(`is in dreadlocks, attached to ${his} chains at the ends by steel rings.`); - break; - case "Western clothing": - r.push(`is back in dreadlocks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in dreadlocks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is in dreadlocks, some tied with bands of colored string.`); - break; - case "a slutty qipao": - r.push(`is in dreadlocks, some with jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in dreadlocks, with a couple of small ornaments important to ${him}.`); - break; - case "a kimono": - r.push(`is in dreadlocks, some in ivory rings carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is in dreadlocks, some tied with simple leather ties.`); - break; - case "shibari rope": - r.push(`is in dreadlocks, some simply tied with string.`); - break; - case "restrictive latex": - r.push(`is in dreadlocks, sticking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is in dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in dreadlocks bunched up by leather, and topped with a gold headband.`); - break; - case "battledress": - r.push(`is in dreadlocks, some tied with paracord.`); - break; - case "harem gauze": - r.push(`is in dreadlocks, some tied with golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in dreadlocks.`); - break; - case "a chattel habit": - r.push(`is in dreadlocks that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in dreadlocks, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - r.push(`is in dreadlocks, spreading out in many directions.`); - break; - case "a halter top dress": - r.push(`is in dreadlocks, spreading out in many directions.`); - break; - case "a ball gown": - r.push(`is in dreadlocks, spreading out in many directions.`); - break; - case "slutty business attire": - r.push(`is in dreadlocks, some in gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is in dreadlocks and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in dreadlocks, some with white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in dreadlocks, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in dreadlocks, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in dreadlocks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in dreadlocks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in dreadlocks and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is in dreadlocks.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is in short dreadlocks, some in simple hair ties.`); - break; - case "chains": - r.push(`is in short dreadlocks, some with steel rings.`); - break; - case "Western clothing": - r.push(`is in short dreadlocks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is in short dreadlocks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is in short dreadlocks, some tied with colored string.`); - break; - case "a slutty qipao": - r.push(`is in short dreadlocks, some in jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in short dreadlocks, with a couple of small ornaments important to ${him}.`); - break; - case "a kimono": - r.push(`is in short dreadlocks, some with ivory rings carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is in short dreadlocks, some with simple leather ties.`); - break; - case "shibari rope": - r.push(`is in dreadlocks, some simply tied with string.`); - break; - case "restrictive latex": - r.push(`is in short dreadlocks, sticking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is in short dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in short dreadlocks bunched up by leather, and topped with a gold headband.`); - break; - case "battledress": - r.push(`is in short dreadlocks, some tied with paracord.`); - break; - case "harem gauze": - r.push(`is in short dreadlocks, some in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in short, dreadlocks.`); - break; - case "a chattel habit": - r.push(`is in short dreadlocks that are hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in short dreadlocks hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is in short dreadlocks, spreading around ${his} head.`); - break; - case "slutty business attire": - r.push(`is in short dreadlocks, some with gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is in short dreadlocks and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in short dreadlocks, some in white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in short dreadlocks, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in short dreadlocks, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in short dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in short dreadlocks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in short dreadlocks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in short dreadlocks, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is in short dreadlocks.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is combed back and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - default: - r.push(`is too short to be kept in proper dreadlocks, so it's simply combed back.`); - } - } - break; - case "curled": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is curled into long flowing locks, reaching down almost to the ground.`); - break; - case "chains": - r.push(`is curled into long flowing locks secured by steel rings.`); - break; - case "Western clothing": - r.push(`is curled into long flowing locks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is curled into long flowing locks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is curled into long flowing locks, tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is curled into long flowing locks secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in long curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is curled into long flowing locks secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is curled into long flowing locks secured by leather ties.`); - break; - case "shibari rope": - r.push(`is in long dreadlocks, some simply tied with string.`); - break; - case "restrictive latex": - r.push(`is curled into long flowing locks poking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is curled into long flowing locks secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is curled into long flowing locks, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is curled into floor-length locks secured by paracord.`); - break; - case "harem gauze": - r.push(`is curled into long flowing locks wrapped in golden thread that almost reach the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long curly locks that nearly reach the ground.`); - break; - case "a chattel habit": - r.push(`is curled into long flowing locks that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is curled into long flowing locks barely hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is curled into long flowing locks, almost reaching the ground.`); - break; - case "slutty business attire": - r.push(`is curled into long flowing locks, secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is curled into long flowing locks and tied up so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is curled into long flowing locks, secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is curled into long flowing locks, barely hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is curled into long flowing locks, well hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is curled into long flowing locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is curled into long flowing locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is curled into long flowing locks that almost reach the ground, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is curled into long flowing locks that almost reach the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is curled into long locks, reaching past ${his} shoulders.`); - break; - case "chains": - r.push(`is curled into long locks, secured by steel rings.`); - break; - case "Western clothing": - r.push(`is curled into long locks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is curled into long locks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is curled into long locks, tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is curled into long locks, secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is curled into long locks, secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is curled into long locks, secured by leather ties.`); - break; - case "shibari rope": - r.push(`is curled into long locks, tied back with rope.`); - break; - case "restrictive latex": - r.push(`is curled into long locks, sticking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is curled into long locks secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is curled into long flowing locks, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is curled into long locks, secured by paracord.`); - break; - case "harem gauze": - r.push(`is curled into long locks, secured by golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long curled locks.`); - break; - case "a chattel habit": - r.push(`is curled into long locks that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is curled into long locks, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is curled into long locks, reaching past ${his} shoulders.`); - break; - case "slutty business attire": - r.push(`is curled into long locks secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is curled into long locks and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is curled into long locks, secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is curled into long locks, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is curled into long locks, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is curled into long locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is curled into long locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is curled into long locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is curled into long locks, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is curled into long locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is curled into long locks.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is curled into short locks secured by simple hair ties.`); - break; - case "chains": - r.push(`is curled into short locks secured by steel rings.`); - break; - case "Western clothing": - r.push(`is curled into short locks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is curled into short locks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is curled into short locks tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is curled into short locks secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is in short curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is curled into short locks secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is curled into short locks secured by leather ties.`); - break; - case "shibari rope": - r.push(`is curled into short locks tied with rope.`); - break; - case "restrictive latex": - r.push(`is curled into short locks, but they are covered by ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is curled into short locks secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is curled into short flowing locks, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is curled into short locks secured by paracord.`); - break; - case "harem gauze": - r.push(`is curled into short locks secured by golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in short, curled locks.`); - break; - case "a chattel habit": - r.push(`is curled into short locks that are hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is curled into short locks hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is curled into short locks.`); - break; - case "slutty business attire": - r.push(`is curled into short locks secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is curled into short locks and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is curled into short locks secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is curled into short locks, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is curled into short locks, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is curled into short locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is curled into short locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is curled into short locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is curled into short locks, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is curled into short locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is curled into short locks.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is in short curls and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is in short curls and topped by a cat ear headband.`); - break; - default: - r.push(`is in short curls.`); - } - } - break; - case "permed": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is permed into long flowing curls, reaching down almost to the ground.`); - break; - case "chains": - r.push(`is permed into long flowing curls secured by steel rings.`); - break; - case "Western clothing": - r.push(`is permed into long flowing curls that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is permed into long flowing curls that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed into long flowing curls, tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is permed into long flowing curls secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is permed into long curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is permed into long flowing curls secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is permed into long flowing curls secured by leather ties.`); - break; - case "shibari rope": - r.push(`is in long dreadlocks, some simply tied with string.`); - break; - case "restrictive latex": - r.push(`is permed into long flowing curls poking out of a hole in ${his} latex hood.`); - break; - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "a string bikini": - case "cutoffs and a t-shirt": - case "striped panties": - r.push(`is permed into long flowing curls secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is permed into long flowing curls and topped by a gold headband.`); - break; - case "battledress": - r.push(`is permed into floor-length curls secured by paracord.`); - break; - case "harem gauze": - r.push(`is permed into long flowing curls wrapped in golden thread that almost reach the ground.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long curly curls that nearly reach the ground.`); - break; - case "a chattel habit": - r.push(`is permed into long flowing curls that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is permed into long flowing curls barely hidden by ${his} surplice.`); - break; - case "a ball gown": - case "a halter top dress": - case "a slave gown": - r.push(`is permed into long flowing curls, almost reaching the ground.`); - break; - case "slutty business attire": - r.push(`is permed into long flowing curls, secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is permed into long flowing curls and tied up so ${he} can do business without them getting in the way.`); - break; - case "a nice nurse outfit": - case "a slutty nurse outfit": - r.push(`is permed into long flowing curls, secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is permed into long flowing curls, barely hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is permed into long flowing curls, well hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is permed and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is permed and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is permed and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is permed and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is permed and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is permed and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is permed and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is permed and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is permed and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is permed and topped by a cat ear headband; ${his} curls almost reach the ground.`); - break; - case "a bimbo outfit": - r.push(`is permed and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is permed; ${his} curls almost reach the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is permed, ${his} curls reaching past ${his} shoulders.`); - break; - case "chains": - r.push(`is permed into long locks, secured by steel rings.`); - break; - case "Western clothing": - r.push(`is permed into long locks that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is permed into long locks that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed and tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is permed into long locks, secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is permed into curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is permed and secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is permed and secured by leather ties.`); - break; - case "shibari rope": - r.push(`is permed and tied back with rope.`); - break; - case "restrictive latex": - r.push(`is permed, sticking out of a hole in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is permed and secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is permed and topped by a gold headband.`); - break; - case "battledress": - r.push(`is permed and secured by paracord.`); - break; - case "harem gauze": - r.push(`is permed and secured by golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in long permed curls.`); - break; - case "a chattel habit": - r.push(`is permed, ${his} curls flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is permed, but they're hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a halter top dress": - case "a ball gown": - r.push(`is permed, reaching past ${his} shoulders.`); - break; - case "slutty business attire": - r.push(`is permed and secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is permed and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is permed, secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is permed, ${his} long curls hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is permed, ${his} long curls hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is permed and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is permed and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is permed and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is permed and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is permed and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is permed and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is permed and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is permed and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is permed and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is permed and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is permed and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is permed.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is permed into short waves secured by simple hair ties.`); - break; - case "chains": - r.push(`is permed into short waves secured by steel rings.`); - break; - case "Western clothing": - r.push(`is permed into short waves that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is permed into short waves that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed into short waves tied with a scrunchy in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is permed into short waves secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "a huipil": - r.push(`is permed into short curls, and the locks flow down ${his} shoulders.`); - break; - case "a kimono": - r.push(`is permed into short waves secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is permed into short waves secured by leather ties.`); - break; - case "shibari rope": - r.push(`is permed into short waves tied with rope.`); - break; - case "restrictive latex": - r.push(`is permed into short waves, but they are covered by ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - case "striped panties": - r.push(`is permed into short waves secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is permed into short waves and topped by a gold headband.`); - break; - case "battledress": - r.push(`is permed into short waves secured by paracord.`); - break; - case "harem gauze": - r.push(`is permed into short waves secured by golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in short, permed waves.`); - break; - case "a chattel habit": - r.push(`is permed into short waves that are hidden by ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is permed into short waves hidden by ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is permed into short waves.`); - break; - case "slutty business attire": - r.push(`is permed into short waves secured by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is permed into short waves and tied so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is permed into short waves secured by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is permed into short waves, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is permed into short waves, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is permed into short waves and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is permed into short waves and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is permed into short waves and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is permed into short waves and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is permed into short waves and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is permed into short waves.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is permed into short curls and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is permed into short curls and topped by a cat ear headband.`); - break; - default: - r.push(`is permed into short curls.`); - } - } - break; - case "luxurious": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "chains": - r.push(`is in luxurious layered locks, caught painfully in ${his} chains here and there.`); - break; - case "body oil": - case "a huipil": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} back.`); - break; - case "a slutty qipao": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, ornamented with little silver talismans here and there.`); - break; - case "restrictive latex": - r.push(`is allowed a gap at the back of ${his} head so ${his} luxurious layered locks can escape to cascade down ${his} back.`); - break; - case "harem gauze": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in luxurious layered locks flowing elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a courtesan dress": - r.push(`is in luxurious layered locks flowing elegantly down ${his} back.`); - break; - case "a bimbo outfit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is in luxurious layered locks but not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in luxurious layered locks but not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in luxurious layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in luxurious layered locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, decorated with little black bows here and there.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is in luxurious layered locks kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in luxurious layered locks topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`cascades out from under a cowboy hat in luxurious layered locks.`); - break; - case "a Santa dress": - r.push(`cascades out from under a festive hat in luxurious layered locks.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is in luxurious layered locks, with a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is in luxurious locks topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is in luxurious layered locks, cascading almost to the ground, and topped by a cat ear headband.`); - break; - default: - r.push(`is in luxurious layered locks, cascading almost to the ground.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "body oil": - case "a huipil": - r.push(`is in luxurious layered locks.`); - break; - case "a slutty qipao": - r.push(`is in luxurious layered locks flowing over ${his} shoulders, ornamented with little silver talismans here and there.`); - break; - case "restrictive latex": - r.push(`is allowed a gap at the back of ${his} head so ${his} luxurious layered locks can escape down ${his} back.`); - break; - case "harem gauze": - r.push(`is in luxurious layered locks flowing down ${his} back, covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in luxurious layered locks flowing elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a courtesan dress": - r.push(`is in luxurious layered locks flowing elegantly down ${his} back.`); - break; - case "a bimbo outfit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is in luxurious layered locks flowing gorgeously but not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in luxurious layered locks flowing gorgeously but not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in luxurious layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in luxurious layered locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is in luxurious layered locks, decorated with a little black bow in back.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`is in luxurious layered locks kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is in luxurious layered locks kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in luxurious layered locks topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is in luxurious layered locks flowing out from under a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is in luxurious layered locks flowing out from under a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is in luxurious layered locks held back by a flower, tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is in luxurious locks topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is brushed back over ${his} shoulders and topped by a cat ear headband.`); - break; - default: - r.push(`is brushed back over ${his} shoulders.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "body oil": - case "a huipil": - r.push(`is in luxuriously styled short locks.`); - break; - case "a slutty qipao": - r.push(`is in luxuriously styled short locks, brushed back and ornamented with a little jade talisman.`); - break; - case "restrictive latex": - r.push(`is in luxuriously styled short locks, crammed under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is in luxuriously styled short locks, covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is in luxuriously styled short locks.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is in luxuriously styled short locks kept sensibly in place by a set of ivory hairpins.`); - break; - case "a courtesan dress": - r.push(`is in luxurious styled short locks.`); - break; - case "a bimbo outfit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is in luxuriously styled short locks but not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in luxuriously styled short locks but not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in luxurious short layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in luxurious short layered locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is in luxuriously styled short locks decorated with a little black bow in back.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`is in luxuriously styled short locks kept out of ${his} face by simple barrette.`); - break; - case "slutty business attire": - r.push(`is in luxuriously styled short locks kept out of ${his} face by a gaudy golden barrette.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a mounty outfit": - case "battlearmor": - r.push(`is in luxuriously styled short locks kept out of ${his} face by a sturdy hairpin.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is in luxuriously styled short locks kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in luxuriously styled short locks topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is in luxuriously styled short locks topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is in luxuriously styled short locks topped by a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is in luxuriously styled short locks, bearing a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is in short, luxurious locks topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is brushed back and topped by a cat ear headband.`); - break; - default: - r.push(`is brushed back.`); - } - } else { - switch (slave.clothes) { - case "body oil": - case "a huipil": - case "a military uniform": - case "a slave gown": - case "a halter top dress": - case "a ball gown": - case "conservative clothing": - case "nice business attire": - case "slutty business attire": - case "battledress": - case "battlearmor": - case "a long qipao": - case "lederhosen": - case "a dirndl": - case "a mounty outfit": - case "a biyelgee costume": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a courtesan dress": - r.push(`is in luxuriously styled short locks.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a bimbo outfit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "restrictive latex": - r.push(`fits under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is in luxuriously styled short locks covered by a flimsy hairnet.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is in luxuriously styled short locks but not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in luxuriously styled short locks but not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in luxurious short layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in luxurious short layered locks and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is in luxuriously styled short locks secured by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is in luxuriously styled short locks under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is in luxuriously styled short locks under ${his} festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is in luxuriously styled short locks, and ${he} has a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is in short, luxurious locks topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is luxuriously styled and layered, and topped by a cat ear headband.`); - break; - default: - r.push(`is luxuriously styled and layered.`); - } - } - break; - case "strip": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "chains": - case "uncomfortable straps": - case "restrictive latex": - case "shibari ropes": - case "a latex catsuit": - r.push(`is shaved into a strip that runs down ${his} back and ends attached to a steel ring.`); - break; - case "Western clothing": - r.push(`is shaved into a strip under ${his} cowboy hat, and cascades magnificently down ${his} back.`); - break; - case "a Santa dress": - r.push(`is shaved into a strip under ${his} festive hat, and cascades magnificently down ${his} back.`); - break; - case "body oil": - case "a huipil": - r.push(`is shaved into a permed strip which cascades magnificently down ${his} back.`); - break; - case "a kimono": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of traditional Chinese coins woven into it.`); - break; - case "battledress": - r.push(`is shaved into a strip that cascades down ${his} back, and has been stiffened so it won't get in ${his} way.`); - break; - case "harem gauze": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved into a strip that cascades out from under ${his} cowl, and has scores of little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved into a strip that falls down ${his} back, decently covered by an extra-long surplice.`); - break; - case "a schoolgirl outfit": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved into a strip that's hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved into a strip that's hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved into a strip and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is shaved into a strip and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved into a strip and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back, and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "chains": - case "uncomfortable straps": - case "restrictive latex": - case "shibari ropes": - case "a latex catsuit": - r.push(`is shaved into a long braided strip that ends attached to a steel ring.`); - break; - case "Western clothing": - r.push(`is shaved into a strip under ${his} cowboy hat, but is visible as a party in the back.`); - break; - case "a Santa dress": - r.push(`is shaved into a strip under ${his} festive hat, but is visible as a party in the back.`); - break; - case "body oil": - case "a huipil": - r.push(`is shaved into a permed strip which falls down ${his} back.`); - break; - case "a kimono": - case "long qipao": - r.push(`is shaved into a long braided strip with little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved into a long braided strip with traditional Chinese coins woven into it.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a mounty outfit": - case "battlearmor": - r.push(`is shaved into a long braided strip.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "harem gauze": - r.push(`is shaved into a long braided strip with little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved into a long braided strip with little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved into a long strip that sticks out from under ${his} cowl, and has little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved into a long braided strip, decently covered by a roomy surplice.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - r.push(`is shaved into a long braided strip with tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved into a long braided strip with tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved into a long braided strip, hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved into a long braided strip, hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved into a long braided strip and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is shaved into a long braided strip and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved into a long braided strip and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved into a long braided strip.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "chains": - case "uncomfortable straps": - case "restrictive latex": - case "shibari ropes": - case "a latex catsuit": - r.push(`is shaved into a strip down the middle of ${his} head that ends attached to a steel ring.`); - break; - case "Western clothing": - r.push(`is shaved into a strip under ${his} cowboy hat, with nothing but a little rat tail visible in back.`); - break; - case "a Santa dress": - r.push(`is shaved into a strip under ${his} festive hat, with nothing but a little rat tail visible in back.`); - break; - case "body oil": - case "a huipil": - r.push(`is shaved into a permed strip.`); - break; - case "a kimono": - case "a long qipao": - r.push(`is shaved into a strip down the middle of ${his} head with little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved into a strip down the middle of ${his} head with traditional Chinese coins woven into it.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a mounty outfit": - case "battlearmor": - r.push(`is shaved into a strip down the middle of ${his} head.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "harem gauze": - r.push(`is shaved into a strip down the middle of ${his} head with little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved into a strip down the middle of ${his} head with little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved into a strip with little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved into a strip down the middle of ${his} head, decently covered by ${his} surplice.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is shaved into a strip down the middle of ${his} head with tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved into a strip down the middle of ${his} head with tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved into a strip down the middle of ${his} head, hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved into a strip down the middle of ${his} head, hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved into a strip and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is shaved into a strip and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved into a strip and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved into a strip and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved into a strip and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved into a strip.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a scalemail bikini": - r.push(`is shaved into a mohawk and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is shaved into a mohawk and topped by a cat ear headband.`); - break; - default: - r.push(`is shaved into a mohawk.`); - } - } - break; - case "undercut": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); - break; - case "Western clothing": - r.push(`is shaved to one side under ${his} cowboy hat, flowing out well past ${his} face and all the way down to ${his} breasts.`); - break; - case "a Santa dress": - r.push(`is shaved to one side under ${his} festive hat, flowing out well past ${his} face and all the way down to ${his} breasts.`); - break; - case "body oil": - case "a huipil": - case "a kimono": - r.push(`is shaved to one side in an extremely long undercut, with scores of little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved to one side in an extremely long undercut, with scores of traditional Chinese coins woven into it.`); - break; - case "battledress": - r.push(`is shaved to one side in an extremely long undercut, stiffened so it won't get in ${his} way.`); - break; - case "harem gauze": - r.push(`is shaved to one side in an extremely long undercut with scores of little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved to one side in an extremely long undercut with scores of little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved to one side that cascades out from under ${his} cowl, and has scores of little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved to one side in an extremely long undercut decently covered by an extra-long surplice.`); - break; - case "a schoolgirl outfit": - r.push(`is shaved to one side in an extremely long undercut with scores of tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved to one side in an extremely long undercut with scores of tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved to one side in an extremely long undercut that's hidden by ${his} niqab.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved to one side in an extremely long undercut that's hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - case "a one-piece swimsuit": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved to one side atop ${his} head that cascades magnificently down one side, topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved to one side, flowing out magnificently down one side and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved on one side into a long undercut that falls well past ${his} breasts.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); - break; - case "Western clothing": - r.push(`is shaved to one side under ${his} cowboy hat, but pokes out down to ${his} neck on one side.`); - break; - case "a Santa dress": - r.push(`is shaved to one side under ${his} festive hat, but pokes out down to ${his} neck on one side.`); - break; - case "body oil": - case "a huipil": - r.push(`is shaved into a permed strip which falls down ${his} back.`); - break; - case "a kimono": - case "long qipao": - r.push(`is shaved into a long, flowing undercut with little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved into a long, flowing undercut with traditional Chinese coins woven into it.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a mounty outfit": - case "battlearmor": - r.push(`is shaved into a long, flowing undercut.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "harem gauze": - r.push(`is shaved into a long, flowing undercut with little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved into a long, flowing undercut with little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved into a long, flowing undercut that sticks out from under ${his} cowl, and has little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved into a long, flowing undercut, decently covered by a roomy surplice.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - r.push(`is shaved into a long, flowing undercut with tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved into a long, flowing undercut with tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved into a long, flowing undercut, hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved into a long, flowing undercut, hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved into a long, flowing undercut and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is shaved into a long, flowing undercut and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved into a long, flowing undercut and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved into a long, flowing undercut and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved to one side, the other half falling down to their neck.`); - } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`is crammed under ${his} latex hood.`); - break; - case "Western clothing": - r.push(`is shaved to one side under ${his} cowboy hat, with just the slightest trace of ${his} hair poking out on the unshaven side.`); - break; - case "a Santa dress": - r.push(`is shaved to one side under ${his} festive hat, with just the slightest trace of ${his} hair poking out on the unshaven side.`); - break; - case "body oil": - case "a huipil": - case "a kimono": - case "a long qipao": - r.push(`is shaved to one side in a flowing undercut with little ivory talismans woven into it.`); - break; - case "a slutty qipao": - r.push(`is shaved to one side in a flowing undercut with traditional Chinese coins woven into it.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "a mounty outfit": - case "battlearmor": - r.push(`is shaved to one side in an undercut that bristles against ${his} armor.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "harem gauze": - r.push(`is shaved to one side in a flowing undercut with little golden bells woven into it.`); - break; - case "a fallen nuns habit": - r.push(`is shaved to one side in a flowing undercut with little silver crosses hanging from it.`); - break; - case "a chattel habit": - r.push(`is shaved to one side with little golden ornaments in lewd shapes woven into it.`); - break; - case "a penitent nuns habit": - r.push(`is shaved to one side in a flowing undercut decently covered by ${his} surplice.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`is shaved to one side in a flowing undercut with tiny pastel bows woven into it.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is shaved to one side in a flowing undercut with tiny black bows woven into it.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is shaved to one side in a flowing undercut, kept hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is shaved to one side in a flowing undercut, kept hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is shaved to one side and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - case "a one-piece swimsuit": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is shaved to one side and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is shaved to one side and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is shaved to one side and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is shaved to one side and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is shaved to one side, the other half falling just over one eye.`); - } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is totally hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is totally hidden by ${his} hood.`); - break; - case "a scalemail bikini": - r.push(`is shaved to one side in a pixie-like undercut topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is shaved to one side into a pixie-like undercut completed by an adorable cat-ear headband.`); - break; - default: - r.push(`is shaved to one side in a pixie-like undercut.`); - } - } - break; - case "bangs": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); - break; - case "a courtesan dress": - r.push(`is cut perfectly straight across ${his} face, concealing ${his} eyes.`); - break; - case "a penitent nuns habit": - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is cut straight across ${his} face, ${his} blunt bangs hiding ${his} eyes from under ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is cut straight across ${his} face, ${his} blunt bangs hiding ${his} eyes from under ${his} hood.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet, though ${his} blunt bangs limit ${his} vision significantly.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is cut straight across ${his} face, hiding ${his} eyes, and accompanied by a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "kitty lingerie": - r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with an adorable cat-ear headband.`); - break; - default: - r.push(`is cut straight across ${his} face, hiding ${his} eyes.`); - } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); - break; - case "a courtesan dress": - r.push(`is cut perfectly straight across ${his} face, partially hiding ${his} eyes.`); - break; - case "a penitent nuns habit": - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes from under ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes from under ${his} hood.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet, though ${his} blunt bangs limits ${his} vision a bit.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and accompanied by a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "kitty lingerie": - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with an adorable cat-ear headband.`); - break; - default: - r.push(`is cut straight across ${his} face, partially hiding ${his} eyes.`); + break; + case "a huipil": + r.push(`is tied into a huge ponytail, that leaves ${his} long hair to wave in the wind.`); + break; + case "a kimono": + r.push(`is in a huge ponytail secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in a huge ponytail secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in a huge ponytail tied back with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of a hole in the back of in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in a huge ponytail secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in a huge ponytail secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in a floor-length ponytail secured by paracord.`); + break; + case "harem gauze": + r.push(`is gathered into a tight ponytail wrapped in golden thread that almost reaches the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in a ponytail that nearly reaches the ground.`); + break; + case "a chattel habit": + r.push(`is in a long ponytail that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in a long ponytail, but it's hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into a beautiful long ponytail, which swooshes as ${he} moves.`); + break; + case "slutty business attire": + r.push(`is gathered into a floor-length ponytail by a gaudy gold clasp.`); + break; + case "nice business attire": + r.push(`is gathered into a ponytail and doubled up so ${he} can do business without it getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into a floor-length ponytail by a white cloth tie emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in a long ponytail, but it's hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in a long ponytail, but it's hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in a long ponytail and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in a long ponytail and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in a long ponytail and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in a long ponytail held in place by a heart-shaped clip.`); + break; + default: + r.push(`is in a ponytail that almost reaches the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a simple hair tie into a ponytail.`); + break; + case "chains": + r.push(`is tied back in a ponytail secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is threaded through a thick latex sleeve into a peaked ponytail resembling a flogger.`); + break; + case "Western clothing": + r.push(`is tied back in a long ponytail that emerges from the back of ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is tied back in a long ponytail that emerges from the back of ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in a big, long ponytail tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in a big ponytail secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is tied back with a scrunchy into a long ponytail.`); + break; + case "a huipil": + r.push(`is tied into a modest ponytail, that leaves ${his} hair to wave in the wind.`); + break; + case "a kimono": + r.push(`is in a big ponytail secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in a big ponytail secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in a big ponytail tied back with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of a hole in the back of ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in a big ponytail secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in a big ponytail secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in a long braid secured by paracord.`); + break; + case "harem gauze": + r.push(`is gathered into a long ponytail wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in a long loose ponytail.`); + break; + case "a chattel habit": + r.push(`is in a long ponytail that flows out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in a long ponytail, but it's hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into a beautiful ponytail, which swooshes as ${he} moves.`); + break; + case "slutty business attire": + r.push(`is gathered into a long ponytail by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into a secure ponytail so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into a long ponytail by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in a long ponytail, but it's hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in a long ponytail, but it's hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in a long ponytail and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in a long ponytail and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in a long ponytail and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in a long ponytail and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in a long ponytail held in place by a heart-shaped clip.`); + break; + default: + r.push(`is in a long ponytail.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a simple hair tie into short ponytail.`); + break; + case "chains": + r.push(`is back in a short ponytail secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is bound by a latex hair cuff into a short and severe ponytail.`); + break; + case "Western clothing": + r.push(`is back in a short braid that emerges from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in a short braid that emerges from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in a big, long ponytail tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in short ponytail secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is tied back with a scrunchy into a short, cute ponytail.`); + break; + case "a huipil": + r.push(`is tied into a small ponytail, that leaves ${his} short hair to wave in the wind.`); + break; + case "a kimono": + r.push(`is in short ponytail secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in short ponytail secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in short ponytail secured with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of a hole in the back of ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in a short ponytail secured by a hair tie with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in a short ponytail secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is in a short braid secured by paracord.`); + break; + case "harem gauze": + r.push(`is gathered into a short ponytail wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in a short, slutty ponytail.`); + break; + case "a chattel habit": + r.push(`is in a short ponytail that is hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in a short ponytail hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into a short ponytail set low at the nape of ${his} neck.`); + break; + case "slutty business attire": + r.push(`is gathered into a short ponytail by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into a short ponytail so ${he} can do business without it getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into a short ponytail by a white cloth tie emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in a ponytail, but it's hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in a ponytail, but it's hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in a ponytail and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in a ponytail and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in a ponytail and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in a ponytail and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in a short ponytail, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in a short ponytail held in place by a heart-shaped clip.`); + break; + default: + r.push(`is in a short ponytail.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is combed back and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + default: + r.push(`is too short to be kept in a proper ponytail, so it's simply combed back.`); + } } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`fits under ${his} hood.`); - break; - case "a courtesan dress": - r.push(`is cut perfectly straight above ${his} eyebrows.`); - break; - case "a penitent nuns habit": - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is cut straight above ${his} eyebrows and barely hidden by ${his} head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is cut straight above ${his} eyebrows, which pokes out from under ${his} hood.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is cut straight above ${his} eyebrows and mostly hidden by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is cut straight above ${his} eyebrows and mostly covered by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is cut straight above ${his} eyebrows and topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is cut straight above ${his} eyebrows and accompanied by a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "kitty lingerie": - r.push(`is cut straight above ${his} eyebrows and topped with an adorable cat-ear headband.`); - break; - default: - r.push(`is cut straight above ${his} eyebrows.`); + break; + case "braided": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into braids.`); + break; + case "chains": + r.push(`is back in braids secured by steel rings.`); + break; + case "Western clothing": + r.push(`is back in huge braids that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in huge braids that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in big poofy braids secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in huge braids secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is twisted into huge braids, that rest on ${his} shoulders.`); + break; + case "a kimono": + r.push(`is in huge braids secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in huge braids secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in huge braids tied back with rope.`); + break; + case "restrictive latex": + r.push(`sticks out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in huge braids secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in huge braids secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in floor-length braids secured by paracord.`); + break; + case "harem gauze": + r.push(`is gathered into two tight braids wrapped in golden thread that almost reach the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in braids that nearly reach the ground.`); + break; + case "a chattel habit": + r.push(`is in a couple of braids that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in long braids, but they're hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into beautiful long braids, one of which comes around to run down ${his} chest.`); + break; + case "slutty business attire": + r.push(`is gathered into floor-length braids by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into secure braids and doubled up so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into floor-length braids by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in long braids, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in long braids, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in long braids and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in long braids and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in long braids and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in long braids and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in long braids and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in long braids and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in long braids and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in long braids and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in long braids and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in braids that almost reach the ground, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is gathered into floor-length braids by pink cloth ties emblazoned with little hearts.`); + break; + default: + r.push(`is in braids that almost reach the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with simple hair ties into braids.`); + break; + case "chains": + r.push(`is back in braids secured by steel rings.`); + break; + case "Western clothing": + r.push(`is back in long braids that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in long braids that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in big, long braids secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in big braids secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is twisted into braids, that rest on ${his} shoulders.`); + break; + case "a kimono": + r.push(`is in long braids secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in long braids secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in long braids tied back with rope.`); + break; + case "restrictive latex": + r.push(`is braided and sticks out of holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in long braids secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in long braids secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is back in long braids secured by paracord.`); + break; + case "harem gauze": + r.push(`is tied into long braids wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long braids.`); + break; + case "a chattel habit": + r.push(`is in long braids that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in long braids, but they're hidden by ${his} surplice.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`is in beautiful braids, one of which comes around to fall between ${his} breasts.`); + break; + case "slutty business attire": + r.push(`is tied into long braids and secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is tied into long braids and secured so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + r.push(`is tied into long braids and secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in braids, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in braids, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in braids and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in braids and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in braids and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in braids and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in braids and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in braids and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in braids and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in braids and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in braids and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in long braids, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is tied into long braids and secured by pink cloth ties emblazoned with little hearts.`); + break; + default: + r.push(`is in long braids.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into short braids.`); + break; + case "chains": + r.push(`is back in short braids secured by steel rings.`); + break; + case "Western clothing": + r.push(`is back in short braids that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in short braids that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in short braids secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in short braids secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is twisted into short braids, that rest on ${his} shoulders.`); + break; + case "a kimono": + r.push(`is in short braids secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in short braids secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in short braids secured with rope.`); + break; + case "restrictive latex": + r.push(`is braided and sticks out of holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is back in short braids secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is back in short braids secured by steel, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is in short braids secured by paracord.`); + break; + case "harem gauze": + r.push(`is gathered into short braids wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice short, slutty tails.`); + break; + case "a chattel habit": + r.push(`is in short braids that are hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in short braids hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is combed into short braids set low at the nape of ${his} neck.`); + break; + case "slutty business attire": + r.push(`is gathered into short braids by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into short braids so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into short braids by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in short braids, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in short braids, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in short braids and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in short braids and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in short braids and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in short braids and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in short braids and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in short braids and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in short braids and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in short braids and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in short braids and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in short braids, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is gathered into long braids by pink cloth ties emblazoned with little hearts.`); + break; + default: + r.push(`is in short braids.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is combed back and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + default: + r.push(`is too short to be kept in proper braids, so it's simply combed back.`); + } } - } else { - switch (slave.clothes) { - case "a courtesan dress": - r.push(`is cut perfectly straight across ${his} forehead.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is totally hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is totally hidden by ${his} hood.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is cut straight across ${his} forehead and topped with a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is cut straight across ${his} forehead, peeking out from beneath ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is cut straight across ${his} forehead and topped with a festive hat.`); - break; - case "a scalemail bikini": - r.push(`is cut straight across ${his} forehead and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is cut straight across ${his} forehead and topped with an adorable cat-ear headband.`); - break; - default: - r.push(`is cut straight across ${his} forehead.`); + break; + case "dreadlocks": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is in dreadlocks, reaching down almost to the ground.`); + break; + case "chains": + r.push(`is in long dreadlocks, connected to ${his} chains at the ends by steel rings.`); + break; + case "Western clothing": + r.push(`is long dreadlocks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is long dreadlocks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is in dreadlocks, some tied with bands of colored string.`); + break; + case "a slutty qipao": + r.push(`is in long dreadlocks, some with jade ornaments etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in long dreadlocks, with a couple of small ornaments important to ${him}.`); + break; + case "a kimono": + r.push(`is in long dreadlocks, some in ivory rings carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is in long dreadlocks some in simple leather ties.`); + break; + case "shibari ropes": + r.push(`is in long dreadlocks, some simply tied with string.`); + break; + case "restrictive latex": + r.push(`is in dreadlocks, poking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is in dreadlocks, some in ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in dreadlocks bunched up by leather, and topped with a gold headband.`); + break; + case "battledress": + r.push(`is in floor-length dreadlocks, some secured by paracord.`); + break; + case "harem gauze": + r.push(`is in dreadlocks wrapped in golden thread that almost reach the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in dreadlocks that nearly reach the ground.`); + break; + case "a chattel habit": + r.push(`is in long dreadlocks that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in long dreadlocks, barely hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is in dreadlocks, spreading out in many directions and almost reaching the ground.`); + break; + case "slutty business attire": + r.push(`is in floor-length dreadlocks, some in gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is in dreadlocks and tied up so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in floor-length dreadlocks, some in white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in long dreadlocks, barely hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in long dreadlocks, well hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in long dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in long dreadlocks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in long dreadlocks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in dreadlocks that reach almost to the ground, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in long dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is in dreadlocks that almost reach the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is in dreadlocks, reaching past ${his} shoulders.`); + break; + case "chains": + r.push(`is in dreadlocks, attached to ${his} chains at the ends by steel rings.`); + break; + case "Western clothing": + r.push(`is back in dreadlocks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in dreadlocks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is in dreadlocks, some tied with bands of colored string.`); + break; + case "a slutty qipao": + r.push(`is in dreadlocks, some with jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in dreadlocks, with a couple of small ornaments important to ${him}.`); + break; + case "a kimono": + r.push(`is in dreadlocks, some in ivory rings carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is in dreadlocks, some tied with simple leather ties.`); + break; + case "shibari ropes": + r.push(`is in dreadlocks, some simply tied with string.`); + break; + case "restrictive latex": + r.push(`is in dreadlocks, sticking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is in dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in dreadlocks bunched up by leather, and topped with a gold headband.`); + break; + case "battledress": + r.push(`is in dreadlocks, some tied with paracord.`); + break; + case "harem gauze": + r.push(`is in dreadlocks, some tied with golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in dreadlocks.`); + break; + case "a chattel habit": + r.push(`is in dreadlocks that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in dreadlocks, but they're hidden by ${his} surplice.`); + break; + case "a halter top dress": + r.push(`is in dreadlocks, spreading out in many directions.`); + break; + case "a ball gown": + r.push(`is in dreadlocks, spreading out in many directions.`); + break; + case "slutty business attire": + r.push(`is in dreadlocks, some in gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is in dreadlocks and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in dreadlocks, some with white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in dreadlocks, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in dreadlocks, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in dreadlocks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in dreadlocks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in dreadlocks and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is in dreadlocks.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is in short dreadlocks, some in simple hair ties.`); + break; + case "chains": + r.push(`is in short dreadlocks, some with steel rings.`); + break; + case "Western clothing": + r.push(`is in short dreadlocks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is in short dreadlocks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is in short dreadlocks, some tied with colored string.`); + break; + case "a slutty qipao": + r.push(`is in short dreadlocks, some in jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in short dreadlocks, with a couple of small ornaments important to ${him}.`); + break; + case "a kimono": + r.push(`is in short dreadlocks, some with ivory rings carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is in short dreadlocks, some with simple leather ties.`); + break; + case "shibari ropes": + r.push(`is in dreadlocks, some simply tied with string.`); + break; + case "restrictive latex": + r.push(`is in short dreadlocks, sticking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is in short dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in short dreadlocks bunched up by leather, and topped with a gold headband.`); + break; + case "battledress": + r.push(`is in short dreadlocks, some tied with paracord.`); + break; + case "harem gauze": + r.push(`is in short dreadlocks, some in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in short, dreadlocks.`); + break; + case "a chattel habit": + r.push(`is in short dreadlocks that are hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in short dreadlocks hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is in short dreadlocks, spreading around ${his} head.`); + break; + case "slutty business attire": + r.push(`is in short dreadlocks, some with gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is in short dreadlocks and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in short dreadlocks, some in white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in short dreadlocks, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in short dreadlocks, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in short dreadlocks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in short dreadlocks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in short dreadlocks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in short dreadlocks, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in short dreadlocks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is in short dreadlocks.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is combed back and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + default: + r.push(`is too short to be kept in proper dreadlocks, so it's simply combed back.`); + } } - } - break; - case "hime": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "a slutty qipao": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, ornamented with little silver talismans here and there.`); - break; - case "restrictive latex": - r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); - break; - case "harem gauze": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, covered by a flimsy hairnet.`); - break; - case "a halter top dress": - case "a ball gown": - case "a slave gown": - r.push(`cascades down ${his} bare back in a hime cut with shoulder-length side-locks.`); - break; - case "a courtesan dress": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks.`); - break; - case "a bimbo outfit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a kimono": - case "a long qipao": - r.push(`cascades elegantly down ${his} back in a hime cut with shoulder-length side-locks, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - case "pasties": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks decorated with a little black bows.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, completed with a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is topped by a cat ear headband.`); - break; - default: - r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks.`); + break; + case "curled": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is curled into long flowing locks, reaching down almost to the ground.`); + break; + case "chains": + r.push(`is curled into long flowing locks secured by steel rings.`); + break; + case "Western clothing": + r.push(`is curled into long flowing locks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is curled into long flowing locks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is curled into long flowing locks, tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is curled into long flowing locks secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in long curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is curled into long flowing locks secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is curled into long flowing locks secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is in long dreadlocks, some simply tied with string.`); + break; + case "restrictive latex": + r.push(`is curled into long flowing locks poking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is curled into long flowing locks secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is curled into long flowing locks, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is curled into floor-length locks secured by paracord.`); + break; + case "harem gauze": + r.push(`is curled into long flowing locks wrapped in golden thread that almost reach the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long curly locks that nearly reach the ground.`); + break; + case "a chattel habit": + r.push(`is curled into long flowing locks that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is curled into long flowing locks barely hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is curled into long flowing locks, almost reaching the ground.`); + break; + case "slutty business attire": + r.push(`is curled into long flowing locks, secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is curled into long flowing locks and tied up so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is curled into long flowing locks, secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is curled into long flowing locks, barely hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is curled into long flowing locks, well hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is curled into long flowing locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is curled into long flowing locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is curled into long flowing locks that almost reach the ground, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is curled into long flowing locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is curled into long flowing locks that almost reach the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is curled into long locks, reaching past ${his} shoulders.`); + break; + case "chains": + r.push(`is curled into long locks, secured by steel rings.`); + break; + case "Western clothing": + r.push(`is curled into long locks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is curled into long locks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is curled into long locks, tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is curled into long locks, secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is curled into long locks, secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is curled into long locks, secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is curled into long locks, tied back with rope.`); + break; + case "restrictive latex": + r.push(`is curled into long locks, sticking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is curled into long locks secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is curled into long flowing locks, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is curled into long locks, secured by paracord.`); + break; + case "harem gauze": + r.push(`is curled into long locks, secured by golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long curled locks.`); + break; + case "a chattel habit": + r.push(`is curled into long locks that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is curled into long locks, but they're hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is curled into long locks, reaching past ${his} shoulders.`); + break; + case "slutty business attire": + r.push(`is curled into long locks secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is curled into long locks and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is curled into long locks, secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is curled into long locks, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is curled into long locks, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is curled into long locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is curled into long locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is curled into long locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is curled into long locks, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is curled into long locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is curled into long locks.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is curled into short locks secured by simple hair ties.`); + break; + case "chains": + r.push(`is curled into short locks secured by steel rings.`); + break; + case "Western clothing": + r.push(`is curled into short locks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is curled into short locks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is curled into short locks tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is curled into short locks secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is in short curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is curled into short locks secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is curled into short locks secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is curled into short locks tied with rope.`); + break; + case "restrictive latex": + r.push(`is curled into short locks, but they are covered by ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is curled into short locks secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is curled into short flowing locks, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is curled into short locks secured by paracord.`); + break; + case "harem gauze": + r.push(`is curled into short locks secured by golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in short, curled locks.`); + break; + case "a chattel habit": + r.push(`is curled into short locks that are hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is curled into short locks hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is curled into short locks.`); + break; + case "slutty business attire": + r.push(`is curled into short locks secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is curled into short locks and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is curled into short locks secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is curled into short locks, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is curled into short locks, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is curled into short locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is curled into short locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is curled into short locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is curled into short locks, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is curled into short locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is curled into short locks.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is in short curls and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is in short curls and topped by a cat ear headband.`); + break; + default: + r.push(`is in short curls.`); + } } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "a slutty qipao": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, ornamented with little silver talismans here and there.`); - break; - case "restrictive latex": - case "a latex catsuit": - r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); - break; - case "harem gauze": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, covered by a flimsy hairnet.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`flows down ${his} bare back in a hime cut with cheek-length side-locks.`); - break; - case "a courtesan dress": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks.`); - break; - case "a bimbo outfit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - case "a kimono": - case "a long qipao": - r.push(`flows elegantly down ${his} back in a hime cut with cheek-length side-locks, kept sensibly in place by a set of ivory hairpins.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks decorated with a little black bows.`); - break; - case "conservative clothing": - case "nice business attire": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "slutty business attire": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of gaudy golden barrettes.`); - break; - case "battledress": - case "a military uniform": - case "a schutzstaffel uniform": - case "a slutty schutzstaffel uniform": - case "a red army uniform": - case "battlearmor": - case "a mounty outfit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a schoolgirl outfit": - case "lederhosen": - case "a dirndl": - case "a biyelgee costume": - case "striped panties": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a pastel-colored headband.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, completed with a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is topped by a cat ear headband.`); - break; - default: - r.push(`flows down ${his} back in a hime cut with cheek-length side-locks.`); + break; + case "permed": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is permed into long flowing curls, reaching down almost to the ground.`); + break; + case "chains": + r.push(`is permed into long flowing curls secured by steel rings.`); + break; + case "Western clothing": + r.push(`is permed into long flowing curls that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is permed into long flowing curls that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed into long flowing curls, tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is permed into long flowing curls secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is permed into long curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is permed into long flowing curls secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is permed into long flowing curls secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is in long dreadlocks, some simply tied with string.`); + break; + case "restrictive latex": + r.push(`is permed into long flowing curls poking out of a hole in ${his} latex hood.`); + break; + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "a string bikini": + case "cutoffs and a t-shirt": + case "striped panties": + r.push(`is permed into long flowing curls secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is permed into long flowing curls and topped by a gold headband.`); + break; + case "battledress": + r.push(`is permed into floor-length curls secured by paracord.`); + break; + case "harem gauze": + r.push(`is permed into long flowing curls wrapped in golden thread that almost reach the ground.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long curly curls that nearly reach the ground.`); + break; + case "a chattel habit": + r.push(`is permed into long flowing curls that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is permed into long flowing curls barely hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is permed into long flowing curls, almost reaching the ground.`); + break; + case "slutty business attire": + r.push(`is permed into long flowing curls, secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is permed into long flowing curls and tied up so ${he} can do business without them getting in the way.`); + break; + case "a nice nurse outfit": + case "a slutty nurse outfit": + r.push(`is permed into long flowing curls, secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is permed into long flowing curls, barely hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is permed into long flowing curls, well hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is permed and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is permed and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is permed and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is permed and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is permed and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is permed and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is permed and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is permed and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is permed and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is permed and topped by a cat ear headband; ${his} curls almost reach the ground.`); + break; + case "a bimbo outfit": + r.push(`is permed and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is permed; ${his} curls almost reach the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is permed, ${his} curls reaching past ${his} shoulders.`); + break; + case "chains": + r.push(`is permed into long locks, secured by steel rings.`); + break; + case "Western clothing": + r.push(`is permed into long locks that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is permed into long locks that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed and tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is permed into long locks, secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is permed into curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is permed and secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is permed and secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is permed and tied back with rope.`); + break; + case "restrictive latex": + r.push(`is permed, sticking out of a hole in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is permed and secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is permed and topped by a gold headband.`); + break; + case "battledress": + r.push(`is permed and secured by paracord.`); + break; + case "harem gauze": + r.push(`is permed and secured by golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in long permed curls.`); + break; + case "a chattel habit": + r.push(`is permed, ${his} curls flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is permed, but they're hidden by ${his} surplice.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`is permed, reaching past ${his} shoulders.`); + break; + case "slutty business attire": + r.push(`is permed and secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is permed and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is permed, secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is permed, ${his} long curls hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is permed, ${his} long curls hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is permed and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is permed and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is permed and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is permed and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is permed and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is permed and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is permed and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is permed and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is permed and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is permed and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is permed and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is permed.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is permed into short waves secured by simple hair ties.`); + break; + case "chains": + r.push(`is permed into short waves secured by steel rings.`); + break; + case "Western clothing": + r.push(`is permed into short waves that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is permed into short waves that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed into short waves tied with a scrunchy in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is permed into short waves secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "a huipil": + r.push(`is permed into short curls, and the locks flow down ${his} shoulders.`); + break; + case "a kimono": + r.push(`is permed into short waves secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is permed into short waves secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is permed into short waves tied with rope.`); + break; + case "restrictive latex": + r.push(`is permed into short waves, but they are covered by ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + case "striped panties": + r.push(`is permed into short waves secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is permed into short waves and topped by a gold headband.`); + break; + case "battledress": + r.push(`is permed into short waves secured by paracord.`); + break; + case "harem gauze": + r.push(`is permed into short waves secured by golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in short, permed waves.`); + break; + case "a chattel habit": + r.push(`is permed into short waves that are hidden by ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is permed into short waves hidden by ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is permed into short waves.`); + break; + case "slutty business attire": + r.push(`is permed into short waves secured by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is permed into short waves and tied so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is permed into short waves secured by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is permed into short waves, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is permed into short waves, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is permed into short waves and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is permed into short waves and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is permed into short waves and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is permed into short waves and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is permed into short waves and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is permed into short waves.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is permed into short curls and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is permed into short curls and topped by a cat ear headband.`); + break; + default: + r.push(`is permed into short curls.`); + } } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "a latex catsuit": - case "restrictive latex": - r.push(`is crammed under ${his} latex hood.`); - break; - case "harem gauze": - r.push(`is styled into a hime cut with cheek-length side-locks and covered by a flimsy hairnet.`); - break; - case "a courtesan dress": - r.push(`is styled into a meticulously brushed hime cut with cheek-length side-locks.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a slutty maid outfit": - case "a nice maid outfit": - r.push(`is styled into a hime cut with cheek-length side-locks and decorated with a little black bow in back.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a traditional white nurse's headband, complete with red cross.`); - break; - case "Western clothing": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is styled into a hime cut with cheek-length side-locks and topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - r.push(`is styled into a hime cut with cheek-length side-locks, with a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cat ear headband.`); - break; - default: - r.push(`is styled into a hime cut with cheek-length side-locks.`); + break; + case "luxurious": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "chains": + r.push(`is in luxurious layered locks, caught painfully in ${his} chains here and there.`); + break; + case "body oil": + case "a huipil": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} back.`); + break; + case "a slutty qipao": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, ornamented with little silver talismans here and there.`); + break; + case "restrictive latex": + r.push(`is allowed a gap at the back of ${his} head so ${his} luxurious layered locks can escape to cascade down ${his} back.`); + break; + case "harem gauze": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, covered by a flimsy hairnet.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in luxurious layered locks flowing elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a courtesan dress": + r.push(`is in luxurious layered locks flowing elegantly down ${his} back.`); + break; + case "a bimbo outfit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is in luxurious layered locks but not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in luxurious layered locks but not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in luxurious layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in luxurious layered locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} back, decorated with little black bows here and there.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is in luxurious layered locks kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in luxurious layered locks topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`cascades out from under a cowboy hat in luxurious layered locks.`); + break; + case "a Santa dress": + r.push(`cascades out from under a festive hat in luxurious layered locks.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is in luxurious layered locks, with a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is in luxurious locks topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is in luxurious layered locks, cascading almost to the ground, and topped by a cat ear headband.`); + break; + default: + r.push(`is in luxurious layered locks, cascading almost to the ground.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "body oil": + case "a huipil": + r.push(`is in luxurious layered locks.`); + break; + case "a slutty qipao": + r.push(`is in luxurious layered locks flowing over ${his} shoulders, ornamented with little silver talismans here and there.`); + break; + case "restrictive latex": + r.push(`is allowed a gap at the back of ${his} head so ${his} luxurious layered locks can escape down ${his} back.`); + break; + case "harem gauze": + r.push(`is in luxurious layered locks flowing down ${his} back, covered by a flimsy hairnet.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is in luxurious layered locks flowing gorgeously down ${his} bare back.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in luxurious layered locks flowing elegantly down ${his} back, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a courtesan dress": + r.push(`is in luxurious layered locks flowing elegantly down ${his} back.`); + break; + case "a bimbo outfit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is in luxurious layered locks flowing gorgeously but not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in luxurious layered locks flowing gorgeously but not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in luxurious layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in luxurious layered locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in luxurious layered locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is in luxurious layered locks, decorated with a little black bow in back.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`is in luxurious layered locks kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is in luxurious layered locks kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in luxurious layered locks topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is in luxurious layered locks flowing out from under a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is in luxurious layered locks flowing out from under a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is in luxurious layered locks held back by a flower, tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is in luxurious locks topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is brushed back over ${his} shoulders and topped by a cat ear headband.`); + break; + default: + r.push(`is brushed back over ${his} shoulders.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "body oil": + case "a huipil": + r.push(`is in luxuriously styled short locks.`); + break; + case "a slutty qipao": + r.push(`is in luxuriously styled short locks, brushed back and ornamented with a little jade talisman.`); + break; + case "restrictive latex": + r.push(`is in luxuriously styled short locks, crammed under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is in luxuriously styled short locks, covered by a flimsy hairnet.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is in luxuriously styled short locks.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is in luxuriously styled short locks kept sensibly in place by a set of ivory hairpins.`); + break; + case "a courtesan dress": + r.push(`is in luxurious styled short locks.`); + break; + case "a bimbo outfit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is in luxuriously styled short locks but not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in luxuriously styled short locks but not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in luxurious short layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in luxurious short layered locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is in luxuriously styled short locks decorated with a little black bow in back.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`is in luxuriously styled short locks kept out of ${his} face by simple barrette.`); + break; + case "slutty business attire": + r.push(`is in luxuriously styled short locks kept out of ${his} face by a gaudy golden barrette.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a mounty outfit": + case "battlearmor": + r.push(`is in luxuriously styled short locks kept out of ${his} face by a sturdy hairpin.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is in luxuriously styled short locks kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in luxuriously styled short locks topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is in luxuriously styled short locks topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is in luxuriously styled short locks topped by a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is in luxuriously styled short locks, bearing a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is in short, luxurious locks topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is brushed back and topped by a cat ear headband.`); + break; + default: + r.push(`is brushed back.`); + } + } else { + switch (slave.clothes) { + case "body oil": + case "a huipil": + case "a military uniform": + case "a halter top dress": + case "a ball gown": + case "conservative clothing": + case "nice business attire": + case "slutty business attire": + case "battledress": + case "battlearmor": + case "a long qipao": + case "lederhosen": + case "a dirndl": + case "a mounty outfit": + case "a biyelgee costume": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a courtesan dress": + r.push(`is in luxuriously styled short locks.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a bimbo outfit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "restrictive latex": + r.push(`fits under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is in luxuriously styled short locks covered by a flimsy hairnet.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is in luxuriously styled short locks but not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in luxuriously styled short locks but not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in luxurious short layered locks and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in luxurious short layered locks and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in luxurious short layered locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is in luxuriously styled short locks secured by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is in luxuriously styled short locks under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is in luxuriously styled short locks under ${his} festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is in luxuriously styled short locks, and ${he} has a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is in short, luxurious locks topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is luxuriously styled and layered, and topped by a cat ear headband.`); + break; + default: + r.push(`is luxuriously styled and layered.`); + } } - } else { - switch (slave.clothes) { - case "restrictive latex": - case "a latex catsuit": - r.push(`fits under ${his} latex hood.`); - break; - case "a courtesan dress": - r.push(`is styled into a meticulously brushed hime cut with cheek-length side-locks.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a fallen nuns habit": - case "a chattel habit": - r.push(`is not visible under ${his} modest head covering.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is not visible under ${his} hood.`); - break; - case "Imperial Plate": - r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is hidden by a traditional white nurse's headband, complete with red cross and cheek-length side-locks.`); - break; - case "Western clothing": - r.push(`is hidden by a cowboy hat.`); - break; - case "a Santa dress": - r.push(`is styled into a hime cut with cheek-length side-locks and topped with a festive hat.`); - break; - case "a string bikini": - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - case "long qipao": - case "a dirndl": - case "lederhosen": - case "a biyelgee costume": - case "striped panties": - r.push(`is styled into a hime cut with cheek-length side-locks, and ${he} has a flower tucked behind one ear:`); - r.push(App.Desc.flower(slave)); - break; - case "a scalemail bikini": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cat ear headband.`); - break; - default: - r.push(`is styled into a hime cut with cheek-length side-locks.`); + break; + case "strip": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "chains": + case "uncomfortable straps": + case "restrictive latex": + case "shibari ropes": + case "a latex catsuit": + r.push(`is shaved into a strip that runs down ${his} back and ends attached to a steel ring.`); + break; + case "Western clothing": + r.push(`is shaved into a strip under ${his} cowboy hat, and cascades magnificently down ${his} back.`); + break; + case "a Santa dress": + r.push(`is shaved into a strip under ${his} festive hat, and cascades magnificently down ${his} back.`); + break; + case "body oil": + case "a huipil": + r.push(`is shaved into a permed strip which cascades magnificently down ${his} back.`); + break; + case "a kimono": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of traditional Chinese coins woven into it.`); + break; + case "battledress": + r.push(`is shaved into a strip that cascades down ${his} back, and has been stiffened so it won't get in ${his} way.`); + break; + case "harem gauze": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved into a strip that cascades out from under ${his} cowl, and has scores of little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved into a strip that falls down ${his} back, decently covered by an extra-long surplice.`); + break; + case "a schoolgirl outfit": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved into a strip that cascades magnificently down ${his} back, with scores of tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved into a strip that's hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved into a strip that's hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved into a strip and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is shaved into a strip and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved into a strip and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back, and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved into a strip atop ${his} head that cascades magnificently down ${his} back.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "chains": + case "uncomfortable straps": + case "restrictive latex": + case "shibari ropes": + case "a latex catsuit": + r.push(`is shaved into a long braided strip that ends attached to a steel ring.`); + break; + case "Western clothing": + r.push(`is shaved into a strip under ${his} cowboy hat, but is visible as a party in the back.`); + break; + case "a Santa dress": + r.push(`is shaved into a strip under ${his} festive hat, but is visible as a party in the back.`); + break; + case "body oil": + case "a huipil": + r.push(`is shaved into a permed strip which falls down ${his} back.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is shaved into a long braided strip with little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved into a long braided strip with traditional Chinese coins woven into it.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a mounty outfit": + case "battlearmor": + r.push(`is shaved into a long braided strip.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "harem gauze": + r.push(`is shaved into a long braided strip with little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved into a long braided strip with little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved into a long strip that sticks out from under ${his} cowl, and has little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved into a long braided strip, decently covered by a roomy surplice.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + r.push(`is shaved into a long braided strip with tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved into a long braided strip with tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved into a long braided strip, hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved into a long braided strip, hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved into a long braided strip and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is shaved into a long braided strip and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved into a long braided strip and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved into a long braided strip and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved into a long braided strip.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "chains": + case "uncomfortable straps": + case "restrictive latex": + case "shibari ropes": + case "a latex catsuit": + r.push(`is shaved into a strip down the middle of ${his} head that ends attached to a steel ring.`); + break; + case "Western clothing": + r.push(`is shaved into a strip under ${his} cowboy hat, with nothing but a little rat tail visible in back.`); + break; + case "a Santa dress": + r.push(`is shaved into a strip under ${his} festive hat, with nothing but a little rat tail visible in back.`); + break; + case "body oil": + case "a huipil": + r.push(`is shaved into a permed strip.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is shaved into a strip down the middle of ${his} head with little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved into a strip down the middle of ${his} head with traditional Chinese coins woven into it.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a mounty outfit": + case "battlearmor": + r.push(`is shaved into a strip down the middle of ${his} head.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "harem gauze": + r.push(`is shaved into a strip down the middle of ${his} head with little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved into a strip down the middle of ${his} head with little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved into a strip with little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved into a strip down the middle of ${his} head, decently covered by ${his} surplice.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is shaved into a strip down the middle of ${his} head with tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved into a strip down the middle of ${his} head with tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved into a strip down the middle of ${his} head, hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved into a strip down the middle of ${his} head, hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved into a strip and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is shaved into a strip and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved into a strip and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved into a strip and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved into a strip and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved into a strip.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a scalemail bikini": + r.push(`is shaved into a mohawk and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is shaved into a mohawk and topped by a cat ear headband.`); + break; + default: + r.push(`is shaved into a mohawk.`); + } } - } - break; - case "drills": - if (slave.hLength > 100) { - switch (slave.clothes) { - case "chains": - r.push(`is wound into enormous coils and kept under control by a series of steel rings.`); - break; - case "a latex catsuit": - r.push(`is wound into enormous coils and kept under control by latex hair cuffs.`); - break; - case "Western clothing": - r.push(`is wound into enormous coils that explode out from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is wound into enormous coils that explode out from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and wound into enormous coils and kept under control by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is wound into enormous coils and kept under control by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is wound into enormous coils and kept under control with scrunchies.`); - break; - case "a huipil": - r.push(`is wound into enormous coils that nearly obscure ${him}.`); - break; - case "a kimono": - r.push(`is wound into enormous coils and kept under control by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is wound into enormous coils restrained by leather ties.`); - break; - case "shibari rope": - r.push(`is wound into enormous coils restrained with rope.`); - break; - case "restrictive latex": - r.push(`coils out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is wound into enormous coils and kept under control by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is wound into enormous coils and topped by a gold headband.`); - break; - case "battledress": - r.push(`is wound into enormous coils secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is wound into enormous coils wrapped in golden thread that nearly obscure ${him}.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in two enormous coils that nearly obscure ${him}.`); - break; - case "a chattel habit": - r.push(`is wound into enormous coils that explode out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is wound into enormous coils that explode out of ${his} surplice.`); - break; - case "a slave gown": - case "a ball gown": - case "a halter top dress": - r.push(`is wound into enormous, exquisite coils that come to rest across ${his} chest.`); - break; - case "slutty business attire": - r.push(`is wound into enormous coils decorated with gaudy gold baubles.`); - break; - case "nice business attire": - r.push(`is wound into enormous coils and thoroughly secured behind ${his} back so ${he} can do business without them in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is wound into enormous coils adorned with dozens of little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is wound into enormous coils that explode from under ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is wound into enormous coils that explode out from under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is wound into enormous coils and kept under control by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is wound into enormous coils, bouncing freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is wound into enormous coils and kept under control by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is wound into enormous coils and kept under control by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is wound into enormous coils and kept under control by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is wound into enormous coils and kept under control by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is wound into enormous coils and kept under control by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is wound into enormous coils and kept under control by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is wound into enormous coils and kept under control by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is wound into enormous coils that nearly obscure ${him}, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is wound into enormous coils and kept under control by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is wound into a pair of enormous coils.`); + break; + case "undercut": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); + break; + case "Western clothing": + r.push(`is shaved to one side under ${his} cowboy hat, flowing out well past ${his} face and all the way down to ${his} breasts.`); + break; + case "a Santa dress": + r.push(`is shaved to one side under ${his} festive hat, flowing out well past ${his} face and all the way down to ${his} breasts.`); + break; + case "body oil": + case "a huipil": + case "a kimono": + r.push(`is shaved to one side in an extremely long undercut, with scores of little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved to one side in an extremely long undercut, with scores of traditional Chinese coins woven into it.`); + break; + case "battledress": + r.push(`is shaved to one side in an extremely long undercut, stiffened so it won't get in ${his} way.`); + break; + case "harem gauze": + r.push(`is shaved to one side in an extremely long undercut with scores of little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved to one side in an extremely long undercut with scores of little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved to one side that cascades out from under ${his} cowl, and has scores of little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved to one side in an extremely long undercut decently covered by an extra-long surplice.`); + break; + case "a schoolgirl outfit": + r.push(`is shaved to one side in an extremely long undercut with scores of tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved to one side in an extremely long undercut with scores of tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved to one side in an extremely long undercut that's hidden by ${his} niqab.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved to one side in an extremely long undercut that's hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + case "a one-piece swimsuit": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved to one side in an extremely long undercut kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved to one side atop ${his} head that cascades magnificently down one side, topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved to one side, flowing out magnificently down one side and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved on one side into a long undercut that falls well past ${his} breasts.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); + break; + case "Western clothing": + r.push(`is shaved to one side under ${his} cowboy hat, but pokes out down to ${his} neck on one side.`); + break; + case "a Santa dress": + r.push(`is shaved to one side under ${his} festive hat, but pokes out down to ${his} neck on one side.`); + break; + case "body oil": + case "a huipil": + r.push(`is shaved into a permed strip which falls down ${his} back.`); + break; + case "a kimono": + case "a long qipao": + r.push(`is shaved into a long, flowing undercut with little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved into a long, flowing undercut with traditional Chinese coins woven into it.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a mounty outfit": + case "battlearmor": + r.push(`is shaved into a long, flowing undercut.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "harem gauze": + r.push(`is shaved into a long, flowing undercut with little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved into a long, flowing undercut with little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved into a long, flowing undercut that sticks out from under ${his} cowl, and has little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved into a long, flowing undercut, decently covered by a roomy surplice.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + r.push(`is shaved into a long, flowing undercut with tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved into a long, flowing undercut with tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved into a long, flowing undercut, hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved into a long, flowing undercut, hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved into a long, flowing undercut and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is shaved into a long, flowing undercut and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved into a long, flowing undercut and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved into a long, flowing undercut and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved into a long, flowing undercut and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved to one side, the other half falling down to their neck.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`is crammed under ${his} latex hood.`); + break; + case "Western clothing": + r.push(`is shaved to one side under ${his} cowboy hat, with just the slightest trace of ${his} hair poking out on the unshaven side.`); + break; + case "a Santa dress": + r.push(`is shaved to one side under ${his} festive hat, with just the slightest trace of ${his} hair poking out on the unshaven side.`); + break; + case "body oil": + case "a huipil": + case "a kimono": + case "a long qipao": + r.push(`is shaved to one side in a flowing undercut with little ivory talismans woven into it.`); + break; + case "a slutty qipao": + r.push(`is shaved to one side in a flowing undercut with traditional Chinese coins woven into it.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "a mounty outfit": + case "battlearmor": + r.push(`is shaved to one side in an undercut that bristles against ${his} armor.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "harem gauze": + r.push(`is shaved to one side in a flowing undercut with little golden bells woven into it.`); + break; + case "a fallen nuns habit": + r.push(`is shaved to one side in a flowing undercut with little silver crosses hanging from it.`); + break; + case "a chattel habit": + r.push(`is shaved to one side with little golden ornaments in lewd shapes woven into it.`); + break; + case "a penitent nuns habit": + r.push(`is shaved to one side in a flowing undercut decently covered by ${his} surplice.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`is shaved to one side in a flowing undercut with tiny pastel bows woven into it.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is shaved to one side in a flowing undercut with tiny black bows woven into it.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is shaved to one side in a flowing undercut, kept hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is shaved to one side in a flowing undercut, kept hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is shaved to one side and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + case "a one-piece swimsuit": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is shaved to one side and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is shaved to one side and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is shaved to one side and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is shaved to one side and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is shaved to one side, the other half falling just over one eye.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is totally hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is totally hidden by ${his} hood.`); + break; + case "a scalemail bikini": + r.push(`is shaved to one side in a pixie-like undercut topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is shaved to one side into a pixie-like undercut completed by an adorable cat-ear headband.`); + break; + default: + r.push(`is shaved to one side in a pixie-like undercut.`); + } } - } else if (slave.hLength > 30) { - switch (slave.clothes) { - case "chains": - r.push(`is wound into large coils secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is wound into large coils and bound by latex hair cuffs.`); - break; - case "Western clothing": - r.push(`is wound into large coils that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is wound into large coils that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and wound into large coils secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is wound into large coils secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is wound into large coils secured with scrunchies.`); - break; - case "a huipil": - r.push(`is wound into large coils that rest on top of ${his} chest.`); - break; - case "a kimono": - r.push(`is wound into large coils secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is wound into large coils secured by leather ties.`); - break; - case "shibari rope": - r.push(`is wound into large coils tied back with rope.`); - break; - case "restrictive latex": - r.push(`coils out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is wound into large coils secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is wound into large coils and topped by a gold headband.`); - break; - case "battledress": - r.push(`is wound into large coils secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is wound into large coils wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`is wound into large coils that stick sacrilegiously out of ${his} surplice.`); - break; - case "a chattel habit": - r.push(`is wound into large coils that flow out from under ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is wound into large coils that spill out of ${his} surplice.`); - break; - case "a slave gown": - case "a halter top dress": - case "a ball gown": - r.push(`is wound into large coils which rest atop ${his} breasts.`); - break; - case "slutty business attire": - r.push(`is wound into large coils decorated with gaudy gold baubles.`); - break; - case "nice business attire": - r.push(`is wound into large coils and secured behind ${his} back so ${he} can do business without them in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is wound into large coils adorned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is wound into large coils that protrude from under ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is wound into large coils that protrude from under ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is wound into large coils and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is wound into large coils and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is wound into large coils and kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is wound into large coils and kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is wound into large coils and kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is wound into large coils and kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is wound into large coils and kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is wound into large coils and kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is wound into large coils and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is wound into large coils and kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is wound into a pair of large coils.`); + break; + case "bangs": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); + break; + case "a courtesan dress": + r.push(`is cut perfectly straight across ${his} face, concealing ${his} eyes.`); + break; + case "a penitent nuns habit": + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is cut straight across ${his} face, ${his} blunt bangs hiding ${his} eyes from under ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is cut straight across ${his} face, ${his} blunt bangs hiding ${his} eyes from under ${his} hood.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet, though ${his} blunt bangs limit ${his} vision significantly.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is cut straight across ${his} face, hiding ${his} eyes, and accompanied by a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "kitty lingerie": + r.push(`is cut straight across ${his} face, hiding ${his} eyes, and topped with an adorable cat-ear headband.`); + break; + default: + r.push(`is cut straight across ${his} face, hiding ${his} eyes.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); + break; + case "a courtesan dress": + r.push(`is cut perfectly straight across ${his} face, partially hiding ${his} eyes.`); + break; + case "a penitent nuns habit": + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes from under ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes from under ${his} hood.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet, though ${his} blunt bangs limits ${his} vision a bit.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and accompanied by a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "kitty lingerie": + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes, and topped with an adorable cat-ear headband.`); + break; + default: + r.push(`is cut straight across ${his} face, partially hiding ${his} eyes.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`fits under ${his} hood.`); + break; + case "a courtesan dress": + r.push(`is cut perfectly straight above ${his} eyebrows.`); + break; + case "a penitent nuns habit": + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is cut straight above ${his} eyebrows and barely hidden by ${his} head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is cut straight above ${his} eyebrows, which pokes out from under ${his} hood.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is cut straight above ${his} eyebrows and mostly hidden by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is cut straight above ${his} eyebrows and mostly covered by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is cut straight above ${his} eyebrows and topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is cut straight above ${his} eyebrows and accompanied by a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "kitty lingerie": + r.push(`is cut straight above ${his} eyebrows and topped with an adorable cat-ear headband.`); + break; + default: + r.push(`is cut straight above ${his} eyebrows.`); + } + } else { + switch (slave.clothes) { + case "a courtesan dress": + r.push(`is cut perfectly straight across ${his} forehead.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is totally hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is totally hidden by ${his} hood.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is cut straight across ${his} forehead and topped with a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is cut straight across ${his} forehead, peeking out from beneath ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is cut straight across ${his} forehead and topped with a festive hat.`); + break; + case "a scalemail bikini": + r.push(`is cut straight across ${his} forehead and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is cut straight across ${his} forehead and topped with an adorable cat-ear headband.`); + break; + default: + r.push(`is cut straight across ${his} forehead.`); + } } - } else if (slave.hLength > 10) { - switch (slave.clothes) { - case "conservative clothing": - r.push(`is pulled back with a pair of simple hair ties into short coils.`); - break; - case "chains": - r.push(`is back in short coils secured by steel rings.`); - break; - case "a latex catsuit": - r.push(`is bound by latex hair cuffs into short matching coils.`); - break; - case "Western clothing": - r.push(`is back in short coils that emerge from under ${his} cowboy hat.`); - break; - case "a Santa dress": - r.push(`is back in short coils that emerge from under ${his} festive hat.`); - break; - case "body oil": - r.push(`is permed, and back in coils secured by scrunchies in noxious 80's pastel colors.`); - break; - case "a slutty qipao": - r.push(`is back in short coils secured by jade rings etched with images of`); - r.push(App.Desc.image(slave)); - break; - case "spats and a tank top": - r.push(`is back in short coils secured by scrunchies.`); - break; - case "a huipil": - r.push(`is twisted into two short coils that give ${him} the look of a little girl.`); - break; - case "a kimono": - r.push(`is in short coils secured by ivory combs carved with images of`); - r.push(App.Desc.image(slave)); - break; - case "uncomfortable straps": - r.push(`is back in short coils secured by leather ties.`); - break; - case "shibari rope": - r.push(`is back in short coils secured with rope.`); - break; - case "restrictive latex": - r.push(`coils out of two holes in ${his} latex hood.`); - break; - case "a string bikini": - case "cutoffs and a t-shirt": - case "a schoolgirl outfit": - case "a slutty maid outfit": - r.push(`is in short coils secured by hair ties with plastic buttons, bearing the garish inscription`); - r.push(App.Desc.inscrip(slave)); - break; - case "a scalemail bikini": - r.push(`is in short coils, and topped by a gold headband.`); - break; - case "battledress": - r.push(`is in short coils secured by paracord.`); - break; - case "harem gauze": - case "striped panties": - r.push(`is gathered into two short coils wrapped in golden thread.`); - break; - case "a fallen nuns habit": - r.push(`sticks sacrilegiously out of ${his} surplice in short coils.`); - break; - case "a chattel habit": - r.push(`is in a couple of short coils that spill out of ${his} cowl.`); - break; - case "a penitent nuns habit": - r.push(`is in short coils that spill out of ${his} surplice.`); - break; - case "slutty business attire": - r.push(`is gathered into short coils by gaudy gold clasps.`); - break; - case "nice business attire": - r.push(`is gathered into short coils so ${he} can do business without them getting in the way.`); - break; - case "a slutty nurse outfit": - case "a nice nurse outfit": - r.push(`is gathered into short coils by white cloth ties emblazoned with little red crosses.`); - break; - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is in a pair of short coils, but they're hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is in a pair of short coils, but they're hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is in short coils and kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`is in short coils and flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is in short coils and is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is in short coils and is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is in short coils and is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is in short coils and is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is in short coils and is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is in short coils and is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is in short coils and is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "kitty lingerie": - r.push(`is in short coils, and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is in short coils held in place with heart-shaped clips.`); - break; - default: - r.push(`is in a pair of short coils.`); + break; + case "hime": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "a slutty qipao": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, ornamented with little silver talismans here and there.`); + break; + case "restrictive latex": + r.push(`is allowed a gap at the back of ${his} head so it can escape to cascade down ${his} back.`); + break; + case "harem gauze": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, covered by a flimsy hairnet.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`cascades down ${his} bare back in a hime cut with shoulder-length side-locks.`); + break; + case "a courtesan dress": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks.`); + break; + case "a bimbo outfit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a kimono": + case "a long qipao": + r.push(`cascades elegantly down ${his} back in a hime cut with shoulder-length side-locks, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + case "pasties": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks decorated with a little black bows.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks, completed with a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks and is topped by a cat ear headband.`); + break; + default: + r.push(`cascades down ${his} back in a hime cut with shoulder-length side-locks.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "a slutty qipao": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, ornamented with little silver talismans here and there.`); + break; + case "restrictive latex": + case "a latex catsuit": + r.push(`is allowed a gap at the back of ${his} head so it can escape down ${his} back.`); + break; + case "harem gauze": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, covered by a flimsy hairnet.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`flows down ${his} bare back in a hime cut with cheek-length side-locks.`); + break; + case "a courtesan dress": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks.`); + break; + case "a bimbo outfit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + case "a kimono": + case "a long qipao": + r.push(`flows elegantly down ${his} back in a hime cut with cheek-length side-locks, kept sensibly in place by a set of ivory hairpins.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks decorated with a little black bows.`); + break; + case "conservative clothing": + case "nice business attire": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "slutty business attire": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of gaudy golden barrettes.`); + break; + case "battledress": + case "a military uniform": + case "a schutzstaffel uniform": + case "a slutty schutzstaffel uniform": + case "a red army uniform": + case "battlearmor": + case "a mounty outfit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a schoolgirl outfit": + case "lederhosen": + case "a dirndl": + case "a biyelgee costume": + case "striped panties": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is kept out of ${his} face by a pastel-colored headband.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks, completed with a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks and is topped by a cat ear headband.`); + break; + default: + r.push(`flows down ${his} back in a hime cut with cheek-length side-locks.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "a latex catsuit": + case "restrictive latex": + r.push(`is crammed under ${his} latex hood.`); + break; + case "harem gauze": + r.push(`is styled into a hime cut with cheek-length side-locks and covered by a flimsy hairnet.`); + break; + case "a courtesan dress": + r.push(`is styled into a meticulously brushed hime cut with cheek-length side-locks.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a slutty maid outfit": + case "a nice maid outfit": + r.push(`is styled into a hime cut with cheek-length side-locks and decorated with a little black bow in back.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a traditional white nurse's headband, complete with red cross.`); + break; + case "Western clothing": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is styled into a hime cut with cheek-length side-locks and topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + r.push(`is styled into a hime cut with cheek-length side-locks, with a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cat ear headband.`); + break; + default: + r.push(`is styled into a hime cut with cheek-length side-locks.`); + } + } else { + switch (slave.clothes) { + case "restrictive latex": + case "a latex catsuit": + r.push(`fits under ${his} latex hood.`); + break; + case "a courtesan dress": + r.push(`is styled into a meticulously brushed hime cut with cheek-length side-locks.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a fallen nuns habit": + case "a chattel habit": + r.push(`is not visible under ${his} modest head covering.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is not visible under ${his} hood.`); + break; + case "Imperial Plate": + r.push(`is usually hidden underneath ${his} heavy, powered helmet.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is hidden by a traditional white nurse's headband, complete with red cross and cheek-length side-locks.`); + break; + case "Western clothing": + r.push(`is hidden by a cowboy hat.`); + break; + case "a Santa dress": + r.push(`is styled into a hime cut with cheek-length side-locks and topped with a festive hat.`); + break; + case "a string bikini": + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + case "a long qipao": + case "a dirndl": + case "lederhosen": + case "a biyelgee costume": + case "striped panties": + r.push(`is styled into a hime cut with cheek-length side-locks, and ${he} has a flower tucked behind one ear:`); + r.push(App.Desc.flower(slave)); + break; + case "a scalemail bikini": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is styled into a hime cut with cheek-length side-locks and topped by a cat ear headband.`); + break; + default: + r.push(`is styled into a hime cut with cheek-length side-locks.`); + } } - } else { - switch (slave.clothes) { - case "a burkini": - case "a burqa": - case "a hijab and abaya": - case "a hijab and blouse": - case "a niqab and abaya": - r.push(`is hidden by ${his} modest garb.`); - break; - case "a klan robe": - case "a slutty klan robe": - r.push(`is hidden by ${his} hood.`); - break; - case "a police uniform": - case "overalls": - r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); - break; - case "a hanbok": - r.push(`flows down ${his} back, rustling freely in the wind.`); - break; - case "a one-piece swimsuit": - r.push(`is kept out of ${his} face by a couple of simple barrettes.`); - break; - case "a gothic lolita dress": - r.push(`is kept out of ${his} face by a dark-colored headband.`); - break; - case "a bra": - case "a button-up shirt": - case "a sweater": - case "a striped bra": - case "striped underwear": - case "a sweater and panties": - case "a t-shirt": - case "an oversized t-shirt and boyshorts": - case "an oversized t-shirt": - case "a t-shirt and jeans": - case "boyshorts": - case "cutoffs": - case "panties": - case "a t-shirt and panties": - case "panties and pasties": - case "pasties": - case "a sweater and cutoffs": - case "a button-up shirt and panties": - r.push(`is kept out of ${his} face by a couple of cute hairpins.`); - break; - case "a sports bra": - case "sport shorts and a t-shirt": - case "sport shorts and a sports bra": - case "sport shorts": - r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); - break; - case "a tube top and thong": - case "a tank-top": - case "a thong": - case "a tube top": - case "a tank-top and panties": - case "a t-shirt and thong": - case "leather pants and pasties": - case "leather pants": - case "jeans": - case "leather pants and a tube top": - r.push(`is kept out of ${his} face by a couple of black hairpins.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`is kept out of ${his} face by a couple of black barrettes.`); - break; - case "a skimpy loincloth": - r.push(`is kept out of ${his} face by a couple of bone hairpins.`); - break; - case "a scalemail bikini": - case "striped panties": - r.push(`is combed back and topped by a gold headband.`); - break; - case "kitty lingerie": - r.push(`is combed back and topped by a cat ear headband.`); - break; - case "a bimbo outfit": - r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); - break; - default: - r.push(`is too short to be kept in proper tails, so it's simply combed back.`); + break; + case "drills": + if (slave.hLength > 100) { + switch (slave.clothes) { + case "chains": + r.push(`is wound into enormous coils and kept under control by a series of steel rings.`); + break; + case "a latex catsuit": + r.push(`is wound into enormous coils and kept under control by latex hair cuffs.`); + break; + case "Western clothing": + r.push(`is wound into enormous coils that explode out from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is wound into enormous coils that explode out from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and wound into enormous coils and kept under control by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is wound into enormous coils and kept under control by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is wound into enormous coils and kept under control with scrunchies.`); + break; + case "a huipil": + r.push(`is wound into enormous coils that nearly obscure ${him}.`); + break; + case "a kimono": + r.push(`is wound into enormous coils and kept under control by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is wound into enormous coils restrained by leather ties.`); + break; + case "shibari ropes": + r.push(`is wound into enormous coils restrained with rope.`); + break; + case "restrictive latex": + r.push(`coils out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is wound into enormous coils and kept under control by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is wound into enormous coils and topped by a gold headband.`); + break; + case "battledress": + r.push(`is wound into enormous coils secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is wound into enormous coils wrapped in golden thread that nearly obscure ${him}.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in two enormous coils that nearly obscure ${him}.`); + break; + case "a chattel habit": + r.push(`is wound into enormous coils that explode out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is wound into enormous coils that explode out of ${his} surplice.`); + break; + case "a ball gown": + case "a halter top dress": + r.push(`is wound into enormous, exquisite coils that come to rest across ${his} chest.`); + break; + case "slutty business attire": + r.push(`is wound into enormous coils decorated with gaudy gold baubles.`); + break; + case "nice business attire": + r.push(`is wound into enormous coils and thoroughly secured behind ${his} back so ${he} can do business without them in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is wound into enormous coils adorned with dozens of little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is wound into enormous coils that explode from under ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is wound into enormous coils that explode out from under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is wound into enormous coils and kept under control by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is wound into enormous coils, bouncing freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is wound into enormous coils and kept under control by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is wound into enormous coils and kept under control by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is wound into enormous coils and kept under control by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is wound into enormous coils and kept under control by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is wound into enormous coils and kept under control by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is wound into enormous coils and kept under control by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is wound into enormous coils and kept under control by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is wound into enormous coils that nearly obscure ${him}, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is wound into enormous coils and kept under control by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is wound into a pair of enormous coils.`); + } + } else if (slave.hLength > 30) { + switch (slave.clothes) { + case "chains": + r.push(`is wound into large coils secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is wound into large coils and bound by latex hair cuffs.`); + break; + case "Western clothing": + r.push(`is wound into large coils that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is wound into large coils that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and wound into large coils secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is wound into large coils secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is wound into large coils secured with scrunchies.`); + break; + case "a huipil": + r.push(`is wound into large coils that rest on top of ${his} chest.`); + break; + case "a kimono": + r.push(`is wound into large coils secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is wound into large coils secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is wound into large coils tied back with rope.`); + break; + case "restrictive latex": + r.push(`coils out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is wound into large coils secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is wound into large coils and topped by a gold headband.`); + break; + case "battledress": + r.push(`is wound into large coils secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is wound into large coils wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`is wound into large coils that stick sacrilegiously out of ${his} surplice.`); + break; + case "a chattel habit": + r.push(`is wound into large coils that flow out from under ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is wound into large coils that spill out of ${his} surplice.`); + break; + case "a halter top dress": + case "a ball gown": + r.push(`is wound into large coils which rest atop ${his} breasts.`); + break; + case "slutty business attire": + r.push(`is wound into large coils decorated with gaudy gold baubles.`); + break; + case "nice business attire": + r.push(`is wound into large coils and secured behind ${his} back so ${he} can do business without them in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is wound into large coils adorned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is wound into large coils that protrude from under ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is wound into large coils that protrude from under ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is wound into large coils and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is wound into large coils and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is wound into large coils and kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is wound into large coils and kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is wound into large coils and kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is wound into large coils and kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is wound into large coils and kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in long tails and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is wound into large coils and kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is wound into large coils and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is wound into large coils and kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is wound into a pair of large coils.`); + } + } else if (slave.hLength > 10) { + switch (slave.clothes) { + case "conservative clothing": + r.push(`is pulled back with a pair of simple hair ties into short coils.`); + break; + case "chains": + r.push(`is back in short coils secured by steel rings.`); + break; + case "a latex catsuit": + r.push(`is bound by latex hair cuffs into short matching coils.`); + break; + case "Western clothing": + r.push(`is back in short coils that emerge from under ${his} cowboy hat.`); + break; + case "a Santa dress": + r.push(`is back in short coils that emerge from under ${his} festive hat.`); + break; + case "body oil": + r.push(`is permed, and back in coils secured by scrunchies in noxious 80's pastel colors.`); + break; + case "a slutty qipao": + r.push(`is back in short coils secured by jade rings etched with images of`); + r.push(App.Desc.image(slave)); + break; + case "spats and a tank top": + r.push(`is back in short coils secured by scrunchies.`); + break; + case "a huipil": + r.push(`is twisted into two short coils that give ${him} the look of a little girl.`); + break; + case "a kimono": + r.push(`is in short coils secured by ivory combs carved with images of`); + r.push(App.Desc.image(slave)); + break; + case "uncomfortable straps": + r.push(`is back in short coils secured by leather ties.`); + break; + case "shibari ropes": + r.push(`is back in short coils secured with rope.`); + break; + case "restrictive latex": + r.push(`coils out of two holes in ${his} latex hood.`); + break; + case "a string bikini": + case "cutoffs and a t-shirt": + case "a schoolgirl outfit": + case "a slutty maid outfit": + r.push(`is in short coils secured by hair ties with plastic buttons, bearing the garish inscription`); + r.push(App.Desc.inscrip(slave)); + break; + case "a scalemail bikini": + r.push(`is in short coils, and topped by a gold headband.`); + break; + case "battledress": + r.push(`is in short coils secured by paracord.`); + break; + case "harem gauze": + case "striped panties": + r.push(`is gathered into two short coils wrapped in golden thread.`); + break; + case "a fallen nuns habit": + r.push(`sticks sacrilegiously out of ${his} surplice in short coils.`); + break; + case "a chattel habit": + r.push(`is in a couple of short coils that spill out of ${his} cowl.`); + break; + case "a penitent nuns habit": + r.push(`is in short coils that spill out of ${his} surplice.`); + break; + case "slutty business attire": + r.push(`is gathered into short coils by gaudy gold clasps.`); + break; + case "nice business attire": + r.push(`is gathered into short coils so ${he} can do business without them getting in the way.`); + break; + case "a slutty nurse outfit": + case "a nice nurse outfit": + r.push(`is gathered into short coils by white cloth ties emblazoned with little red crosses.`); + break; + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is in a pair of short coils, but they're hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is in a pair of short coils, but they're hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is in short coils and kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`is in short coils and flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is in short coils and is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is in short coils and is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is in short coils and is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is in short coils and is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is in short coils and is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is in short coils and is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is in short coils and is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "kitty lingerie": + r.push(`is in short coils, and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is in short coils held in place with heart-shaped clips.`); + break; + default: + r.push(`is in a pair of short coils.`); + } + } else { + switch (slave.clothes) { + case "a burkini": + case "a burqa": + case "a hijab and abaya": + case "a hijab and blouse": + case "a niqab and abaya": + r.push(`is hidden by ${his} modest garb.`); + break; + case "a klan robe": + case "a slutty klan robe": + r.push(`is hidden by ${his} hood.`); + break; + case "a police uniform": + case "overalls": + r.push(`is kept out of ${his} face by a couple of sturdy hairpins.`); + break; + case "a hanbok": + r.push(`flows down ${his} back, rustling freely in the wind.`); + break; + case "a one-piece swimsuit": + r.push(`is kept out of ${his} face by a couple of simple barrettes.`); + break; + case "a gothic lolita dress": + r.push(`is kept out of ${his} face by a dark-colored headband.`); + break; + case "a bra": + case "a button-up shirt": + case "a sweater": + case "a striped bra": + case "striped underwear": + case "a sweater and panties": + case "a t-shirt": + case "an oversized t-shirt and boyshorts": + case "an oversized t-shirt": + case "a t-shirt and jeans": + case "boyshorts": + case "cutoffs": + case "panties": + case "a t-shirt and panties": + case "panties and pasties": + case "pasties": + case "a sweater and cutoffs": + case "a button-up shirt and panties": + r.push(`is kept out of ${his} face by a couple of cute hairpins.`); + break; + case "a sports bra": + case "sport shorts and a t-shirt": + case "sport shorts and a sports bra": + case "sport shorts": + r.push(`is kept out of ${his} face by a couple of sporty hairpins.`); + break; + case "a tube top and thong": + case "a tank-top": + case "a thong": + case "a tube top": + case "a tank-top and panties": + case "a t-shirt and thong": + case "leather pants and pasties": + case "leather pants": + case "jeans": + case "leather pants and a tube top": + r.push(`is kept out of ${his} face by a couple of black hairpins.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`is kept out of ${his} face by a couple of black barrettes.`); + break; + case "a skimpy loincloth": + r.push(`is kept out of ${his} face by a couple of bone hairpins.`); + break; + case "a scalemail bikini": + case "striped panties": + r.push(`is combed back and topped by a gold headband.`); + break; + case "kitty lingerie": + r.push(`is combed back and topped by a cat ear headband.`); + break; + case "a bimbo outfit": + r.push(`is kept out of ${his} face by a couple of heart-shaped barrettes.`); + break; + default: + r.push(`is too short to be kept in proper tails, so it's simply combed back.`); + } } - } - break; - case "bald": - r.push(`is completely bald.`); + break; + case "bald": + r.push(`is completely bald.`); + } } } return r.join(" "); diff --git a/src/npc/descriptions/style/upperFace.js b/src/npc/descriptions/style/upperFace.js index 8299c385532e06cf3d06eaa8b1e4fb8e8fec261c..3265bef00878304553f8e4029df69999b31f2000 100644 --- a/src/npc/descriptions/style/upperFace.js +++ b/src/npc/descriptions/style/upperFace.js @@ -51,107 +51,111 @@ App.Desc.upperFace = function(slave) { } if (slave.eyewear === "corrective glasses" || slave.eyewear === "blurring glasses" || slave.eyewear === "glasses") { r.push(`${He}'s wearing a pair of`); - switch (slave.clothes) { - case "chains": - case "shibari ropes": - case "uncomfortable straps": - case "a chattel habit": - case "overalls": - case "Western clothing": - r.push(`sturdy glasses,`); - break; - case "restrictive latex": - r.push(`glasses over the hood,`); - break; - case "a ball gown": - case "a slave gown": - case "conservative clothing": - case "cutoffs and a t-shirt": - case "a halter top dress": - case "a maternity dress": - case "a courtesan dress": - r.push(`nice frameless glasses,`); - break; - case "body oil": - r.push(`big retro glasses,`); - break; - case "slutty business attire": - r.push(`horn-rimmed glasses to accent ${his} business attire,`); - break; - case "a schoolgirl outfit": - r.push(`horn-rimmed glasses to improve ${his} schoolgirl look,`); - break; - case "nice business attire": - r.push(`wire-frame glasses to accent ${his} business attire,`); - break; - case "attractive lingerie": - case "attractive lingerie for a pregnant woman": - case "an apron": - case "a hijab and blouse": - r.push(`feminine glasses,`); - break; - case "kitty lingerie": - r.push(`cat-eye glasses,`); - break; - case "a succubus outfit": - r.push(`severe steel-frame glasses,`); - break; - case "harem gauze": - case "slutty jewelry": - r.push(`glasses with golden wire frames,`); - break; - case "a burqa": - case "a niqab and abaya": - case "a penitent nuns habit": - case "a klan robe": - case "a slutty klan robe": - r.push(`cheap glasses,`); - break; - case "a gothic lolita dress": - r.push(`Victorian-styled glasses,`); - break; - case "a hanbok": - r.push(`folding spectacle glasses,`); - break; - case "a police uniform": - r.push(`aviator sunglasses,`); - break; - case "a Santa dress": - r.push(`antique reading glasses,`); - break; - case "a bunny outfit": - case "a monokini": - r.push(`girly retro glasses,`); - break; - case "a hijab and abaya": - case "a huipil": - case "a kimono": - case "a long qipao": - case "a nice maid outfit": - case "a slutty qipao": - case "a slutty maid outfit": - r.push(`an old fashioned pair of horn rimmed glasses,`); - break; - case "a fallen nuns habit": - case "a cheerleader outfit": - case "a slutty nurse outfit": - r.push(`a daring pair of horn rimmed glasses,`); - break; - case "clubslut netting": - case "a string bikini": - case "striped panties": - case "a bimbo outfit": - r.push(`a pair of girly pastel glasses,`); - break; - case "a scalemail bikini": - r.push(`a pair of ancient-looking glasses,`); - break; - case "a burkini": - case "a one-piece swimsuit": - r.push(`swim goggles,`); - break; - default: - r.push(`simple wire-frame glasses,`); + const clothing = App.Data.clothes.get(slave.clothes); + if (clothing && clothing.desc && "upperFace" in clothing.desc) { + r.push(clothing.desc.upperFace(slave)); + } else { + switch (slave.clothes) { + case "chains": + case "shibari ropes": + case "uncomfortable straps": + case "a chattel habit": + case "overalls": + case "Western clothing": + r.push(`sturdy glasses,`); + break; + case "restrictive latex": + r.push(`glasses over the hood,`); + break; + case "a ball gown": + case "conservative clothing": + case "cutoffs and a t-shirt": + case "a halter top dress": + case "a maternity dress": + case "a courtesan dress": + r.push(`nice frameless glasses,`); + break; + case "body oil": + r.push(`big retro glasses,`); + break; + case "slutty business attire": + r.push(`horn-rimmed glasses to accent ${his} business attire,`); + break; + case "a schoolgirl outfit": + r.push(`horn-rimmed glasses to improve ${his} schoolgirl look,`); + break; + case "nice business attire": + r.push(`wire-frame glasses to accent ${his} business attire,`); + break; + case "attractive lingerie": + case "attractive lingerie for a pregnant woman": + case "an apron": + case "a hijab and blouse": + r.push(`feminine glasses,`); + break; + case "kitty lingerie": + r.push(`cat-eye glasses,`); + break; + case "a succubus outfit": + r.push(`severe steel-frame glasses,`); + break; + case "harem gauze": + case "slutty jewelry": + r.push(`glasses with golden wire frames,`); + break; + case "a burqa": + case "a niqab and abaya": + case "a penitent nuns habit": + case "a klan robe": + case "a slutty klan robe": + r.push(`cheap glasses,`); + break; + case "a gothic lolita dress": + r.push(`Victorian-styled glasses,`); + break; + case "a hanbok": + r.push(`folding spectacle glasses,`); + break; + case "a police uniform": + r.push(`aviator sunglasses,`); + break; + case "a Santa dress": + r.push(`antique reading glasses,`); + break; + case "a bunny outfit": + case "a monokini": + r.push(`girly retro glasses,`); + break; + case "a hijab and abaya": + case "a huipil": + case "a kimono": + case "a long qipao": + case "a nice maid outfit": + case "a slutty qipao": + case "a slutty maid outfit": + r.push(`an old fashioned pair of horn rimmed glasses,`); + break; + case "a fallen nuns habit": + case "a cheerleader outfit": + case "a slutty nurse outfit": + r.push(`a daring pair of horn rimmed glasses,`); + break; + case "clubslut netting": + case "a string bikini": + case "striped panties": + case "a bimbo outfit": + r.push(`a pair of girly pastel glasses,`); + break; + case "a scalemail bikini": + r.push(`a pair of ancient-looking glasses,`); + break; + case "a burkini": + case "a one-piece swimsuit": + r.push(`swim goggles,`); + break; + default: + r.push(`simple wire-frame glasses,`); + } } if (getBestVision(slave) === 0) { r.push(`which, since ${he} is <span class="red">blind,</span> are just for show. ${He} moves carefully as to not bump into things.`); diff --git a/src/npc/descriptions/womb/pregnancy.js b/src/npc/descriptions/womb/pregnancy.js index ccfc3aa695a16603367311526e515fc7a299c8b6..afe97053d5d355fd1c3853aa1b003844bb280465 100644 --- a/src/npc/descriptions/womb/pregnancy.js +++ b/src/npc/descriptions/womb/pregnancy.js @@ -22,9 +22,6 @@ App.Desc.pregnancy = function(slave, {market, eventDescription} = {}) { daddy = V.missingTable[slave.pregSource].fullName; } - if (V.debugMode && slave.belly > 0) { - r.push(`DEBUG. Belly: ${slave.belly}, Preg: ${slave.preg}.`); - } if (slave.preg === -2 && slave.vagina < 0 && slave.mpreg === 0) { } else if ((slave.preg <= -3) && (slave.ovaries === 1 || slave.mpreg === 1)) { r.push(`${He} is sterilized.`); diff --git a/src/npc/generate/generateGenetics.js b/src/npc/generate/generateGenetics.js index 960d4af8d6eab32f0cd5773690bc51372e910964..27be647dac99db27c296c0a4ddffe1841af3efc3 100644 --- a/src/npc/generate/generateGenetics.js +++ b/src/npc/generate/generateGenetics.js @@ -1028,7 +1028,7 @@ globalThis.generateGenetics = (function() { /** * Creates a new child object based on its mother and father and whether or not it is destined for the Incubator - * @param {App.Entity.SlaveState} mother The slave object carrying the child source + * @param {App.Entity.SlaveState|App.Entity.PlayerState} mother The slave object carrying the child source * @param {object} ovum The source for the child, comes from the mother's womb array * @param {boolean} [incubator=false] True if the child is destined for the incubator; false if it's destined for the nursery * @returns {App.Entity.SlaveState|App.Facilities.Nursery.InfantState} diff --git a/src/npc/generate/generateMarketSlave.js b/src/npc/generate/generateMarketSlave.js index 8b86473926afa5495f7f6810ae285870afd1ae06..e17dfc3eb6112c8898bb93f0fd1703987516b0a6 100644 --- a/src/npc/generate/generateMarketSlave.js +++ b/src/npc/generate/generateMarketSlave.js @@ -3200,5 +3200,5 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1 break; } } - return {text: r, slave: getGingeredSlave(slave, market)}; + return {text: r, slave: getGingeredSlave(slave, market, numArcology)}; }; diff --git a/src/npc/generate/generateNewSlaveJS.js b/src/npc/generate/generateNewSlaveJS.js index 86f8bac471c64bd2cf3c95851e39a2fceda893e4..2401a43f416ee847206ba24ea49dd8e8d39d1a42 100644 --- a/src/npc/generate/generateNewSlaveJS.js +++ b/src/npc/generate/generateNewSlaveJS.js @@ -1646,11 +1646,11 @@ globalThis.GenerateNewSlave = (function() { /** @type {Array<FC.BreastShape>} */ const BoobShapeGen = []; - if (slave.boobs > 250 && slave.boobs < 800) { + if (slave.boobs.isBetween(250, 800)) { BoobShapeGen.push("perky"); BoobShapeGen.push("downward-facing"); } - if (slave.boobs > 400 && slave.boobs < 1200) { + if (slave.boobs.isBetween(400, 1200)) { BoobShapeGen.push("torpedo-shaped"); BoobShapeGen.push("wide-set"); } diff --git a/src/npc/generate/generateRelatedSlave.js b/src/npc/generate/generateRelatedSlave.js index 8edaa1dd86da1cd62d3ea1a1c3aeb5b19fa27e90..5d5369081d1bdd93970490f8fa94a3d8be780e93 100644 --- a/src/npc/generate/generateRelatedSlave.js +++ b/src/npc/generate/generateRelatedSlave.js @@ -371,11 +371,11 @@ globalThis.generateRelatedSlave = (function() { /* nipple size - checks for flat nipples and their validity, otherwise reroll */ const AllowedBoobShapes = []; const AllowedNippleShapes = []; - if (slave.boobs > 250 && slave.boobs < 800) { + if (slave.boobs.isBetween(250, 800)) { AllowedBoobShapes.push("perky"); AllowedBoobShapes.push("downward-facing"); } - if (slave.boobs > 400 && slave.boobs < 1200) { + if (slave.boobs.isBetween(400, 1200)) { AllowedBoobShapes.push("torpedo-shaped"); AllowedBoobShapes.push("wide-set"); } diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js index bac71abfacbe8066cdea24edcb7867494c5fccd5..248d5e4d1744fba333cdad2cbb2a91f57f9b0060 100644 --- a/src/npc/generate/newSlaveIntro.js +++ b/src/npc/generate/newSlaveIntro.js @@ -1782,7 +1782,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest = actX(slave, "vaginal", 15); } if (isFertile(slave) && PC.dick > 0) { - knockMeUp(slave, 100, 0, -1, true); + knockMeUp(slave, 100, 0, -1); } slave.devotion += 100; return r.join(" "); @@ -1804,7 +1804,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest = r.push(`your pussy onto ${his} cock. ${He} shudders and moan softly as you slide yourself up and down ${his} shaft with steadily increasing speed. You keep your eyes locked on ${hers} all the while, as ${his} expression shifts from bewilderment to acceptance to ecstasy, as ${he} soon shoots ${his} seed up into you. Afterwards, you slip ${his} softening cock out of you, climb off of ${him}, and leave the exhausted and overwhelmed slave${girl} on your desk as you attend to business elsewhere. You think ${he}'s <span class="orangered">going to like it here.</span>`); actX(slave, "penetrative"); if (canImpreg(V.PC, slave)) { - knockMeUp(V.PC, 100, 0, slave.ID, true); + knockMeUp(V.PC, 100, 0, slave.ID); } } else { r.push(`yourself into ${his}`); @@ -1830,7 +1830,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest = r.push(VCheck.Vaginal(slave, 1)); actX(slave, "vaginal"); if (isFertile(slave) && PC.dick > 0) { - knockMeUp(slave, 100, 0, -1, true); + knockMeUp(slave, 100, 0, -1); } } else { r.push(VCheck.Anal(slave, 1)); @@ -2759,7 +2759,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest = } App.Events.addParagraph(el, r); - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); return el; }, }); @@ -3114,6 +3114,60 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest = lineBreak(); } + if (slave.boobs > 300 && slave.lactation > 0) { + choice({ + linkName: `Milk ${him}`, + result(slave) { + const r = []; + r.push(`You`); + if (tankBorn) { + r.push(`pull the curious ${desc}`); + } else { + if (slave.devotion > 20 || slave.trust < -20) { + r.push(`instruct the obedient ${desc}`); + } else { + r.push(`force the reluctant ${desc}`); + } + r.push(`to sit`); + } + r.push(`atop your desk in front of you and present ${his} chest. After a quick look, you extend an idle hand and begin to fondle ${his}`); + if (slave.boobs > 2000) { + r.push(`massive milky tits,`); + } else if (slave.boobs > 400) { + r.push(`healthy milky breasts,`); + } else { + r.push(`cute little milky boobs,`); + } + r.push(`continuing your work with your other hand. You quickly focus your fiddling on ${his} ${slave.nipples} nipples, the stimulation`); + if (slave.nipples === "fuckable") { + if (slave.devotion > 20) { + r.push(`rapidly engorging them around your fingers.`); + } else { + r.push(`slowly engorging them around your fingers despite ${his} feelings.`); + } + } else { + r.push(`bringing them`); + if (slave.devotion > 20) { + r.push(`quickly erect.`); + } else { + r.push(`slowly erect despite ${his} feelings.`); + } + } + r.push(`Once you feel satisfied with the state of those two bumps, you move to tug and squeeze ${his} breasts in a much different way, expertly putting pressure as to draw out the cream held within those swollen bags. You take your time to work as much out as you can, both for your own enjoyment and to judge your slave's character better.`); + if (slave.devotion > 20) { + r.push(`${He} easily accepts your orders and commands, being devoted enough to not make any fuss, especially for something as simple as this.`); + slave.devotion += 4; + } else { + r.push(`${He} expects something worse to happen immediately, and slowly relaxes when ${he} realizes that ${he}'s nothing more than your desktop stress relief toy, at least for now. ${He} experiences the usual effects of nipple play, but seems <span class="trust dec">somewhat frightened</span> to be dehumanized so thoroughly.`); + slave.trust -= 4; + } + return r.join(" "); + } + }); + lineBreak(); + } + + choice({ linkName: `Tease ${his} nipples`, result(slave) { diff --git a/src/npc/importSlave.js b/src/npc/importSlave.js index 48b9ca6095487a8fa31dcae5d616b80deb5b85f8..857a98725c745601d9b322bef5626ed2904c1a6d 100644 --- a/src/npc/importSlave.js +++ b/src/npc/importSlave.js @@ -8,8 +8,11 @@ App.UI.SlaveInteract.importSlave = function() { if (v) { const slave = JSON.parse(`{${v}}`); slave.ID = generateSlaveID(); + App.Update.Slave(slave); + App.Entity.Utils.SlaveDataSchemeCleanup(slave); newSlave(slave); SlaveDatatypeCleanup(slave); + removeJob(slave, slave.assignment); V.AS = slave.ID; Engine.play("Slave Interact"); } diff --git a/src/npc/interaction/FFuckdollAnal.js b/src/npc/interaction/FFuckdollAnal.js new file mode 100644 index 0000000000000000000000000000000000000000..ee8968d3ee4b2204ac2a24c1019883b598b42fa3 --- /dev/null +++ b/src/npc/interaction/FFuckdollAnal.js @@ -0,0 +1,147 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fFuckdollAnal = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him + } = getPronouns(slave); + + addPartner(slave, -1); + + seX(slave, "anal", V.PC, "penetrative"); + r.push(`You decide to use the Fuckdoll's`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`relaxed`); + } else if (slave.anus === 1) { + r.push(`tight`); + } + r.push(`rear hole.`); + if (slave.fuckdoll <= 10) { + r.push(`Since ${he} is not well adapted to life as a living sex toy yet, ${he} won't respond to position commands. So, you simply`); + if (hasAnyLegs(slave)) { + r.push(`walk over to ${him}`); + } else { + r.push(`flip ${him} over`); + } + r.push(`and ram`); + if (V.PC.dick !== 0) { + r.push(`your cock`); + } else { + r.push(`a strap-on`); + } + r.push(`up ${his} rear hole.`); + } else if (slave.fuckdoll <= 80) { + r.push(`${He} can follow intermediate commands, so you order ${him} to present ${his} rear hole. ${He} obediently`); + if (hasAnyLegs(slave)) { + r.push(`bends over, arches ${his} back, and`); + } else { + r.push(`flips over and`); + } + r.push(`winks ${his} anus until you insert`); + if (V.PC.dick !== 0) { + r.push(`your cock.`); + } else { + r.push(`a strap-on.`); + } + } else { + r.push(`${He} can follow advanced commands, so you bring ${him} over to your chair`); + if (hasAnyLegs(slave)) { + r.push(`and order ${him} to squat down onto your`); + if (V.PC.dick !== 0) { + r.push(`cock`); + } else { + r.push(`strap-on`); + } + r.push(`and slide ${his} anus up and down`); + if (V.PC.dick !== 0) { + r.push(`your`); + } else { + r.push(`the`); + } + r.push(`shaft.`); + } else { + r.push(`and impale ${him} on`); + if (V.PC.dick !== 0) { + r.push(`your cock,`); + } else { + r.push(`your strap-on,`); + } + r.push(`ordering ${him} to do ${his} feeble best to bounce.`); + } + } + if (slave.fuckdoll <= 20) { + r.push(`${He}'s not fully used to having things suddenly forced up ${his} ass, so ${he} struggles, and ${his} sphincter spasms deliciously.`); + } else if (slave.fuckdoll <= 40) { + r.push(`Aware that ${he} is supposed to relax and accept anal rape, ${he} does ${his} best to accommodate the sodomy.`); + } else { + r.push(`You command ${him} to milk your`); + if (V.PC.dick !== 0) { + r.push(`cock`); + } else { + r.push(`strap-on`); + } + r.push(`with ${his} asshole, and ${he} obediently tightens ${his} sphincter against the invading phallus rhythmically.`); + } + if (slave.fuckdoll <= 60) { + if (slave.energy > 60) { + r.push(`Denied any other outlet for ${his} powerful sex drive, ${he} orgasms.`); + } + } else { + r.push(`Tuned to enjoy any use by total denial of all other stimulation, ${he} orgasms repeatedly as you fuck ${his} anus.`); + } + if (slave.voice === 0) { + r.push(`Though ${he} is mute, ${his} breath hisses loudly`); + if (slave.lips > 95) { + r.push(`past the lips of ${his} facepussy.`); + } else { + r.push(`through ${his} mouth insert.`); + } + } else { + r.push(`${He} moans,`); + if (slave.lips > 95) { + r.push(`and the lips of ${his} facepussy quiver.`); + } else { + r.push(`struggling to force the sound past ${his} mouth insert.`); + } + } + r.push(`You climax${(V.PC.dick !== 0) ? `, filling ${his} rectum with your cum,` : ``} and return ${him} to`); + if (hasAnyLegs(slave)) { + r.push(`a standing position.`); + } else { + r.push(`where ${he} was resting.`); + } + if (V.PC.dick !== 0) { + if (slave.anus > 2) { + r.push(`Your cum flows out of ${his} gaped rear hole and down the material of ${his} suit.`); + } else if (slave.anus === 2) { + r.push(`Your cum drips out of ${his} loosened rear hole and down the material of ${his} suit.`); + } else { + r.push(`${His} tight rear hole retains every drop of your cum.`); + } + if (canImpreg(slave, V.PC)) { + r.push(knockMeUp(slave, 5, 0, -1)); + } + r.push(`The Fuckdoll will be cleaned by another slave.`); + } + if (slave.anus === 0) { + if (slave.fetish !== "mindbroken") { + r.push(`As you return to your business, ${he} shakes slightly in place, and a few low moans come out of ${his} face hole. This is probably a reaction to losing ${his} anal virginity.`); + } else { + r.push(`${He} gives no external indication that ${he}'s aware that ${he}'s just lost ${his} anal virginity.`); + } + r.push(`In any case, <span class="virginity loss">${his} rear hole has been broken in.</span>`); + slave.anus = 1; + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/FFuckdollAnal.tw b/src/npc/interaction/FFuckdollAnal.tw deleted file mode 100644 index 76cb99324db3b9c2d3a88a99bd9c6727dd9f4327..0000000000000000000000000000000000000000 --- a/src/npc/interaction/FFuckdollAnal.tw +++ /dev/null @@ -1,51 +0,0 @@ -:: FFuckdollAnal [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -<<set getSlave($AS).counter.anal++, $analTotal++>> -You decide to use the Fuckdoll's <<if getSlave($AS).anus > 3>>gaping<<elseif getSlave($AS).anus == 3>>loose<<elseif getSlave($AS).anus == 2>>relaxed<<elseif getSlave($AS).anus == 1>>tight<</if>> rear hole. -<<if getSlave($AS).fuckdoll <= 10>> - Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if hasAnyLegs(getSlave($AS))>>walk over to $him<<else>>flip $him over<</if>> and ram <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> up $his rear hole. -<<elseif getSlave($AS).fuckdoll <= 80>> - $He can follow intermediate commands, so you order $him to present $his rear hole. $He obediently <<if hasAnyLegs(getSlave($AS))>>bends over, arches $his back, and<<else>>flips over and<</if>> winks $his anus until you insert <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>>. -<<else>> - $He can follow advanced commands, so you bring $him over to your chair <<if hasAnyLegs(getSlave($AS))>>and order $him to squat down onto your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> and slide $his anus up and down <<if $PC.dick != 0>>your<<else>>the<</if>> shaft.<<else>>and impale $him on <<if $PC.dick != 0>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>> -<</if>> -<<if getSlave($AS).fuckdoll <= 20>> - $He's not fully used to having things suddenly forced up $his ass, so $he struggles, and $his sphincter spasms deliciously. -<<elseif getSlave($AS).fuckdoll <= 40>> - Aware that $he is supposed to relax and accept anal rape, $he does $his best to accommodate the sodomy. -<<else>> - You command $him to milk your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> with $his asshole, and $he obediently tightens $his sphincter against the invading phallus rhythmically. -<</if>> -<<if getSlave($AS).fuckdoll <= 60>> - <<if getSlave($AS).energy > 60>>Denied any other outlet for $his powerful sex drive, $he orgasms.<</if>> -<<else>> - Tuned to enjoy any use by total denial of all other stimulation, $he orgasms repeatedly as you fuck $his anus. -<</if>> -<<if getSlave($AS).voice == 0>> - Though $he is mute, $his breath hisses loudly <<if getSlave($AS).lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. -<<else>> - $He moans, <<if getSlave($AS).lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. -<</if>> -You climax<<if $PC.dick != 0>>, filling $his rectum with your cum,<</if>> and return $him to <<if hasAnyLegs(getSlave($AS))>>a standing position<<else>>where $he was resting<</if>>. -<<if $PC.dick != 0>> - <<if getSlave($AS).anus > 2>>Your cum flows out of $his gaped rear hole and down the material of $his suit. - <<elseif getSlave($AS).anus == 2>>Your cum drips out of $his loosened rear hole and down the material of $his suit. - <<else>>$His tight rear hole retains every drop of your cum. - <</if>> - <<if canImpreg(getSlave($AS), $PC)>> - <<= knockMeUp(getSlave($AS), 5, 0, -1)>> - <</if>> - The Fuckdoll will be cleaned by another slave. -<</if>> -<<if getSlave($AS).anus == 0>> - <<if getSlave($AS).fetish != "mindbroken">> - As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity. - <<else>> - $He gives no external indication that $he's aware that $he's just lost $his anal virginity. - <</if>> - In any case, <span class="virginity loss">$his rear hole has been broken in.</span> - <<set getSlave($AS).anus = 1>> -<</if>> diff --git a/src/npc/interaction/FFuckdollImpreg.js b/src/npc/interaction/FFuckdollImpreg.js new file mode 100644 index 0000000000000000000000000000000000000000..035f2250ffa0a39bcfb79c2cc939ada3ad622785 --- /dev/null +++ b/src/npc/interaction/FFuckdollImpreg.js @@ -0,0 +1,183 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fFuckdollImpreg = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him + } = getPronouns(slave); + + addPartner(slave, -1); + const _bonus = random(6, 20); + + if (slave.mpreg === 1) { + slave.counter.anal += _bonus + 1; + V.analTotal += _bonus + 1; + } else { + slave.counter.vaginal += _bonus + 1; + V.vaginalTotal += _bonus + 1; + } + + r.push(`You decide to use the Fuckdoll's fertile womb to grow a child.`); + if (slave.fuckdoll <= 10) { + r.push(`Since ${he} is not well adapted to life as a living sex toy yet, ${he} won't respond to position commands. So, you simply`); + if (hasAnyLegs(slave)) { + r.push(`push ${him} down to lie on the couch`); + } else { + r.push(`set ${him} on your desk`); + } + r.push(`and shove`); + if (V.PC.dick !== 0) { + r.push(`your cock`); + } else { + r.push(`a strap-on`); + } + r.push(`inside ${his}`); + if (slave.mpreg === 1) { + r.push(`asshole.`); + } else { + r.push(`vagina.`); + } + } else if (slave.fuckdoll <= 70) { + r.push(`${He} can follow intermediate commands, so you order ${him} into a position for use of ${his}`); + if (slave.mpreg === 1) { + r.push(`rear`); + } else { + r.push(`front`); + } + r.push(`hole. ${He} obediently`); + if (hasAllLimbs(slave)) { + r.push(`gets down on all fours and`); + } + r.push(`cocks ${his} hips, offering ${his}`); + if (slave.mpreg === 1) { + r.push(`asspussy`); + } else { + r.push(`cunt`); + } + r.push(`until you insert your`); + if (V.PC.dick > 0) { + r.push(`cock`); + } else { + r.push(`strap-on`); + } + r.push(`into ${his}`); + if (slave.mpreg === 1) { + r.push(`winking`); + } else { + r.push(`wet`); + } + r.push(`channel.`); + } else { + r.push(`${He} can follow advanced commands, so you bring ${him} over to your chair`); + if (hasAnyLegs(slave)) { + r.push(`and order ${him} to squat down onto your cock and ride.`); + } else { + r.push(`and impale ${him} on your cock, ordering ${him} to do ${his} feeble best to bounce.`); + } + } + if (slave.fuckdoll <= 20) { + r.push(`${He}'s not fully used to being raped without warning, so ${he} struggles, ${his} muscles spasming delightfully.`); + } else if (slave.fuckdoll <= 40) { + r.push(`Aware that ${he} is supposed to relax and accept rape, ${he} does ${his} best to let you take ${him} without resistance.`); + } else { + r.push(`You command ${him} to milk your cock with ${his}`); + if (slave.mpreg === 1) { + r.push(`anal`); + } else { + r.push(`vaginal`); + } + r.push(`walls, and ${he} obediently starts to flex ${his} well-developed`); + if (slave.mpreg === 1) { + r.push(`cunt`); + } else { + r.push(`anal`); + } + r.push(`muscles, squeezing you from base to tip.`); + } + if (slave.fuckdoll <= 60) { + if (slave.energy > 40) { + r.push(`Denied any other outlet for ${his} healthy sex drive, ${he} orgasms.`); + } + } else { + r.push(`${He} orgasmed for the first time as you entered ${him}, and ${he} continues to do so as you fuck ${him}. ${He}'s perfectly tuned.`); + } + if (slave.voice === 0) { + r.push(`Though ${he} is mute, ${his} breath hisses loudly`); + if (slave.lips > 95) { + r.push(`past the lips of ${his} facepussy.`); + } else { + r.push(`through ${his} mouth insert.`); + } + } else { + r.push(`${He} moans,`); + if (slave.lips > 95) { + r.push(`and the lips of ${his} facepussy quiver.`); + } else { + r.push(`struggling to force the sound past ${his} mouth insert.`); + } + } + r.push(`You climax, your cum shooting forward to splash against ${his} womb, and return ${he} to`); + if (hasAnyLegs(slave)) { + r.push(`a standing position`); + } else { + r.push(`where ${he} was resting`); + } + r.push(`to allow your seed to find ${his} mark.`); + if (slave.mpreg === 1) { + if (slave.anus > 2) { + r.push(`Your cum flows out of ${his} gaping rear hole and down the material of ${his} suit.`); + } else if (slave.anus === 2) { + r.push(`Your cum drips out of ${his} well-fucked rear hole and down the material of ${his} suit.`); + } else { + r.push(`${His} tight rear hole retains almost every drop of your cum. A few escape and run down the material of ${his} suit.`); + } + r.push(`The Fuckdoll will be cleaned by another slave.`); + if (slave.anus === 0) { + if (slave.fetish !== "mindbroken") { + r.push(`As you return to your business, ${he} shakes slightly in place, and a few low moans come out of ${his} face hole. This is probably a reaction to losing ${his} anal virginity.`); + } else { + r.push(`${He} gives no external indication that ${he}'s aware that ${he}'s just lost ${his} virginity.`); + } + r.push(`In any case, <span class="virginity loss">${his} rear hole has been broken in.</span>`); + slave.anus = 1; + } + } else { + if (slave.vagina >= 10) { + r.push(`Your cum steadily flows from its prolapsed front hole and down the material of ${his} suit.`); + } else if (slave.vagina > 2) { + r.push(`Your cum flows out of ${his} gaping front hole and down the material of ${his} suit.`); + } else if (slave.vagina === 2) { + r.push(`Your cum drips out of ${his} well-fucked front hole and down the material of ${his} suit.`); + } else { + r.push(`${His} tight front hole retains almost every drop of your cum. A few escape and run down the material of ${his} suit.`); + } + r.push(`The Fuckdoll will be cleaned by another slave.`); + if (slave.vagina === 0) { + if (slave.fetish !== "mindbroken") { + r.push(`As you return to your business, ${he} shakes slightly in place, and a few low moans come out of ${his} face hole. This is probably a reaction to losing ${his} virginity.`); + } else { + r.push(`${He} gives no external indication that ${he}'s aware that ${he}'s just lost ${his} virginity.`); + } + r.push(`In any case, <span class="virginity loss">${his} front hole has been broken in.</span>`); + slave.vagina = 1; + } + } + + r.push(`You repeat this ritual throughout the week, ensuring that ${he} will be an <span class="pregnant">incubator for your child.</span>`); + knockMeUp(slave, 100, 2, -1); + + if (V.arcologies[0].FSRestart !== "unset" && V.eugenicsFullControl !== 1) { + if (slave.breedingMark !== 1 || V.propOutcome === 0) { + r.push(`Rumors spread about you knocking up your playthings; the Societal Elite are <span class="elites.loss"> very displeased</span> by these rumors.`); + V.failedElite += 5; + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/FFuckdollImpreg.tw b/src/npc/interaction/FFuckdollImpreg.tw deleted file mode 100644 index f521b5f02faf7a3e8bb4db2a115bbf112f463155..0000000000000000000000000000000000000000 --- a/src/npc/interaction/FFuckdollImpreg.tw +++ /dev/null @@ -1,87 +0,0 @@ -:: FFuckdollImpreg [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> -<<set _bonus = random(6,20)>> - -<<if getSlave($AS).mpreg == 1>> - <<set getSlave($AS).counter.anal += _bonus+1, $analTotal += _bonus+1>> -<<else>> - <<set getSlave($AS).counter.vaginal += _bonus+1, $vaginalTotal += _bonus+1>> -<</if>> - -You decide to use the Fuckdoll's fertile womb to grow a child. -<<if getSlave($AS).fuckdoll <= 10>> - Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if hasAnyLegs(getSlave($AS))>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> inside $his <<if getSlave($AS).mpreg == 1>>asshole<<else>>vagina<</if>>. -<<elseif getSlave($AS).fuckdoll <= 70>> - $He can follow intermediate commands, so you order $him into a position for use of $his <<if getSlave($AS).mpreg == 1>>rear<<else>>front<</if>> hole. $He obediently <<if hasAllLimbs(getSlave($AS))>>gets down on all fours and <</if>>cocks $his hips, offering $his <<if getSlave($AS).mpreg == 1>>asspussy<<else>>cunt<</if>> until you insert your - <<if $PC.dick > 0>> - cock - <<else>> - strap-on - <</if>> - into $his <<if getSlave($AS).mpreg == 1>>winking<<else>>wet<</if>> channel. -<<else>> - $He can follow advanced commands, so you bring $him over to your chair <<if hasAnyLegs(getSlave($AS))>>and order $him to squat down onto your cock and ride.<<else>>and impale $him on your cock, ordering $him to do $his feeble best to bounce.<</if>> -<</if>> -<<if getSlave($AS).fuckdoll <= 20>> - $He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully. -<<elseif getSlave($AS).fuckdoll <= 40>> - Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance. -<<else>> - You command $him to milk your cock with $his <<if getSlave($AS).mpreg == 1>>anal<<else>>vaginal<</if>> walls, and $he obediently starts to flex $his well-developed <<if getSlave($AS).mpreg == 1>>cunt<<else>>anal<</if>> muscles, squeezing you from base to tip. -<</if>> -<<if getSlave($AS).fuckdoll <= 60>> - <<if getSlave($AS).energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>> -<<else>> - $He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned. -<</if>> -<<if getSlave($AS).voice == 0>> - Though $he is mute, $his breath hisses loudly <<if getSlave($AS).lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. -<<else>> - $He moans, <<if getSlave($AS).lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. -<</if>> -You climax, your cum shooting forward to splash against $his womb, and return $he to <<if hasAnyLegs(getSlave($AS))>>a standing position<<else>>where $he was resting<</if>> to allow your seed to find $his mark. -<<if getSlave($AS).mpreg == 1>> - <<if getSlave($AS).anus > 2>>Your cum flows out of $his gaping rear hole and down the material of $his suit. - <<elseif getSlave($AS).anus == 2>>Your cum drips out of $his well-fucked rear hole and down the material of $his suit. - <<else>>$His tight rear hole retains almost every drop of your cum. A few escape and run down the material of $his suit. - <</if>> - The Fuckdoll will be cleaned by another slave. - <<if getSlave($AS).anus == 0>> - <<if getSlave($AS).fetish != "mindbroken">> - As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity. - <<else>> - $He gives no external indication that $he's aware that $he's just lost $his virginity. - <</if>> - In any case, <span class="virginity loss">$his rear hole has been broken in.</span> - <<set getSlave($AS).anus = 1>> - <</if>> -<<else>> - <<if getSlave($AS).vagina >= 10>>Your cum steadily flows from its prolapsed front hole and down the material of $his suit. - <<elseif getSlave($AS).vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit. - <<elseif getSlave($AS).vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit. - <<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit. - <</if>> - The Fuckdoll will be cleaned by another slave. - <<if getSlave($AS).vagina == 0>> - <<if getSlave($AS).fetish != "mindbroken">> - As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity. - <<else>> - $He gives no external indication that $he's aware that $he's just lost $his virginity. - <</if>> - In any case, <span class="virginity loss">$his front hole has been broken in.</span> - <<set getSlave($AS).vagina = 1>> - <</if>> -<</if>> - -You repeat this ritual throughout the week, ensuring that $he will be an @@.pregnant;incubator for your child.@@ - -<<= knockMeUp(getSlave($AS), 100, 2, -1, 1)>> - -<<if $arcologies[0].FSRestart != "unset" && $eugenicsFullControl != 1>> - <<if getSlave($AS).breedingMark != 1 || $propOutcome == 0>> - Rumors spread about you knocking up your playthings; the Societal Elite are @@.elites.loss; very displeased@@ by these rumors. - <<set $failedElite += 5>> - <</if>> -<</if>> diff --git a/src/npc/interaction/FFuckdollOral.js b/src/npc/interaction/FFuckdollOral.js new file mode 100644 index 0000000000000000000000000000000000000000..6ea7b81106c0a8a205cb154e75ab682d4d3c80d1 --- /dev/null +++ b/src/npc/interaction/FFuckdollOral.js @@ -0,0 +1,103 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fFuckdollOral = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, + he, his, him + } = getPronouns(slave); + + addPartner(slave, -1); + + seX(slave, "oral", V.PC, "penetrative"); + r.push(`You decide to use the Fuckdoll's`); + if (slave.lips > 95) { + r.push(`facepussy.`); + } else { + r.push(`face hole.`); + } + if (slave.fuckdoll <= 10) { + r.push(`Since ${he} is not well adapted to life as a living sex toy yet, ${he} won't respond to position commands. So, you simply`); + if (hasBothLegs(slave)) { + r.push(`shove ${him} into a kneeling position`); + } else { + r.push(`set ${him} on the couch`); + } + r.push(`and straddle ${his} face.`); + } else if (slave.fuckdoll <= 80) { + r.push(`${He} can follow intermediate commands, so you order ${him} into a position for use of ${his} face hole. ${He} obediently`); + if (hasBothLegs(slave)) { + r.push(`gets to ${his} knees`); + } else { + r.push(`cranes ${his} neck up`); + } + r.push(`and sticks ${his} tongue out as far as it will go, wiggling it invitingly. You straddle ${his} face.`); + } else { + r.push(`${He} can follow advanced commands, so you order ${him} into a position for use of ${his} face hole. ${He} instantly`); + if (hasAnyLegs(slave)) { + if (V.PC.dick !== 0) { + r.push(`bends at the waist and turns ${his} head upward, placing ${his} throat horizontally and at waist height.`); + } else { + r.push(`gets to ${his} knees and turns ${his} head upward at just the right angle for a pussy to ride ${his} face hole.`); + } + } else { + r.push(`cranes ${his} neck up and sticks ${his} tongue out as far as it will go, wiggling it invitingly.`); + } + r.push(`You straddle ${his} face.`); + } + if (slave.fuckdoll <= 20) { + r.push(`${He}'s not fully used to being surprised with face rape, so ${he} struggles, and ${his} difficulty breathing`); + if (V.PC.dick !== 0) { + r.push(`makes ${his} throat spasm around your dickhead.`); + } else { + r.push(`feels lovely on your cunt.`); + } + } else if (slave.fuckdoll <= 50) { + r.push(`Aware that ${he} is supposed to relax and let you rape ${his} face, ${he} does ${his} best to let you`); + if (V.PC.dick !== 0) { + r.push(`fuck ${his} throat.`); + } else { + r.push(`ride ${his} face.`); + } + } else { + r.push(`You command ${him} to`); + if (V.PC.dick !== 0) { + r.push(`milk your dick, and ${he} begins to suck with almost frightening force.`); + } else { + r.push(`pleasure your cunt, and ${he} begins to eat you out with almost frightening hunger.`); + } + } + if (slave.fuckdoll <= 60) { + if (slave.energy > 80) { + r.push(`Denied any other outlet for ${his} extreme sex drive, ${he} orgasms from nothing more than oral stimulation.`); + } + } else { + r.push(`${He}'s so perfectly tuned that ${he} begins to orgasm from nothing more than oral stimulation, and ${he} continues to shiver with repeated orgasms as ${he} sucks.`); + } + r.push(`You climax,`); + if (V.PC.dick !== 0) { + r.push(`blowing your load down ${his} throat,`); + } else { + r.push(`giving ${him} a good amount of femcum to swallow,`); + } + r.push(`and return ${him} to`); + if (hasAnyLegs(slave)) { + r.push(`a standing position.`); + } else { + r.push(`where ${he} was resting.`); + } + if (V.PC.dick !== 0) { + if (slave.lips > 95) { + r.push(`${He} gives sloppy blowjobs, ${his} lips being too big for much control, and strings of your cum beribbon ${his} suit. The Fuckdoll will be cleaned by another slave.`); + } else { + r.push(`${He} swallows repeatedly as ${he} returns to ${his} resting posture.`); + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/FFuckdollOral.tw b/src/npc/interaction/FFuckdollOral.tw deleted file mode 100644 index b3c5da8aa7ceda5caaf36ed18a0c043f18a2b57a..0000000000000000000000000000000000000000 --- a/src/npc/interaction/FFuckdollOral.tw +++ /dev/null @@ -1,32 +0,0 @@ -:: FFuckdollOral [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -<<set getSlave($AS).counter.oral++, $oralTotal++>> -You decide to use the Fuckdoll's <<if getSlave($AS).lips > 95>>facepussy<<else>>face hole<</if>>. -<<if getSlave($AS).fuckdoll <= 10>> - Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if hasBothLegs(getSlave($AS))>>shove $him into a kneeling position<<else>>set $him on the couch<</if>> and straddle $his face. -<<elseif getSlave($AS).fuckdoll <= 80>> - $He can follow intermediate commands, so you order $him into a position for use of $his face hole. $He obediently <<if hasBothLegs(getSlave($AS))>>gets to $his knees<<else>>cranes $his neck up<</if>> and sticks $his tongue out as far as it will go, wiggling it invitingly. You straddle $his face. -<<else>> - $He can follow advanced commands, so you order $him into a position for use of $his face hole. $He instantly <<if hasAnyLegs(getSlave($AS))>><<if $PC.dick != 0>>bends at the waist and turns $his head upward, placing $his throat horizontally and at waist height.<<else>>gets to $his knees and turns $his head upward at just the right angle for a pussy to ride $his face hole.<</if>><<else>>cranes $his neck up and sticks $his tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle $his face. -<</if>> -<<if getSlave($AS).fuckdoll <= 20>> - $He's not fully used to being surprised with face rape, so $he struggles, and $his difficulty breathing <<if $PC.dick != 0>>makes $his throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>. -<<elseif getSlave($AS).fuckdoll <= 50>> - Aware that $he is supposed to relax and let you rape $his face, $he does $his best to let you <<if $PC.dick != 0>>fuck $his throat<<else>>ride $his face<</if>>. -<<else>> - You command $him to <<if $PC.dick != 0>>milk your dick, and $he begins to suck with almost frightening force<<else>>pleasure your cunt, and $he begins to eat you out with almost frightening hunger<</if>>. -<</if>> -<<if getSlave($AS).fuckdoll <= 60>> - <<if getSlave($AS).energy > 80>>Denied any other outlet for $his extreme sex drive, $he orgasms from nothing more than oral stimulation.<</if>> -<<else>> - $He's so perfectly tuned that $he begins to orgasm from nothing more than oral stimulation, and $he continues to shiver with repeated orgasms as $he sucks. -<</if>> -You climax, <<if $PC.dick != 0>>blowing your load down $his throat<<else>>giving $him a good amount of femcum to swallow<</if>>, and return $him to <<if hasAnyLegs(getSlave($AS))>>a standing position<<else>>where $he was resting<</if>>. -<<if $PC.dick != 0>> - <<if getSlave($AS).lips > 95>>$He gives sloppy blowjobs, $his lips being too big for much control, and strings of your cum beribbon $his suit. The Fuckdoll will be cleaned by another slave. - <<else>>$He swallows repeatedly as $he returns to $his resting posture. - <</if>> -<</if>> diff --git a/src/npc/interaction/FFuckdollVaginal.js b/src/npc/interaction/FFuckdollVaginal.js new file mode 100644 index 0000000000000000000000000000000000000000..a4ad469a6d21bb78d11fd56989d9dc91f0b00413 --- /dev/null +++ b/src/npc/interaction/FFuckdollVaginal.js @@ -0,0 +1,148 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fFuckdollVaginal = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him + } = getPronouns(slave); + + addPartner(slave, -1); + + seX(slave, "vaginal", V.PC, "penetrative"); + r.push(`You decide to use the Fuckdoll's`); + if (slave.vagina > 3) { + r.push(`cavernous`); + } else if (slave.vagina === 3) { + r.push(`soft`); + } else if (slave.vagina === 2) { + r.push(`inviting`); + } else if (slave.vagina === 1) { + r.push(`tight`); + } + r.push(`front hole.`); + if (slave.fuckdoll <= 10) { + r.push(`Since ${he} is not well adapted to life as a living sex toy yet, ${he} won't respond to position commands. So, you simply`); + if (hasAnyLegs(slave)) { + r.push(`push ${him} down to lie on the couch`); + } else { + r.push(`set ${him} on your desk`); + } + r.push(`and shove`); + if (V.PC.dick !== 0) { + r.push(`your cock`); + } else { + r.push(`a strap-on`); + } + r.push(`inside ${his} vagina.`); + } else if (slave.fuckdoll <= 70) { + r.push(`${He} can follow intermediate commands, so you order ${him} into a position for use of ${his} front hole. ${He} obediently`); + if (hasAllLimbs(slave)) { + r.push(`gets down on all fours and`); + } else if (hasAnyLegs(slave)) { + r.push(`bends over and`); + } + r.push(`cocks ${his} hips, offering ${his} cunt until you insert`); + if (V.PC.dick !== 0) { + r.push(`your cock`); + } else { + r.push(`a strap-on`); + } + r.push(`into ${his} wet channel.`); + } else { + r.push(`${He} can follow advanced commands, so you bring ${him} over to your chair`); + if (hasAnyLegs(slave)) { + r.push(`and order ${him} to squat down onto your`); + if (V.PC.dick !== 0) { + r.push(`cock`); + } else { + r.push(`strap-on`); + } + r.push(`and ride.`); + } else { + r.push(`and impale ${him} on`); + if (V.PC.dick !== 0) { + r.push(`your cock,`); + } else { + r.push(`your strap-on,`); + } + r.push(`ordering ${him} to do ${his} feeble best to bounce.`); + } + } + if (slave.fuckdoll <= 20) { + r.push(`${He}'s not fully used to being raped without warning, so ${he} struggles, ${his} muscles spasming delightfully.`); + } else if (slave.fuckdoll <= 40) { + r.push(`Aware that ${he} is supposed to relax and accept rape, ${he} does ${his} best to let you take ${him} without resistance.`); + } else { + r.push(`You command ${him} to milk your`); + if (V.PC.dick !== 0) { + r.push(`cock`); + } else { + r.push(`strap-on`); + } + r.push(`with ${his} vaginal walls, and ${he} obediently starts to flex ${his} well-developed cunt muscles, squeezing`); + if (V.PC.dick !== 0) { + r.push(`you`); + } else { + r.push(`your strap-on`); + } + r.push(`from base to tip.`); + } + if (slave.fuckdoll <= 60) { + if (slave.energy > 40) { + r.push(`Denied any other outlet for ${his} healthy sex drive, ${he} orgasms.`); + } + } else { + r.push(`${He} orgasmed for the first time as you entered ${him}, and ${he} continues to do so as you fuck ${him}. ${He}'s perfectly tuned.`); + } + if (slave.voice === 0) { + r.push(`Though ${he} is mute, ${his} breath hisses loudly`); + if (slave.lips > 95) { + r.push(`past the lips of ${his} facepussy.`); + } else { + r.push(`through ${his} mouth insert.`); + } + } else { + r.push(`${He} moans,`); + if (slave.lips > 95) { + r.push(`and the lips of ${his} facepussy quiver.`); + } else { + r.push(`struggling to force the sound past ${his} mouth insert.`); + } + } + r.push(`You climax${(V.PC.dick !== 0) ? `, your cum shooting forward to splash against ${his} womb,` : ``} and return ${him} to`); + if (hasAnyLegs(slave)) { + r.push(`a standing position.`); + } else { + r.push(`where ${he} was resting.`); + } + if (V.PC.dick !== 0) { + if (slave.vagina > 2) { + r.push(`Your cum flows out of ${his} gaping front hole and down the material of ${his} suit.`); + } else if (slave.vagina === 2) { + r.push(`Your cum drips out of ${his} well-fucked front hole and down the material of ${his} suit.`); + } else { + r.push(`${His} tight front hole retains almost every drop of your cum. A few escape and run down the material of ${his} suit.`); + } + if (canImpreg(slave, V.PC)) { + r.push(knockMeUp(slave, 5, 1, -1)); + } + r.push(`The Fuckdoll will be cleaned by another slave.`); + } + if (slave.vagina === 0) { + if (slave.fetish !== "mindbroken") { + r.push(`As you return to your business, ${he} shakes slightly in place, and a few low moans come out of ${his} face hole. This is probably a reaction to losing ${his} virginity.`); + } else { + r.push(`${He} gives no external indication that ${he}'s aware that ${he}'s just lost ${his} virginity.`); + } + r.push(`In any case, <span class="lime">${his} front hole has been broken in.</span>`); + slave.vagina = 1; + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/FFuckdollVaginal.tw b/src/npc/interaction/FFuckdollVaginal.tw deleted file mode 100644 index 4c30c5c3372ec0dbb074a435c1e39695013232c1..0000000000000000000000000000000000000000 --- a/src/npc/interaction/FFuckdollVaginal.tw +++ /dev/null @@ -1,51 +0,0 @@ -:: FFuckdollVaginal [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -<<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> -You decide to use the Fuckdoll's <<if getSlave($AS).vagina > 3>>cavernous<<elseif getSlave($AS).vagina == 3>>soft<<elseif getSlave($AS).vagina == 2>>inviting<<elseif getSlave($AS).vagina == 1>>tight<</if>> front hole. -<<if getSlave($AS).fuckdoll <= 10>> - Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if hasAnyLegs(getSlave($AS))>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> inside $his vagina. -<<elseif getSlave($AS).fuckdoll <= 70>> - $He can follow intermediate commands, so you order $him into a position for use of $his front hole. $He obediently <<if hasAllLimbs(getSlave($AS))>>gets down on all fours and <<elseif hasAnyLegs(getSlave($AS))>>bends over and <</if>>cocks $his hips, offering $his cunt until you insert <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> into $his wet channel. -<<else>> - $He can follow advanced commands, so you bring $him over to your chair <<if hasAnyLegs(getSlave($AS))>>and order $him to squat down onto your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> and ride.<<else>>and impale $him on <<if $PC.dick != 0>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>> -<</if>> -<<if getSlave($AS).fuckdoll <= 20>> - $He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully. -<<elseif getSlave($AS).fuckdoll <= 40>> - Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance. -<<else>> - You command $him to milk your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> with $his vaginal walls, and $he obediently starts to flex $his well-developed cunt muscles, squeezing <<if $PC.dick != 0>>you<<else>>your strap-on<</if>> from base to tip. -<</if>> -<<if getSlave($AS).fuckdoll <= 60>> - <<if getSlave($AS).energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>> -<<else>> - $He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned. -<</if>> -<<if getSlave($AS).voice == 0>> - Though $he is mute, $his breath hisses loudly <<if getSlave($AS).lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. -<<else>> - $He moans, <<if getSlave($AS).lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. -<</if>> -You climax<<if $PC.dick != 0>>, your cum shooting forward to splash against $his womb,<</if>> and return $him to <<if hasAnyLegs(getSlave($AS))>>a standing position<<else>>where $he was resting<</if>>. -<<if $PC.dick != 0>> - <<if getSlave($AS).vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit. - <<elseif getSlave($AS).vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit. - <<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit. - <</if>> - <<if canImpreg(getSlave($AS), $PC)>> - <<= knockMeUp(getSlave($AS), 5, 1, -1)>> - <</if>> - The Fuckdoll will be cleaned by another slave. -<</if>> -<<if getSlave($AS).vagina == 0>> - <<if getSlave($AS).fetish != "mindbroken">> - As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity. - <<else>> - $He gives no external indication that $he's aware that $he's just lost $his virginity. - <</if>> - In any case, @@.lime;$his front hole has been broken in.@@ - <<set getSlave($AS).vagina = 1>> -<</if>> diff --git a/src/npc/interaction/FSuckle.js b/src/npc/interaction/FSuckle.js index 03660739382d029f3cf6d0689e21c68b847cd88c..3d0dbf06544857277fe3cbf0d04bcb9841dcb3e9 100644 --- a/src/npc/interaction/FSuckle.js +++ b/src/npc/interaction/FSuckle.js @@ -705,7 +705,7 @@ App.Interact.fSuckle = function(slave) { r.push(`${He} freezes in fear, unsure of what to do other than let you rest.`); } else if (slave.devotion < -20) { r.push(`${He} groans at the weight leaning against ${him} and begrudgingly rests ${his} arm atop your pregnant bulge.`); - if (V.PC.pregSource === V.AS) { + if (V.PC.pregSource === slave.ID) { r.push(`${He} takes a moment to appreciate the size of your belly, knowing ${he} was the one that seeded you. ${He} admires ${his} work with pride.`); } else { r.push(`${He} knows ${he} has little choice but to put up with it.`); diff --git a/src/npc/interaction/fAbuse.js b/src/npc/interaction/fAbuse.js index ddf6598fc2ba5057a14d52845b3c58fe7472a190..0fed52f19efa130bd6b308451a293a187e0f6019 100644 --- a/src/npc/interaction/fAbuse.js +++ b/src/npc/interaction/fAbuse.js @@ -12,7 +12,7 @@ App.Interact.fAbuse = function(slave) { he, his, him, himself } = getPronouns(slave); - if (V.AS === V.BodyguardID) { + if (slave.assignment === Job.BODYGUARD) { if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 95) { r.push(`Knowing how much your bodyguard likes being hurt, you decide to reward ${him} in ${his} own particular way.`); } else if (slave.muscles < -5 && slave.skill.combat === 0) { @@ -649,20 +649,20 @@ App.Interact.fAbuse = function(slave) { r.push(`${He}'s got no special physical targets for abuse, so you just rape ${him} hard and fast, raining stinging slaps down on ${him} as you do. ${He} cries and whimpers; you finish.`); r.push(VCheck.Both(slave, 1)); } - if (V.AS !== V.BodyguardID) { + if (slave.assignment !== Job.BODYGUARD) { r.push(`This leaves ${him} sobbing on the floor`); if (V.PC.dick === 0) { r.push(`as you shuck off the strap-on and drop it on ${his} face.`); } else { r.push(`with cum dripping out of ${him}.`); } - } else if (V.AS === V.BodyguardID && slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 95) { + } else if (slave.assignment === Job.BODYGUARD && slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 95) { r.push(`${He} thanks you rapidly, trying to break away from the pleasure of your reward. ${He} quickly gets back to ${his} feet and stumbles towards the shower, to make sure you won't stay unprotected too long.`); } else { r.push(`Even though ${he}'s in a somewhat bad shape, ${he} still jumps back to ${his} feet and stumbles towards the shower, to make sure you won't stay unprotected too long.`); } - if (V.AS !== V.BodyguardID) { + if (slave.assignment !== Job.BODYGUARD) { if (slave.minorInjury === 0) { if (_assPain === 1) { r.push(`The anal rape leaves ${him} with a sore butthole.`); @@ -678,7 +678,7 @@ App.Interact.fAbuse = function(slave) { healthDamage(slave, 40); } - if (V.AS === V.BodyguardID) { + if (slave.assignment === Job.BODYGUARD) { if (slave.muscles <= 5 && slave.skill.combat === 0) { r.push(`Your bodyguard accepts this as a punishment for ${his} uselessness.`); } else if (slave.muscles <= 5 && slave.skill.combat !== 0) { @@ -719,7 +719,7 @@ App.Interact.fAbuse = function(slave) { } if (random(1, 100) > (20+slave.devotion+slave.trust)) { - if (slave.fetish !== "submissive" && slave.fetish !== "masochist" && V.AS !== V.BodyguardID) { + if (slave.fetish !== "submissive" && slave.fetish !== "masochist" && slave.assignment !== Job.BODYGUARD) { const _seed = random(1, 8); r.push(`Brutal abuse has left ${him}`); if (_seed === 1 && slave.behavioralFlaw !== "odd") { @@ -752,7 +752,7 @@ App.Interact.fAbuse = function(slave) { } } } - if (random(1, 100) > (50+slave.devotion+slave.trust) && V.AS !== V.BodyguardID) { + if (random(1, 100) > (50+slave.devotion+slave.trust) && slave.assignment !== Job.BODYGUARD) { if (slave.fetish !== "mindbroken" && slave.fetishKnown === 0 && slave.clitSetting !== slave.fetish) { r.push(`${His} acceptance of your abuse has twisted ${his}`); if (random(1, 2) === 1 && slave.fetish !== "submissive") { diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js index d9a129bfbdb49283dc18279bc2f2f9bc4e50f9c5..3ba0b8d8e1cb82acf7bcefa063cbe6a18f26ce5f 100644 --- a/src/npc/interaction/fAnimal.js +++ b/src/npc/interaction/fAnimal.js @@ -158,7 +158,10 @@ App.Interact.fAnimal = function(slave, type) { mainSpan.append(`${slave.slaveName} visibly blanches at the thought of having to suck down an animal's cum, but ${he} is so devoted to you that ${he} reluctantly agrees. `); } } else { - if ((act === Acts.VAGINAL && slave.vagina > 0) || (act === Acts.ANAL && slave.anus > 0)) { + if ( + (act === Acts.VAGINAL && slave.vagina > 0) || + (act === Acts.ANAL && slave.anus > 0) + ) { if (slaveApproves()) { mainSpan.append(`${slave.slaveName}'s face visibly brightens at the thought of ${fetishDesc}, even if the dick is an animal's. `); } else { @@ -186,7 +189,10 @@ App.Interact.fAnimal = function(slave, type) { mainSpan.append(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal, but quickly regains ${his} composure. `); } } else { - if ((act === Acts.VAGINAL && slave.vagina > 0) || (act === Acts.ANAL && slave.anus > 0)) { + if ( + (act === Acts.VAGINAL && slave.vagina > 0) || + (act === Acts.ANAL && slave.anus > 0) + ) { if (slaveApproves()) { mainSpan.append(`${slave.slaveName} doesn't seem terribly keen on the idea of fucking an animal, but the thought of ${fetishDesc} seems to be enough to win ${him} over. `); } else { diff --git a/src/npc/interaction/fAnus.js b/src/npc/interaction/fAnus.js index fbad482c6877711f7dd728fbfde480af8c57d1d9..97c3d14f97bdad8302513f2bc99680a69792b845 100644 --- a/src/npc/interaction/fAnus.js +++ b/src/npc/interaction/fAnus.js @@ -88,7 +88,7 @@ App.Interact.fAnus = function(slave) { } else { r.push(`${He} is appalled at the idea of taking it up the ass${(V.PC.dick === 0) ? `and cries with fear as you don a strap-on` : ``}. ${He} does anyway though, sobbing into the cushions`); if (hasAnyArms(slave)) { - r.push(`while you hold ${his} ${hasBothArms(slave) ? `arms` : `arm`}behind ${him}`); + r.push(`while you hold ${his} ${hasBothArms(slave) ? `arms` : `arm`} behind ${him}`); } r.push(r.pop() + `.`); r.push(`You force yourself into ${his} butthole and continue thrusting your member into ${his} ass. ${He} sobs and cries with disgust while you pump into ${his} rear. The painful anal rape <span class="devotion dec">decreases ${his} devotion to you.</span> <span class="virginity loss">${His} tight little ass has been broken in,</span> and ${he} is <span class="trust dec">terrified of further anal pain.</span>`); @@ -153,11 +153,7 @@ App.Interact.fAnus = function(slave) { } r.push(`but you pin`); if (hasAnyArms(slave)) { - r.push(`${his} hand`); - if (hasBothArms(slave)) { - r.push(`s`); - } - r.push(`behind ${him} with one hand,`); + r.push(`${his} ${hasBothArms(slave) ? "hands" : "hand"} behind ${him} with one hand,`); } else { r.push(`${him} down,`); } diff --git a/src/npc/interaction/fAssistedSex.js b/src/npc/interaction/fAssistedSex.js new file mode 100644 index 0000000000000000000000000000000000000000..ac12ad4d45bad666f66eb589bf3eaf9d908310d4 --- /dev/null +++ b/src/npc/interaction/fAssistedSex.js @@ -0,0 +1,143 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fAssistedSex = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, + he, his, him, himself + } = getPronouns(slave); + + addPartner(slave, -1); + + r.push(`You order ${his} servants forward so that ${he} can tease you with ${his} enormously swollen body.`); + if (slave.devotion > 95) { + r.push(`Smirking, ${he} leans backwards,`); + if (hasBothArms(slave)) { + r.push(`raising ${his} hands above ${his} head`); + } else if (hasAnyArms(slave)) { + r.push(`raising ${his} hand above ${his} head`); + } else { + r.push(`with two slender arms rising upward behind ${him}, making it look like ${he} has limbs once more`); + } + r.push(`as a gaggle of ${his} trained menials slide underneath ${his} belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling.`); + } else if (slave.trust < -20 && slave.devotion > -10) { + r.push(`Smiling nervously, ${he} leans backwards,`); + if (hasBothArms(slave)) { + r.push(`raising ${his} hands above ${his} head`); + } else if (hasAnyArms(slave)) { + r.push(`raising ${his} hand above ${his} head`); + } else { + r.push(`with two slender arms rising upward behind ${him}, making it look like ${he} has limbs once more`); + } + r.push(`as a gaggle of ${his} trained menials slide underneath ${his} belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling.`); + } else { + if (hasBothArms(slave)) { + r.push(`${He} covers ${his}`); + if (canSee(slave)) { + r.push(`eyes`); + } else { + r.push(`face`); + } + r.push(`with ${his} hands,`); + } else if (hasAnyArms(slave)) { + r.push(`${He} tries to cover ${his}`); + if (canSee(slave)) { + r.push(`eyes`); + } else { + r.push(`face`); + } + r.push(`with ${his} hand,`); + } else { + r.push(`Two slender arms snake around from behind ${him}, almost making it look like ${he} has limbs once more. They cover ${his} quivering`); + if (canSee(slave)) { + r.push(`eyes`); + } else { + r.push(`expression`); + } + } + r.push(`as a gaggle of ${his} trained menials slide underneath ${his} belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling.`); + if (hasBothArms(slave)) { + r.push(`Two more servants take hold of ${his} arms, forcing ${him} to lift them above ${his} head.`); + } else if (hasAnyArms(slave)) { + r.push(`Another servant takes hold of ${his} arm, forcing ${him} to lift it above ${his} head.`); + } else { + r.push(`The hands covering ${his}`); + if (canSee(slave)) { + r.push(`eyes`); + } else { + r.push(`head`); + } + r.push(`draw away, revealing ${his} crying face, then lift above ${his} head in a deliberately provocative pose.`); + } + r.push(`${He} tenses in a moment of instinctive resistance, then surrenders ${his} body to ${his} aids' total control, clearly afraid of punishment.`); + } + r.push(`You remove your clothes and lie back on the office couch,`); + if (V.PC.dick !== 0) { + r.push(`allowing your exposed, full-mast dick to loll in front of you.`); + } else { + r.push(`spreading your exposed, oozing twat.`); + } + if (slave.devotion > 95) { + r.push(`Licking ${his} lips,`); + } else if (slave.trust < -20 && slave.devotion > -10) { + r.push(`Breathing heavily,`); + } else { + r.push(`Smiling fakely,`); + } + r.push(`${he} draws toward you, half-floating on a river of silent, groping hands. When ${he} is mere`); + if (V.showInches === 2) { + r.push(`inches`); + } else { + r.push(`centimeters`); + } + r.push(`away from you, ${his} servants lift ${him} higher, and ${he}`); + if (V.PC.dick !== 0) { + r.push(`teases your dick with a series of masterful — and carefully balanced — belly isolations, rubbing the thick nub of ${his} belly button in small semicircles around your oozing cockhead as ${he} does so. Right when you feel ready to explode, ${he} rotates around, bringing`); + if (slave.butt > 11) { + r.push(`${his} overgrown, wobbling ass cheeks`); + } else if (slave.butt > 5) { + r.push(`${his} huge, wobbling ass cheeks`); + } else if (Math.floor(slave.buttImplant/slave.butt) > .60) { + r.push(`${his} saline inflated ass cheeks`); + } else if (slave.butt > 2) { + r.push(`${his} wobbling ass cheeks`); + } else { + r.push(`the shallow inverted bowls of ${his} petite ass cheeks`); + } + r.push(`level with your erection. Two of ${his} servants reach around ${his} inflated profile and push ${his} cheeks together, wrapping your dick in a firm layer of butt cleavage. ${He} lifts ${his} ass, then drops it, again and again, smacking your chest on the downswing as ${his} servants manipulate ${his} hotdogging to maximize your pleasure.`); + if (canDoVaginal(slave)) { + r.push(`When you feel the tension within you reaching its apex, you signal to ${his} servants to hold ${him} in place. With ${his} silent menials, still as statues, anchoring ${his} bloated body at the perfect angle for fucking while contorting their anonymous bodies to frame ${him} in a manner that maximizes ${his} visual attractiveness, you grab hold of ${his} flanks and ram into ${his} pregnant pussy, driving ${him} to the first of many orgasms in just a few casual thrusts.`); + r.push(`${VCheck.Vaginal(slave, 1)}`); + r.push(`When you feel your own orgasm approaching, you pull out, ejaculating`); + } else if (canDoAnal(slave)) { + r.push(`When you feel the tension within you reaching its apex, you signal to ${his} servants to hold ${him} in place. With ${his} silent menials, still as statues, anchoring ${his} bloated body at the perfect angle for fucking while contorting their anonymous bodies to frame ${him} in a manner that maximizes ${his} visual attractiveness, you grab hold of ${his} flanks and ram into ${his} asshole, driving ${him} to the first of many orgasms with just a few casual thrusts.`); + r.push(`${VCheck.Anal(slave, 1)}`); + r.push(`When you feel your own orgasm approaching, you pull out, ejaculating`); + } else { + r.push(`When you feel the tension with your reaching its apex, you signal to ${his} servants and they pull ${him} forward. You ejaculate`); + } + r.push(`a thick stream of semen all over ${his} ass and back, ${he} shifts into a kneeling position on the ground in front of you, tilted sideways so that ${his} massive fecundity can pool on the ground beside ${him}, and gently sucks you off, cleaning your dick with ${his} mouth.`); + slave.counter.oral++; + V.oralTotal++; + } else { + r.push(`Presses the thick nub of ${his} belly button into your pussy, rubbing it back and forth against your engorged clit as ${he} performs a series of masterful — and carefully balanced — belly isolations. After ${he} has you quaking at the edge of release, ${he} rolls forward and buries ${his} head in your lap, plying you with ${his}`); + if (slave.devotion > 95) { + r.push(`devoted tongue`); + } else if (slave.trust < -20 && slave.devotion > -10) { + r.push(`dedicated tongue`); + } else { + r.push(`tongue`); + } + r.push(`and driving you into a series of crashing orgasms. When ${his} tongue tires, ${he} tries to draw away, but you grab hold of ${his} head and hold ${him} in place until you are finished.`); + slave.counter.oral++; + V.oralTotal++; + } + r.push(`Once you are satisfied, you send ${him} away to clean ${himself} up before returning to ${his} duties.`); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fAssistedSex.tw b/src/npc/interaction/fAssistedSex.tw deleted file mode 100644 index 839bc2b97f65ae47e81e16893ae61944d5a0bcca..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fAssistedSex.tw +++ /dev/null @@ -1,98 +0,0 @@ -:: FAssistedSex [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -You order $his servants forward so that $he can tease you with $his enormously swollen body. -<<if getSlave($AS).devotion > 95>> - Smirking, $he leans backwards, - <<if hasBothArms(getSlave($AS))>> - raising $his hands above $his head - <<elseif hasAnyArms(getSlave($AS))>> - raising $his hand above $his head - <<else>> - with two slender arms rising upward behind $him, making it look like $he has limbs once more - <</if>> - as a gaggle of $his trained menials slide underneath $his belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling. -<<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - Smiling nervously, $he leans backwards, - <<if hasBothArms(getSlave($AS))>> - raising $his hands above $his head - <<elseif hasAnyArms(getSlave($AS))>> - raising $his hand above $his head - <<else>> - with two slender arms rising upward behind $him, making it look like $he has limbs once more - <</if>> - as a gaggle of $his trained menials slide underneath $his belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling. -<<else>> - <<if hasBothArms(getSlave($AS))>> - $He covers $his <<if canSee(getSlave($AS))>>eyes<<else>>face<</if>> with $his hands, - <<elseif hasAnyArms(getSlave($AS))>> - $He tries to cover $his <<if canSee(getSlave($AS))>>eyes<<else>>face<</if>> with $his hand, - <<else>> - Two slender arms snake around from behind $him, almost making it look like $he has limbs once more. They cover $his quivering <<if canSee(getSlave($AS))>>eyes<<else>>expression<</if>> - <</if>> - as a gaggle of $his trained menials slide underneath $his belly, lifting the monolithic organ off the ground and setting the tightly packed orb to wobbling. - <<if hasBothArms(getSlave($AS))>> - Two more servants take hold of $his arms, forcing $him to lift them above $his head. - <<elseif hasAnyArms(getSlave($AS))>> - Another servant takes hold of $his arm, forcing $him to lift it above $his head. - <<else>> - The hands covering $his <<if canSee(getSlave($AS))>>eyes<<else>>head<</if>> draw away, revealing $his crying face, then lift above $his head in a deliberately provocative pose. - <</if>> - $He tenses in a moment of instinctive resistance, then surrenders $his body to $his aids' total control, clearly afraid of punishment. -<</if>> -You remove your clothes and lie back on the office couch, -<<if $PC.dick != 0>> - allowing your exposed, full-mast dick to loll in front of you. -<<else>> - spreading your exposed, oozing twat. -<</if>> -<<if getSlave($AS).devotion > 95>> - Licking $his lips, -<<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - Breathing heavily, -<<else>> - Smiling fakely, -<</if>> -$he draws toward you, half-floating on a river of silent, groping hands. When $he is mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> away from you, $his servants lift $him higher, and $he -<<if $PC.dick != 0>> - teases your dick with a series of masterful — and carefully balanced — belly isolations, rubbing the thick nub of $his belly button in small semicircles around your oozing cockhead as $he does so. Right when you feel ready to explode, $he rotates around, bringing - <<if getSlave($AS).butt > 11>> - $his overgrown, wobbling ass cheeks - <<elseif getSlave($AS).butt > 5>> - $his huge, wobbling ass cheeks - <<elseif Math.floor(getSlave($AS).buttImplant/getSlave($AS).butt) > .60>> - $his saline inflated ass cheeks - <<elseif getSlave($AS).butt > 2>> - $his wobbling ass cheeks - <<else>> - the shallow inverted bowls of $his petite ass cheeks - <</if>> - level with your erection. Two of $his servants reach around $his inflated profile and push $his cheeks together, wrapping your dick in a firm layer of butt cleavage. $He lifts $his ass, then drops it, again and again, smacking your chest on the downswing as $his servants manipulate $his hotdogging to maximize your pleasure. - <<if canDoVaginal(getSlave($AS))>> - When you feel the tension within you reaching its apex, you signal to $his servants to hold $him in place. With $his silent menials, still as statues, anchoring $his bloated body at the perfect angle for fucking while contorting their anonymous bodies to frame $him in a manner that maximizes $his visual attractiveness, you grab hold of $his flanks and ram into $his pregnant pussy, driving $him to the first of many orgasms in just a few casual thrusts. - <<= VCheck.Vaginal(getSlave($AS), 1)>> - When you feel your own orgasm approaching, you pull out, ejaculating - <<elseif canDoAnal(getSlave($AS))>> - When you feel the tension within you reaching its apex, you signal to $his servants to hold $him in place. With $his silent menials, still as statues, anchoring $his bloated body at the perfect angle for fucking while contorting their anonymous bodies to frame $him in a manner that maximizes $his visual attractiveness, you grab hold of $his flanks and ram into $his asshole, driving $him to the first of many orgasms with just a few casual thrusts. - <<= VCheck.Anal(getSlave($AS), 1)>> - When you feel your own orgasm approaching, you pull out, ejaculating - <<else>> - When you feel the tension with your reaching its apex, you signal to $his servants and they pull $him forward. You ejaculate - <</if>> - a thick stream of semen all over $his ass and back, $he shifts into a kneeling position on the ground in front of you, tilted sideways so that $his massive fecundity can pool on the ground beside $him, and gently sucks you off, cleaning your dick with $his mouth. - <<set getSlave($AS).counter.oral++, $oralTotal++>> -<<else>> - Presses the thick nub of $his belly button into your pussy, rubbing it back and forth against your engorged clit as $he performs a series of masterful — and carefully balanced — belly isolations. After $he has you quaking at the edge of release, $he rolls forward and buries $his head in your lap, plying you with $his - <<if getSlave($AS).devotion > 95>> - devoted tongue - <<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - dedicated tongue - <<else>> - tongue - <</if>> - and driving you into a series of crashing orgasms. When $his tongue tires, $he tries to draw away, but you grab hold of $his head and hold $him in place until you are finished. - <<set getSlave($AS).counter.oral++, $oralTotal++>> -<</if>> -Once you are satisfied, you send $him away to clean $himself up before returning to $his duties. diff --git a/src/npc/interaction/fBeg.js b/src/npc/interaction/fBeg.js new file mode 100644 index 0000000000000000000000000000000000000000..b61f3732d8074fcb953272110a847990f41793ba --- /dev/null +++ b/src/npc/interaction/fBeg.js @@ -0,0 +1,710 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fBeg = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, woman, girl + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + const { + hisP, + } = getPronouns(V.PC).appendSuffix("P"); + + const {womenU} = getNonlocalPronouns(V.seeDicks).appendSuffix("U"); + + /* things I need: checks for canWalk() to see how easily she can move, blindness checks, replacement for BoobsDesc, maybe devotion catches for certain flaws */ + /* priority! femPC support! */ + + r.push(`You call ${him} over to you for inspection. ${App.Desc.boobs(slave)}`); /* this part needs expansion */ + r.push(`You look at ${him} lustfully and instruct ${him} to strip.`); + if (slave.sexualFlaw === "shamefast") { + r.push(`Tears well up in ${his} eyes at the idea of showing ${his} naked body.`); + } else if (slave.sexualQuirk === "tease") { + r.push(`${He} blushes with arousal. ${He} has kept ${his} innate embarrassment at the thought of being naked, but you have infused this with overwhelming arousal. ${His} cheeks are red as ${he} removes ${his} clothes, giving quite a strip tease as ${he} does.`); + } else if (slave.sexualFlaw === "repressed") { + r.push(`${He} subconsciously uses ${his} ${hasBothArms(slave) ? `hands` : `hand`} to try to cover ${his} body. ${He} is still repressing ${his} own sexuality. That type of behavior may have been allowed in the old world, but it has no place in a Free City.`); + } else if (slave.sexualFlaw === "idealistic") { + r.push( + `${He} shakes ${his} head pleadingly.`, + Spoken(slave, `"But I don't consent,"`), + `${he} responds. You laugh in such a way that tells ${him} that ${his} consent is irrelevant. ${He} is still idealistic, believing that sex should be a consensual expression of love and intimacy. Such ideas were common in the Old World, but they have no place in a Free City. You decide to grab ${him} and forcefully rip ${his} clothes from ${his} body, since obedience could simply be seen as consent. ${He} screams and plead as you pin ${his} arms, ripping and tearing at the cloth that keeps ${his} beauty from sight.` + ); + } else if (slave.sexualFlaw === "neglectful") { + r.push( + `${He} replies`, + Spoken(slave, `"Yes, ${slave.rudeTitle === 1 ? PoliteRudeTitle(slave) : Master},""`), + `${he} replies contritely. ${He} has no sense of self beyond your usefulness of ${him}, and selflessly sacrifices ${his} own comfort for your pleasure.` + ); + } else if (slave.sexualFlaw === "attention whore") { + r.push(`${He} eagerly begins to shirk ${his} wear, drawing as much attention to the process as possible.`); + } else { + if (slave.devotion < -20) { + r.push(`${He} resists, forcing you to undress ${him} yourself.`); + } else if (slave.devotion >= -20) { + r.push(`${He} obeys, and moves to the center of your office to disrobe for you.`); + } + } + if (slave.devotion >= -20) { + r.push(`${He} begins to undress with`); + if (slave.skill.entertainment >= 100) { + r.push(`masterful skill, teasing and taunting all the way down. ${He} rolls ${his} hips and most sexual parts as ${he} removes ${his} clothing.`); + } else if (slave.skill.entertainment >= 80) { + r.push(`arousing skill. Even though the goal is just to get ${him} naked, your slave knows that ${his} job is to entertain you with ${his} every move.`); + } else if (slave.skill.entertainment >= 50) { + r.push(`notable skill. ${He} takes the opportunity to give you a light strip tease as ${he} undresses.`); + } else if (slave.skill.entertainment >= 20) { + r.push(`a decent effort. ${He} isn't your most entertaining slave, but ${he} still makes an effort to arouse you with ${his} undressing.`); + } else if (slave.skill.entertainment >= 9) { + r.push(`some effort to be sexy. ${His} moves are less than skillful and the undressing is more pragmatic than arousing.`); + } else { + r.push(`no effort to be sexy. ${He} has no entertainment skill, and the only goal of ${his} actions is to go from clothed to naked.`); + } + } + + if (slave.fetishStrength > 60) { + switch (slave.fetish) { + case "submissive": + r.push(`As ${he} begins to strip you grab ${him} without warning and begin to tear off ${his} clothes. Your slave expected you to allow ${him} to obey your command, and so ${he} is initially taken aback by the sudden force but ${his} submissive nature keeps ${him} from resisting. ${He} is such a submissive slut that you feel obligation to push ${his} status even further. You bind ${his} arms tightly behind ${his} back in a leather monoglove, lacing it tighter until ${his} elbows are touching. ${He} gives a soft whimper, but you both know that this is for your benefit and not a protest.`); + if (slave.nipplesPiercing >= 1) { + r.push(`You then retrieve heavy bells and attach them to ${his} nipple rings.`); + } else { + r.push(`You reach into your pocket and retrieve two weighted and belled nipple clamps, attaching them tightly to your slave's delicate nipples.`); + } + r.push(`You tell ${him} to bounce so that they jingle, reminding ${him} of ${his} status.`); + break; + case "masochist": + r.push( + `Once ${he} is fully exposed you give ${him} a firm slap across the tits. ${He}'s a masochist and relishes the pain with sexual arousal. You ask your painslut if ${he} deserves to be punished.`, + Spoken(slave, `"Oh yes, ${slave.rudeTitle === 1 ? PoliteRudeTitle(slave) : Master}. Please punish your little slut."`), + `Sensing that your slave is getting too much enjoyment from ${his} beating, you cease.` + ); + break; + } + } + + r.push(`You stare at the naked figure standing before you.`); + + if (canSee(slave)) { + if (slave.boobsTat === "rude words") { + r.push( + `The words on ${his} chest stand out at you. You ask ${him} what ${his} tits say.`, + Spoken(slave, `"Fuckslave,"`), + `${he} replies. You ask if that's what ${he} is.` + ); + if (slave.behavioralFlaw === "liberated") { + r.push( + Spoken(slave, `"I'm nobody's property. I'm a free ${woman}!"`), + `${he} shoots back.`, + Spoken(slave, `"We shall see," you reply.`) + ); + } else if (slave.devotion < -20) { + r.push(`${He} does ${his} best to shake ${his} head.`); + } else { + r.push(Spoken(slave, `"Yes ${Master}, that's what I am."`)); + } + } else if (slave.boobsTat === "possessive") { + r.push( + `The words on ${his} chest stand out at you. You ask ${him} what ${his} tits say.`, + Spoken(slave, `"It's your personal symbol,"`), + `${he} replies. You ask if that's what ${he} is.` + ); + if (slave.behavioralFlaw === "liberated") { + r.push( + Spoken(slave, `"I'm nobody's property. I'm a free ${woman}!"`), + `${he} shoots back.`, + Spoken(slave, `"We shall see," you reply.`) + ); + } else if (slave.devotion < -20) { + r.push(`${He} does ${his} best to shake ${his} head.`); + } else { + r.push(Spoken(slave, `"Yes, ${Master} that's what I am."`)); + } + } else if (slave.boobsTat === "degradation") { + r.push( + `The words on ${his} chest stand out at you. You ask ${him} what ${his} tits say. "`, + Spoken(slave, `${Master}'s Bitch,"`), + `${he} replies. You ask if that's what ${he} is.`); + if (slave.behavioralFlaw === "liberated") { + r.push( + Spoken(slave, `"I'm nobody's property. I'm a free ${woman}!"`), + `${he} shoots back.`, + Spoken(slave, `"We shall see," you reply.`) + ); + } else if (slave.devotion < -20) { + r.push(`${He} does ${his} best to shake ${his} head.`); + } else { + r.push(Spoken(slave, `"Yes ${Master}, that's what I am."`)); + } + } else { + r.push(`${His} body belongs to you, and your slave needs to remember that.`); + } + } else { + r.push(`${His} body belongs to you, and your slave needs to remember that.`); + } + + r.push(`You then tell your slave to kneel at your feet.`); + if (slave.behavioralFlaw === "bitchy") { + r.push( + `${He} rolls ${his} eyes sasses you a bit,`, + Spoken(slave, `"Whatever,"`), + `${he} scoffs and` + ); + } else if (slave.behavioralFlaw === "arrogant") { + r.push(`${He} stands up even straighter than before,`); + if (hasBothArms(slave)) { + r.push(`crossing ${his} arms and`); + } + r.push(`widening ${his} stance. ${His} arrogance makes obeying commands like this difficult, but that is not your concern. You give ${him} a look that tells ${him} that pain will await if ${he} does not obey. ${He}`); + } else if (slave.behavioralQuirk === "confident") { + r.push(`${He} confidently moves to obey. ${He}`); + } else if (slave.behavioralFlaw === "liberated") { + r.push(`${He} stands up even straighter than before,`); + if (hasBothArms(slave)) { + r.push(`crossing ${his} arms and`); + } + r.push( + `widening ${his} stance.`, + Spoken(slave, `"I am not some animal,"`), + `${he} protests,`, + Spoken(slave, `"I am a free ${woman}."`), + `You laugh at ${his} continued delusions. Liberated ${womenU} have no place in a Free City. You remind ${him} that pain awaits ${him} should ${he} defy you further and ${he}` + ); + } else if (slave.behavioralQuirk === "advocate") { + r.push(`${He} smiles at the demonstration of ${his} rightful place as a lowly slave. ${He}`); + } else if (slave.behavioralFlaw === "odd") { + r.push(`${He} sticks ${his} tongue out at you, blowing raspberries in an act of futile defiance. ${He} really is an odd one. ${He}`); + } else if (slave.behavioralQuirk === "funny") { + r.push(`${He} smiles and turns ${his} butt to you, swaying it cutely as ${his} silly way of acknowledging your command. ${He}`); + } else { + r.push(`${He}`); + } + + if (slave.devotion < -20) { + if (slave.trust < -50) { + r.push(`drops terrified to the ground.`); + } else { + if (!canTalk(slave)) { + r.push(`gestures`); + } else if (SlaveStatsChecker.checkForLisp(slave)) { + r.push(`lisps`); + } else { + r.push(`declares`); + } + r.push(`angrily that slavery is wrong and ${he} will not bow. You look at your assistant who silently summons two other, more obedient slaves from their duties.`); + if (slave.nipplesPiercing > 1) { + r.push(`You reach out and grab ${him} by ${his} nipple chain, pulling ${him} in harshly. ${He} yelps in pain, but knows better than to pull away.`); + } else if (slave.nosePiercing > 1) { + r.push(`You reach out and grab ${him} by ${his} nose ring, pulling ${him} in harshly. ${He} yelps in pain, but knows better than to pull away.`); + } else { + r.push(`You reach out and grab ${him} firmly by the collar.`); + } + r.push(`"One more chance, slut." By now, the other slaves have arrived and are standing loyally by your side. Your loyal slaves force ${him} to`); + if (hasAnyLegs(slave)) { + r.push(`${his} ${hasBothLegs(slave) ? `knees` : `knee`}.`); + } else { + r.push(`the ground.`); + } + } + r.push(`"Head at crotch level," you clarify. "Remember your purpose."`); + } else if (slave.devotion < 20) { + r.push(`is not enthusiastic, but is obedient enough to go down without much threat of discipline.`); + } else if (slave.devotion > 20) { + if (slave.fetishKnown === 1) { + switch (slave.fetish) { + case "submissive": + r.push(`bows ${his} head and humbly assumes ${his} rightful position at ${his} ${getWrittenTitle(slave)}'s feet.`); + break; + case "dom": + r.push(`would rather be standing by your side making your other sluts bow, but ${he} still knows that you are ${his} ${getWrittenTitle(slave)}.`); + break; + case "sadist": + r.push(`would rather be pushing one of your other whores painfully to their knees, but ${he} still obeys.`); + break; + case "masochist": + r.push(`waits just long enough to receive a disciplinary slap, making ${him} blush with arousal as ${he} kneels before you.`); + break; + case "cumslut": + r.push(`is excited to be closer to your`); + if (canTaste(slave)) { + r.push(`delicious`); + } else { + r.push(`heavenly`); + } + r.push(`crotch, and hurries to match ${his} eyes to your`); + if (V.PC.dick > 0) { + r.push(`package.`); + } else { + r.push(`crotch.`); + } + break; + case "humiliation": + r.push(`makes a big show of it as ${he} lowers ${himself} dramatically before you.`); + break; + case "buttslut": + r.push(`leans heavily forward so that ${his} ass sticks out ridiculously far as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`bends ${his} ${hasBothLegs(slave) ? `knees` : `knee`} and`); + } + r.push(`goes to the floor.`); + break; + case "pregnancy": + r.push(`obeys your command and goes to`); + if (hasBothLegs(slave)) { + r.push(`${his} knees.`); + } else { + r.push(`the floor.`); + } + break; + case "boobs": + r.push(`pulls ${his} shoulders back strongly while leaning far enough forward to drag ${his}`); + if (slave.boobs >= 10000) { + r.push(`weighty mammaries`); + } else if (slave.boobs >= 2000) { + r.push(`cumbersome udders`); + } else if (slave.boobs >= 1000) { + r.push(`massive slave tits`); + } else if (slave.boobs >= 800) { + r.push(`forward-thrust breasts`); + } else if (slave.boobs >= 500) { + r.push(`meager chest`); + } else if (slave.boobs <= 400) { + r.push(`pathetic slave boobs`); + } else { + r.push(`tits`); + } + r.push(`across your body as ${he} goes down.`); + break; + default: + r.push(`obeys your command and goes to`); + if (hasBothLegs(slave)) { + r.push(`${his} knees.`); + } else { + r.push(`the floor.`); + } + } + } else { + r.push(`obeys your command and goes to`); + if (hasBothLegs(slave)) { + r.push(`${his} knees.`); + } else { + r.push(`the floor.`); + } + } + } + if (slave.devotion < -20) { + r.push(`The other slaves guide ${him} to adjust ${his} posture so ${his} eyes are directly in line with your`); + if (V.PC.dick > 0) { + r.push(`package.`); + } else { + r.push(`crotch.`); + } + } else { + r.push(`${He} kneels so that ${his} eyes are directly level with your`); + if (V.PC.dick > 0) { + r.push(`package.`); + } else { + r.push(`crotch.`); + } + } + + if (V.PC.dick > 0) { + if (slave.energy > 50) { + r.push(`${He} cant help but stare in lust at your`); + if (V.PC.balls >= 30) { + r.push(`monstrous, massive pair of watermelon sized balls.`); + } else if (V.PC.balls >= 14) { + r.push(`enormous, heavy pair of balls.`); + } else if (V.PC.balls >= 9) { + r.push(`huge pair of balls, bulging like softballs from behind your suit.`); + } else if (V.PC.balls >= 5) { + r.push(`large pair of balls, swinging heavily as you move.`); + } else { + r.push(`manly package.`); + } + } else if (V.PC.scrotum > 0) { + r.push(`Your balls loom directly in front of ${his} face.`); + } + } + + r.push(`Now kneeling at your feet naked before you, your slave waits for ${his} ${getWrittenTitle(slave)}'s command. You take some time to survey the slut's properly displayed body.`); + + if (slave.butt > 6) { + r.push(`${His} massive ass is so huge that ${he} it squishes around ${his} ${hasBothLegs(slave) ? `heels` : `heel`}, almost reaching the floor.`); + } else if (slave.butt > 4) { + r.push(`${His} ${either("ass", "rear end")} is so round and large it rolls out from ${his} back in two perfect mounds. The cheeks are so thick it forms a perfect crevice between them, more than a couple`); + if (V.showInches === 2) { + r.push(`inches`); + } else { + r.push(`centimeters`); + } + r.push(`deep.`); + } else if (slave.butt > 2) { + r.push(`${His} nice ${either("plump", "thick")} ${either("ass", "butt")} curves out noticeably, even while ${he} sits on ${his} ${hasBothLegs(slave) ? `knees` : `knee`}.`); + } else { + r.push(`${His} cute and tight ass rests gently on ${his} ${hasBothLegs(slave) ? `ankles` : `ankle`}.`); + } + + + if (slave.energy > 95) { + r.push(`${His} eyes fill with lust at the helplessness of kneeling at your crotch.`); + } + if (slave.fetishKnown === 1) { + if (slave.fetishStrength > 60) { + switch (slave.fetish) { + case "submissive": + r.push(`${He} keeps ${his} eyes down and poises ${his} body to be fully available to ${his} ${getWrittenTitle(slave)}, trying to model for you the image of the perfect submissive.`); + break; + case "dom": + r.push(`Despite ${his} kneeling stature, ${his} back is straight and shoulders back.`); + break; + case "masochist": + r.push(`${He} positions ${himself} uncomfortably, bringing visual pleasure to you and pain to ${himself}. ${He} accentuates ${his} most sensitive parts, inviting you to slap or spank them.`); + break; + case "cumslut": + r.push(`${he} goes to ${his} ${hasBothLegs(slave) ? `knees` : `knee`}, all the while staring at your`); + const pcCrotch = []; + if (V.PC.dick !== 0) { + pcCrotch.push(`manly bulge`); + } + if (V.PC.vagina !== -1) { + pcCrotch.push(`feminine mound`); + } + r.push(`${toSentence(pcCrotch)}.`); + break; + case "humiliation": + r.push(`${He} eagerly takes to this humiliating position, hoping to demonstrate ${his} willingness to be degraded by ${his} ${getWrittenTitle(slave)}.`); + break; + case "buttslut": + r.push(`${He} positions ${himself}, sticking ${his} butt out as far as ${he} can manage, hoping to draw your attention to ${his} favorite area.`); + break; + case "boobs": + r.push(`${he} kneels with ${his} back strongly arching far back and diligently works to touch ${his} elbows behind ${his} back to best display ${his}`); + if (slave.boobs >= 10000) { + r.push(`colossal mammaries`); + } else if (slave.boobs >= 2000) { + r.push(`gigantic udders`); + } else if (slave.boobs >= 1000) { + r.push(`massive slave tits`); + } else if (slave.boobs >= 800) { + r.push(`prominent breasts`); + } else if (slave.boobs >= 400) { + r.push(`modest chest`); + } else if (slave.boobs <= 400) { + r.push(`pathetic slave boobs`); + } + r.push(`for ${his} ${getWrittenTitle(slave)}.`); + if (slave.lactation > 0) { + r.push(`Milk dribbles down the soft curves of ${his} chest as a further sign of ${his} arousal.`); + } + r.push(`This is, of course, how all slaves are supposed to kneel, but ${he} takes the pose with added dedication.`); + break; + default: + r.push(`${He} positions ${himself} with ${his} ${hasBothLegs(slave) ? `knees` : `knee`} spread wide, hoping that you will turn your attention to`); + if (canDoVaginal(slave)) { + r.push(`${his} wet pussy.`); + } else if (canAchieveErection(slave)) { + r.push(`${his} hard cock.`); + } else { + r.push(`${him}.`); + } + } + } + } + r.push(`You give ${him} permission to speak, and tell ${him} that ${he} may beg ${his} ${getWrittenTitle(slave)}.`); + + if (slave.devotion < -20) { + if (slave.trust < -50) { + switch (slave.rules.punishment) { + case "confinement": + r.push(`Your slave simply`); + if (hasAnyArms(slave)) { + r.push(`presses ${his} ${hasBothArms(slave) ? `hands` : `hand`} together and`); + } + r.push(`begs you not to lock ${him} up in the bad-${girl} box.`); + break; + case "whipping": + r.push(`Your slave simply`); + if (hasAnyArms(slave)) { + r.push(`presses ${his} ${hasBothArms(slave) ? `hands` : `hand`} together and`); + } + r.push(`begs you not to whip ${him}.`); + break; + case "chastity": + if (slave.energy > 60) { + r.push(`Your slave simply presses ${his} ${hasBothArms(slave) ? `hands` : `hand`} together and begs you not to take away ${his} next orgasm`); + } else { + r.push(`Your slave simply asks that you not change ${his} punishment. ${He} fears you, but using chastity as a punishment is not an efficient way to command ${his} obedience, since ${he} has no sexual energy.`); + } + } + } else { + if (slave.behavioralFlaw === "bitchy") { + r.push( + `${He} turns ${his} nose up in utter disgust.`, + Spoken(slave, `"Why, to feed your ${girl === "boy" ? `misandristic` : `misogynistic`} ego? Thanks, but no."`), + `${He} looks at your other slaves holding ${him} down,`, + Spoken(slave, `"Why don't you get one of these mindless cunts to do it? Or are they not hot enough?"`), + `${He} is disobedient and bitchy, a bad combo.`); + } else if (slave.behavioralFlaw === "arrogant") { + r.push( + `${He} tries to cock ${his} shoulders back, giving a death glare to the slaves holding ${him} in place,`, + Spoken(slave, `"I don't need anything from you,"`), + `${he} hisses. ${He} is disobedient and arrogant, a bad combo.` + ); + } else if (slave.behavioralFlaw === "liberated") { + r.push( + `${He} does ${his} best to spit in your face, but the height difference means ${he} only stains your shirt.`, + Spoken(slave, `"I demand you release me!"`), + `${he} scowls,`, + Spoken(slave, `"Or I'm going to call the police!"`), + `You smile at ${his} pathetically outdated worldview. You tell ${him} that's a good idea, since you know how rebellious slaves fare in jail.` + ); + } else if (slave.behavioralFlaw === "odd") { + r.push( + `${He} purses ${his} lips and bounces on ${his} heels in futile rebellion.`, + Spoken(slave, `"Nuh-uh."`), + `${he} puffs, shaking ${his} head wildly.` + ); + } else { + r.push(`${He} simply sits there, struggling against the hands holding ${him} down.`); + } + } + r.push(`This is clearly the best you are going to get out of ${him} until ${he} is better trained. You`); + if (slave.trust >= -50) { + r.push(`signal your loyal slaves to lift ${him} to ${his} feet, and`); + } + r.push(`send ${him} away for now.`); + } else if (slave.devotion < 20) { + if (slave.behavioralFlaw === "bitchy") { + r.push( + `${He} turns ${his} nose up in utter disgust.`, + Spoken(slave, `"Why, to feed your ${girl === "boy" ? `misandristic` : `misogynistic`} ego? Thanks, but no."`), + `${He} looks at your other slaves holding ${him} down,`, + Spoken(slave, `"Why don't you get one of these mindless cunts to do it? Or are they not hot enough?"`), + `${He} is disobedient and bitchy, a bad combo.`); + } else if (slave.behavioralFlaw === "arrogant") { + r.push( + `${He} tries to cock ${his} shoulders back, giving a death glare to the slaves holding ${him} in place,`, + Spoken(slave, `"I don't need anything from you,"`), + `${he} hisses. ${He} is disobedient and arrogant, a bad combo.` + ); + } else if (slave.behavioralFlaw === "liberated") { + r.push(`${He} does ${his} best to spit in your face, but the height difference means ${he} only stains your shirt.`, + Spoken(slave, `"I demand you release me!"`), + `${he} scowls,`, + Spoken(slave, `"Or I'm going to call the police!"`), + `You smile at ${his} pathetically outdated worldview. You tell ${him} that's a good idea, since you know how rebellious slaves fair in jail.` + ); + } else if (slave.behavioralFlaw === "odd") { + r.push( + `${He} purses ${his} lips and bounces on ${his} heels in futile rebellion.`, + Spoken(slave, `"Nuh-uh."`), + `${he} puffs, shaking ${his} head wildly.` + ); + } else if (slave.sexualFlaw === "shamefast") { + r.push( + `${He} tries to cover ${his} naked body from your gaze`, + Spoken(slave, `"Please, can I just put some clothes on?"`) + ); + } else { + r.push( + `${He} looks up at you with a sudden glimpse of hope, and begins to plead,`, + Spoken(slave, `"Please, sir, please set me free. I don't want to be here.`) + ); + if (slave.energy < 50) { + r.push(Spoken(slave, `I have no desire for sex. I don't want to be your toy! Please let me go."`)); + } else { + r.push(Spoken(slave, `I might even come back to share consensual love with you. I just don't want to be property. Please, let me go."`)); + } + } + r.push(`You tell your slave to rise to ${his} feet. Even though ${he} desired the impossible, it wasn't a total waste. You feel as though you have a pretty good understanding of where your slave stands. You send ${him} away with ${his} request denied, and you resolve to break ${him} more in the coming weeks.`); + } else if (slave.devotion <= 60) { + r.push(`Your slave looks at ${his} ${getWrittenTitle(slave)} with obedient eyes.`); + } else if (slave.devotion <= 100) { + r.push(`Your devoted slave takes the begging position,`); + if (slave.fetish !== "submissive") { + r.push(`${he} even brings ${his} ${hasBothArms(slave) ? `hands` : `hand`} up like a dog's paws.`); + } else { + if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`and ${he} bows ${his} head in total submission.`); + if (slave.nipplesPiercing > 0) { + r.push(`The armbinder thrusts ${his} tits out nicely, and ${his} nipple rings are pulled tight by the weighted bells weighing them down.`); + } else if (slave.nipplesPiercing > 1) { + r.push(`The armbinder thrusts ${his} tits out nicely, and ensures that ${his} nipple chains are pulled tight by the angle of ${his} shoulders. The bells on ${his} nipple piercings jungle sweetly as ${he} breathes.`); + } else { + r.push(`The armbinder thrusts ${his} tits out nicely and ${his} nipples are now red from the clamps pressing down hard on ${his} sensitive flesh. Every painful shudder makes the bells jungle ever so sweetly.`); + } + } else { + r.push(`${he} even brings ${his} ${hasBothArms(slave) ? `hands` : `hand`} up like a dog's paws.`); + } + } + + r.push(Spoken(slave, `"Yes Master. Thank you, ${Master}."`)); + r.push(`${He} is fully subservient to you, and would do anything to please you.`); + } + + if (slave.devotion > 20) { + /* eventually plan to make a string of Paraphilia text, which will be stronger versions of their fetish counterparts. */ + if (slave.fetishKnown === 1) { + if (slave.fetishStrength > 60) { + switch (slave.fetish) { + case "submissive": + r.push( + `${He} adjusts ${his} monoglove behind ${his} back, jingling ${his} nipple bells as ${he} does.`, + Spoken(slave, `"Please ${Master},"`), + `${he} begs with genuine humility,`, + Spoken(slave, `"please use your slave in whatever way you see fit. This slave has no purpose but to please ${his} ${Master}."`) + ); + break; + case "dom": + r.push( + `${He} looks up at you. Even from ${his} kneeling position ${his} eyes carry confident domination.`, + Spoken(slave, `"${Master}, I know my place is beneath you. Give me the authority to lord over your other slaves and I will force them to serve you as I do."`) + ); + break; + case "masochist": + r.push( + Spoken(slave, `"I know I haven't disobeyed,"`), + `${he} begins,`, + Spoken(slave, `"but I just need to be punished."`), + `You smile down at your little painslut, running your finger along ${his} chin.`, + Spoken(slave, `"Please ${Master}, beat me. Beat my ass until it's red and clamp my nipples until they bleed. Please! I need to feel your strength!"`) + ); + break; + case "cumslut": + r.push(`Your little cumslut can't stop staring at your`); + if (V.PC.balls >= 30) { + r.push(`monstrous, massive pair of watermelon sized balls.`); + } else if (V.PC.balls >= 14) { + r.push(`enormous, heavy pair of balls.`); + } else if (V.PC.balls >= 9) { + r.push(`huge pair of balls, bulging like softballs from behind your suit.`); + } else if (V.PC.balls >= 5) { + r.push(`large pair of balls, swinging heavily as you move.`); + } else { + r.push(`crotch.`); + } + r.push( + `Drool begins to drip from ${his} lips, and you have to remind your slave that ${he} is here to beg.`, + Spoken(slave, `"${Master},"`), + `${he} breathes heavily,`, + Spoken(slave, `"Please let me`) + ); + if (V.PC.dick !== 0) { + r.push(Spoken(slave, `suck your magnificent`)); + if (V.PC.vagina !== -1) { + r.push(Spoken(slave, `cock and eat you out,`)); + } else { + r.push(Spoken(slave, `cock,`)); + } + } else { + r.push(Spoken(slave, `eat your delicious pussy,`)); + } + r.push(Spoken(slave, `please."`)); + r.push(`You smile at the little cocksucker, so eager to please.`); + break; + case "humiliation": + r.push(`${He} sits so that ${his} body is on full display,`); + r.push(Spoken(slave, `"Please ${Master}, use me and humiliate me. Take me out to the public square so that everyone can see you overpower me."`)); + break; + case "buttslut": + r.push( + `${He} positions ${his} back so ${his} ass sticks out even further`, + Spoken(slave, `"${Master},"`), + `${he} begs,`, + Spoken(slave, `"use my ass! ${(slave.sexualQuirk === "painal queen") ? `Make me squeal! ` : ``}I just need your cock in my most useful fuckhole, please!"`) + ); + break; + case "boobs": + r.push(`${He}`); + if (!hasAnyArms(slave)) { + r.push(`leans ${his} head back and juts out ${his} tits, raising`); + } else { + r.push(`takes ${his} ${hasBothArms(slave) ? `hands` : `hand`} and presses ${his} tits together, lifting`); + } + r.push(`them to display for you ${his} primary purpose in life.`); + if (slave.lactation > 0) { + r.push(`More milk`); + if (!hasAnyArms(slave)) { + r.push(`dribbles`); + } else { + r.push(`squirts`); + } + r.push(`from each teat as ${he} bears them.`); + } + r.push(Spoken(slave, `"I beg of you, ${Master}, I need you to use my tits. Suck them, squeeze them, fuck them, I cannot cum without you using my slave tits! I am nothing more than a ${canWalk(slave) ? `walking ` : ``}tit-carrier, and my only purpose is to offer these breasts to you."`)); + break; + case "pregnancy": + r.push(`${He} begins to`); + if (hasAnyArms(slave)) { + r.push(`caress`); + } else { + r.push(`stick out`); + } + r.push( + `${his} stomach.`, + Spoken(slave, `"Use me as your breeder, ${Master}, please! I just want to be filled with your seed forever!"`) + ); + break; + default: + r.push(`${He} kneels`); + if (hasBothLegs(slave)) { + r.push(`with ${his} legs far spread.`); + } else { + r.push(`on the floor.`); + } + r.push(Spoken(slave, `"Use my fuckhole ${Master}, I beg you. Please, I need you to fuck me!"`)); + } + } else { + r.push( + Spoken(slave, `"${Master}, I exist to serve you."`), + `${He} ${say}s,`, + Spoken(slave, `"I have no other purpose in life. I beg of you, please never let me leave your service. Let me wait on you forever. I swear I will always be obedient. Let me cook your meals, clean your penthouse, care for your other slaves, even make me a cow. I don't care, as long as I'm here serving you."`), + `${He} knows that ${his} rightful place is a slave, and ${he} is dedicated to living out that role to the fullest.` + ); + if (slave.behavioralQuirk === "advocate") { + r.push(Spoken(slave, `"I see now," ${he} continues, "that slavery really is a ${woman}'s rightful place. ${He} has no purpose except to serve ${his} ${Master}."`)); + } + } + } else { + r.push( + Spoken(slave, `"${Master}, I exist to serve you."`), + `${He} says,`, + Spoken(slave, `"I have no other purpose in life. I beg of you, please never let me leave your service. Let me wait on you forever. I swear I will always be obedient. Let me cook your meals, clean your penthouse, care for your other slaves, even make me a cow. I don't care, as long as I'm here serving you."`), + `${He} knows that ${his} rightful place is a slave, and ${he} is dedicated to living out that role to the fullest.` + ); + if (slave.behavioralQuirk === "advocate") { + r.push( + Spoken(slave, `"I see now,"`), + `${he} continues,`, + Spoken(slave, `"that slavery really is a ${woman}'s rightful place. ${He} has no purpose except to serve ${his} ${Master}."`) + ); + } + } + r.push(`You smile at your obedient little slave, and agree to grant ${his} request.`); + } + + if (random(1, 100) > (100 + slave.devotion)) { + if (slave.fetish !== "submissive" && slave.energy <= 95 && slave.behavioralFlaw !== "liberated") { + r.push(`Seeing the humiliating acts your slaves are expected to perform has made ${him} <span class="red">determined to be free.</span>`); + slave.behavioralFlaw = "liberated"; + } + } else if (random(1, 100) > (110 - slave.devotion)) { + if (slave.fetish === "none" && slave.behavioralFlaw !== "liberated") { + r.push(`Feeling the joy of kneeling before such a powerful ${getWrittenTitle(slave)}`); + + r.push(`and begging at ${hisP} feet has <span class="lightcoral">encouraged ${him} to be more submissive.</span>`); + slave.fetish = "submissive"; + slave.fetishKnown = 1; + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fBeg.tw b/src/npc/interaction/fBeg.tw deleted file mode 100644 index 67a2bb7eb50e4dd41922a5692c2afbf059978eb8..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fBeg.tw +++ /dev/null @@ -1,440 +0,0 @@ -:: FBeg [nobr no-history] - -/* things I need: checks for canWalk() to see how easily she can move, blindness checks, replacement for BoobsDesc, maybe devotion catches for certain flaws */ -/* priority! femPC support! */ - -<<setPlayerPronouns>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run Enunciate(getSlave($AS))>> -<<set _temp = getSlave($AS)>> -<<setSpokenLocalPronouns _temp _temp>> - -You call $him over to you for inspection. -<<print App.Desc.boobs(getSlave($AS))>> /* this part needs expansion */ -You look at $him lustfully and instruct $him to strip. -<<if (getSlave($AS).sexualFlaw == "shamefast")>> - Tears well up in $his eyes at the idea of showing $his naked body. -<<elseif (getSlave($AS).sexualQuirk == "tease")>> - $He blushes with arousal. $He has kept $his innate embarrassment at the thought of being naked, but you have infused this with overwhelming arousal. $His cheeks are red as $he removes $his clothes, giving quite a strip tease as $he does. -<<elseif (getSlave($AS).sexualFlaw == "repressed")>> - $He subconsciously uses $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> to try to cover $his body. $He is still repressing $his own sexuality. That type of behavior may have been allowed in the old world, but it has no place in a Free City. -<<elseif (getSlave($AS).sexualFlaw == "idealistic")>> - $He shakes $his head pleadingly. "But I don't con<<s>>ent," $he responds. You laugh in such a way that tells $him that $his consent is irrelevant. $He is still idealistic, believing that sex should be a consensual expression of love and intimacy. Such ideas were common in the Old World, but they have no place in a Free City. You decide to grab $him and forcefully rip $his clothes from $his body, since obedience could simply be seen as consent. $He screams and plead as you pin $his arms, ripping and tearing at the cloth that keeps $his beauty from sight. -<<elseif (getSlave($AS).sexualFlaw == "neglectful")>> - $He replies "Ye<<s>>, - <<if getSlave($AS).rudeTitle == 1>> - <<= PoliteRudeTitle(getSlave($AS))>>," - <<else>> - <<Master>>," - <</if>> - $he replies contritely. $He has no sense of self beyond your usefulness of $him, and selflessly sacrifices $his own comfort for your pleasure. -<<elseif (getSlave($AS).sexualFlaw == "attention whore")>> - $He eagerly begins to shirk $his wear, drawing as much attention to the process as possible. -<<else>> - <<if (getSlave($AS).devotion < -20)>> - $He resists, forcing you to undress $him yourself. - <<elseif (getSlave($AS).devotion >= -20)>> - $He obeys, and moves to the center of your office to disrobe for you. - <</if>> -<</if>> -<<if (getSlave($AS).devotion >= -20)>> - $He begins to undress with - <<if (getSlave($AS).skill.entertainment >= 100)>> - masterful skill, teasing and taunting all the way down. $He rolls $his hips and most sexual parts as $he removes $his clothing. - <<elseif (getSlave($AS).skill.entertainment >= 80)>> - arousing skill. Even though the goal is just to get $him naked, your slave knows that $his job is to entertain you with $his every move. - <<elseif (getSlave($AS).skill.entertainment >= 50)>> - notable skill. $He takes the opportunity to give you a light strip tease as $he undresses. - <<elseif (getSlave($AS).skill.entertainment >= 20)>> - a decent effort. $He isn't your most entertaining slave, but $he still makes an effort to arouse you with $his undressing. - <<elseif (getSlave($AS).skill.entertainment >= 9)>> - some effort to be sexy. $His moves are less than skillful and the undressing is more pragmatic than arousing. - <<else>> - no effort to be sexy. $He has no entertainment skill, and the only goal of $his actions is to go from clothed to naked. - <</if>> -<</if>> - -<<if (getSlave($AS).fetishStrength > 60)>> - <<switch getSlave($AS).fetish>> - <<case "submissive">> - As $he begins to strip you grab $him without warning and begin to tear off $his clothes. Your slave expected you to allow $him to obey your command, and so $he is initially taken aback by the sudden force but $his submissive nature keeps $him from resisting. $He is such a submissive slut that you feel obligation to push $his status even further. You bind $his arms tightly behind $his back in a leather monoglove, lacing it tighter until $his elbows are touching. $He gives a soft whimper, but you both know that this is for your benefit and not a protest. - <<if (getSlave($AS).nipplesPiercing >= 1)>> - You then retrieve heavy bells and attach them to $his nipple rings. - <<else>> - You reach into your pocket and retrieve two weighted and belled nipple clamps, attaching them tightly to your slave's delicate nipples. - <</if>> - You tell $him to bounce so that they jingle, reminding $him of $his status. - <<case "masochist">> - Once $he is fully exposed you give $him a firm slap across the tits. $He's a masochist and relishes the pain with sexual arousal. You ask your painslut if $he deserves to be punished. "Oh ye<<s>>, - <<if getSlave($AS).rudeTitle == 1>> - <<= PoliteRudeTitle(getSlave($AS))>>. - <<else>> - <<Master>>. - <</if>> - Plea<<s>>e puni<<sh>> your little <<s>>lut." Sensing that your slave is getting too much enjoyment from $his beating, you cease. - <</switch>> -<</if>> - -You stare at the naked figure standing before you. - -<<if canSee(getSlave($AS))>> - <<if (getSlave($AS).boobsTat == "rude words")>> - The words on $his chest stand out at you. You ask $him what $his tits say. "Fuck<<s>>lave," $he replies. You ask if that's what $he is. - <<if (getSlave($AS).behavioralFlaw == "liberated")>> - "I'm nobody'<<s>> property. I'm a free $woman!" $he shoots back. "We shall see," you reply. - <<elseif (getSlave($AS).devotion < -20)>> - $He does $his best to shake $his head. - <<else>> - "Yes <<Master>>, that'<<s>> what I am." - <</if>> - <<elseif (getSlave($AS).boobsTat == "possessive")>> - The words on $his chest stand out at you. You ask $him what $his tits say. "It'<<s>> your per<<s>>onal <<s>>ymbol," $he replies. You ask if that's what $he is. - <<if (getSlave($AS).behavioralFlaw == "liberated")>> - "I'm nobody'<<s>> property. I'm a free $woman!" $he shoots back. "We shall see," you reply. - <<elseif (getSlave($AS).devotion < -20)>> - $He does $his best to shake $his head. - <<else>> - "Ye<<s>> <<Master>>, that'<<s>> what I am." - <</if>> - <<elseif (getSlave($AS).boobsTat == "degradation")>> - The words on $his chest stand out at you. You ask $him what $his tits say. "<<Master>>'<<s>> Bitch," $he replies. You ask if that's what $he is. - <<if (getSlave($AS).behavioralFlaw == "liberated")>> - "I'm nobody'<<s>> property. I'm a free $woman!" $he shoots back. "We shall see," you reply. - <<elseif (getSlave($AS).devotion < -20)>> - $He does $his best to shake $his head. - <<else>> - "Ye<<s>> <<Master>>, that'<<s>> what I am." - <</if>> - <<else>> - $His body belongs to you, and your slave needs to remember that. - <</if>> -<<else>> - $His body belongs to you, and your slave needs to remember that. -<</if>> - -You then tell your slave to kneel at your feet. -<<if (getSlave($AS).behavioralFlaw == "bitchy")>> - $He rolls $his eyes sasses you a bit, "Whatever," $he scoffs and -<<elseif (getSlave($AS).behaviorFlaw == "arrogant")>> - $He stands up even straighter than before, <<if (hasBothArms(getSlave($AS)))>>crossing $his arms and <</if>>widening $his stance. $His arrogance makes obeying commands like this difficult, but that is not your concern. You give $him a look that tells $him that pain will await if $he does not obey. $He -<<elseif (getSlave($AS).behavioralQuirk == "confident")>> - $He confidently moves to obey. $He -<<elseif (getSlave($AS).behavioralFlaw == "liberated")>> - $He stands up even straighter than before, <<if (hasBothArms(getSlave($AS)))>>crossing $his arms and <</if>>widening $his stance. "I am not <<s>>ome animal," $he protests, "I am a free $woman." You laugh at $his continued delusions. Liberated $women have no place in a Free City. You remind $him that pain awaits $him should $he defy you further and $he -<<elseif (getSlave($AS).behavioralQuirk == "advocate")>> - $He smiles at the demonstration of $his rightful place as a lowly slave. $He -<<elseif (getSlave($AS).behavioralFlaw == "odd")>> - $He sticks $his tongue out at you, blowing raspberries in an act of futile defiance. $He really is an odd one. $He -<<elseif (getSlave($AS).behavioralQuirk == "funny")>> - $He smiles and turns $his butt to you, swaying it cutely as $his silly way of acknowledging your command. $He -<<else>> - $He -<</if>> - -<<if (getSlave($AS).devotion < -20)>> - <<if (getSlave($AS).trust < -50)>> - drops terrified to the ground. - <<else>> - <<if !canTalk(getSlave($AS))>> - gestures - <<elseif (_lisping == 1)>> - lisps - <<else>> - declares - <</if>> - angrily that slavery is wrong and $he will not bow. You look at your assistant who silently summons two other, more obedient slaves from their duties. - <<if (getSlave($AS).nipplesPiercing > 1)>> - You reach out and grab $him by $his nipple chain, pulling $him in harshly. $He yelps in pain, but knows better than to pull away. - <<elseif (getSlave($AS).nosePiercing > 1)>> - You reach out and grab $him by $his nose ring, pulling $him in harshly. $He yelps in pain, but knows better than to pull away. - <<else>> - You reach out and grab $him firmly by the collar. - <</if>> - "One more chance, slut." By now, the other slaves have arrived and are standing loyally by your side. Your loyal slaves force $him to <<if hasAnyLegs(getSlave($AS))>>$his knee<<if hasBothLegs(getSlave($AS))>>s<</if>><<else>>the ground<</if>>. - <</if>> - "Head at crotch level," you clarify. "Remember your purpose." -<<elseif (getSlave($AS).devotion < 20)>> - is not enthusiastic, but is obedient enough to go down without much threat of discipline. -<<elseif (getSlave($AS).devotion > 20)>> - <<if (getSlave($AS).fetishKnown == 1)>> - <<switch getSlave($AS).fetish>> - <<case "submissive">> - bows $his head and humbly assumes $his rightful position at $his <<= getWrittenTitle(getSlave($AS))>>'s feet. - <<case "dom">> - would rather be standing by your side making your other sluts bow, but $he still knows that you are $his <<= getWrittenTitle(getSlave($AS))>>. - <<case "sadist">> - would rather be pushing one of your other whores painfully to their knees, but $he still obeys. - <<case "masochist">> - waits just long enough to receive a disciplinary slap, making $him blush with arousal as $he kneels before you. - <<case "cumslut">> - is excited to be closer to your <<if canTaste(getSlave($AS))>>delicious<<else>>heavenly<</if>> crotch, and hurries to match $his eyes to your <<if $PC.dick > 0>>package<<else>>crotch<</if>>. - <<case "humiliation">> - makes a big show of it as $he lowers $himself dramatically before you. - <<case "buttslut">> - leans heavily forward so that $his ass sticks out ridiculously far as $he <<if hasAnyLegs(getSlave($AS))>>bends $his knee<<if hasBothLegs(getSlave($AS))>>s<</if>> and <</if>>goes to the floor. - <<case "pregnancy">> - obeys your command and goes to <<if hasBothLegs(getSlave($AS))>>$his knees<<else>>the floor<</if>>. - <<case "boobs">> - pulls $his shoulders back strongly while leaning far enough forward to drag $his - <<if (getSlave($AS).boobs >= 10000)>> - weighty mammaries - <<elseif (getSlave($AS).boobs >= 2000)>> - cumbersome udders - <<elseif (getSlave($AS).boobs >= 1000)>> - massive slave tits - <<elseif (getSlave($AS).boobs >= 800)>> - forward-thrust breasts - <<elseif (getSlave($AS).boobs >= 500)>> - meager chest - <<elseif (getSlave($AS).boobs <= 400)>> - pathetic slave boobs - <<else>> - tits - <</if>> - across your body as $he goes down. - <<default>> - obeys your command and goes to <<if hasBothLegs(getSlave($AS))>>$his knees<<else>>the floor<</if>>. - <</switch>> - <<else>> - obeys your command and goes to <<if hasBothLegs(getSlave($AS))>>$his knees<<else>>the floor<</if>>. - <</if>> -<</if>> -<<if (getSlave($AS).devotion < -20)>> - The other slaves guide $him to adjust $his posture so $his eyes are directly in line with your <<if $PC.dick > 0>>package<<else>>crotch<</if>>. -<<else>> - $He kneels so that $his eyes are directly level with your <<if $PC.dick > 0>>package<<else>>crotch<</if>>. -<</if>> - -<<if $PC.dick > 0>> - <<if (getSlave($AS).energy > 50)>> - $He cant help but stare in lust at your - <<if $PC.balls >= 30>> - monstrous, massive pair of watermelon sized balls. - <<elseif $PC.balls >= 14>> - enormous, heavy pair of balls. - <<elseif $PC.balls >= 9>> - huge pair of balls, bulging like softballs from behind your suit. - <<elseif $PC.balls >= 5>> - large pair of balls, swinging heavily as you move. - <<else>> - manly package. - <</if>> - <<elseif $PC.scrotum > 0>> - Your balls loom directly in front of $his face. - <</if>> -<</if>> - -Now kneeling at your feet naked before you, your slave waits for $his <<= getWrittenTitle(getSlave($AS))>>'s command. You take some time to survey the slut's properly displayed body. -<<if getSlave($AS).butt > 6>> - $His massive ass is so huge that $he it squishes around $his heel<<if hasBothLegs(getSlave($AS))>>s<</if>>, almost reaching the floor. -<<elseif getSlave($AS).butt > 4>> - $His <<print either("ass", "rear end")>> is so round and large it rolls out from $his back in two perfect mounds. The cheeks are so thick it forms a perfect crevice between them, more than a couple <<if $showInches == 2>>inches<<else>>centimeters<</if>> deep. -<<elseif getSlave($AS).butt > 2>> - $His nice <<print either("plump", "thick")>> <<print either("ass", "butt")>> curves out noticeably, even while $he sits on $his knee<<if hasBothLegs(getSlave($AS))>>s<</if>>. -<<else>> - $His cute and tight ass rests gently on $his ankle<<if hasBothLegs(getSlave($AS))>>s<</if>>. -<</if>> - - -<<if (getSlave($AS).energy > 95)>> - $His eyes fill with lust at the helplessness of kneeling at your crotch. -<</if>> -<<if (getSlave($AS).fetishKnown == 1)>> - <<if (getSlave($AS).fetishStrength > 60)>> - <<switch getSlave($AS).fetish>> - <<case "submissive">> - $He keeps $his eyes down and poises $his body to be fully available to $his <<= getWrittenTitle(getSlave($AS))>>, trying to model for you the image of the perfect submissive. - <<case "dom">> - Despite $his kneeling stature, $his back is straight and shoulders back. - <<case "masochist">> - $He positions $himself uncomfortably, bringing visual pleasure to you and pain to $himself. $He accentuates $his most sensitive parts, inviting you to slap or spank them. - <<case "cumslut">> - $he goes to $his knee<<if hasBothLegs(getSlave($AS))>>s<</if>>, all the while staring at your <<if $PC.dick != 0>>manly bulge<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>feminine mound<</if>>. - <<case "humiliation">> - $He eagerly takes to this humiliating position, hoping to demonstrate $his willingness to be degraded by $his <<= getWrittenTitle(getSlave($AS))>>. - <<case "buttslut">> - $He positions $himself, sticking $his butt out as far as $he can manage, hoping to draw your attention to $his favorite area. - <<case "boobs">> - $he kneels with $his back strongly arching far back and diligently works to touch $his elbows behind $his back to best display $his - <<if (getSlave($AS).boobs >= 10000)>> - colossal mammaries - <<elseif (getSlave($AS).boobs >= 2000)>> - gigantic udders - <<elseif (getSlave($AS).boobs >= 1000)>> - massive slave tits - <<elseif (getSlave($AS).boobs >= 800)>> - prominent breasts - <<elseif (getSlave($AS).boobs >= 400)>> - modest chest - <<elseif (getSlave($AS).boobs <= 400)>> - pathetic slave boobs - <</if>> - for $his <<= getWrittenTitle(getSlave($AS))>>. - <<if (getSlave($AS).lactation > 0)>> - Milk dribbles down the soft curves of $his chest as a further sign of $his arousal. - <</if>> - This is, of course, how all slaves are supposed to kneel, but $he takes the pose with added dedication. - <<default>> - $He positions $himself with $his knee<<if hasBothLegs(getSlave($AS))>>s<</if>> spread wide, hoping that you will turn your attention to <<if canDoVaginal(getSlave($AS))>>$his wet pussy<<elseif canAchieveErection(getSlave($AS))>>$his hard cock<<else>>$him<</if>>. - <</switch>> - <</if>> -<</if>> -You give $him permission to speak, and tell $him that $he may beg $his <<= getWrittenTitle(getSlave($AS))>>. - -<<if (getSlave($AS).devotion < -20)>> - <<if (getSlave($AS).trust < -50)>> - <<switch getSlave($AS).rules.punishment>> - <<case "confinement">> - Your slave simply <<if hasAnyArms(getSlave($AS))>>presses $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> together and <</if>>begs you not to lock $him up in the bad-<<= $girl>> box. - <<case "whipping">> - Your slave simply <<if hasAnyArms(getSlave($AS))>>presses $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> together and <</if>>begs you not to whip $him. - <<case "chastity">> - <<if (getSlave($AS).energy > 60)>> - Your slave simply presses $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> together and begs you not to take away $his next orgasm - <<else>> - Your slave simply asks that you not change $his punishment. $He fears you, but using chastity as a punishment is not an efficient way to command $his obedience, since $he has no sexual energy. - <</if>> - <</switch>> - <<else>> - <<if (getSlave($AS).behavioralFlaw == "bitchy")>> - $He turns $his nose up in utter disgust. "Why, to feed your <<if $girl == "boy">>mi<<s>>andri<<s>>tic<<else>>mi<<s>>ogyni<<s>>tic<</if>> ego? Thank<<s>>, but no." $He looks at your other slaves holding $him down, "Why don't you get one of these mindle<<ss>> cunt<<s>> to do it? Or are they not hot enough?" $He is disobedient and bitchy, a bad combo. - <<elseif (getSlave($AS).behaviorFlaw == "arrogant")>> - $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you," $he hisses. $He is disobedient and arrogant, a bad combo. - <<elseif (getSlave($AS).behavioralFlaw == "liberated")>> - $He does $his best to spit in your face, but the height difference means $he only stains your shirt. "I demand you relea<<s>>e me!" $he scowls, "Or I'm going to call the poli<<c>>e!" You smile at $his pathetically outdated worldview. You tell $him that's a good idea, since you know how rebellious slaves fare in jail. - <<elseif (getSlave($AS).behavioralFlaw == "odd")>> - $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly. - <<else>> - $He simply sits there, struggling against the hands holding $him down. - <</if>> - <</if>> - This is clearly the best you are going to get out of $him until $he is better trained. You - <<if (getSlave($AS).trust >= -50)>> - signal your loyal slaves to lift $him to $his feet, and - <</if>> - send $him away for now. -<<elseif (getSlave($AS).devotion < 20)>> - <<if (getSlave($AS).behavioralFlaw == "bitchy")>> - $He turns $his nose up in utter disgust. "Why, to feed your <<if $girl == "boy">>mi<<s>>andri<<s>>tic<<else>>mi<<s>>ogyni<<s>>tic<</if>> ego? Thank<<s>>, but no." $He looks at your other slaves holding $him down, "Why don't you get one of the<<s>>e mindle<<ss>> cunt<<s>> to do it? Or are they not hot enough?" $He is disobedient and bitchy, a bad combo. - <<elseif (getSlave($AS).behaviorFlaw == "arrogant")>> - $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you," $he hisses. $He is disobedient and arrogant, a bad combo. - <<elseif (getSlave($AS).behavioralFlaw == "liberated")>> - $He does $his best to spit in your face, but the height difference means $he only stains your shirt. "I demand you relea<<s>>e me!" $he scowls, "Or I'm going to call the poli<<c>>e!" You smile at $his pathetically outdated worldview. You tell $him that's a good idea, since you know how rebellious slaves fair in jail. - <<elseif (getSlave($AS).behavioralFlaw == "odd")>> - $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly. - <<elseif (getSlave($AS).sexualFlaw == "shamefast")>> - $He tries to cover $his naked body from your gaze "Plea<<s>>e, can I ju<<s>>t put <<s>>ome clothe<<s>> on?" - <<else>> - $He looks up at you with a sudden glimpse of hope, and begins to plead, "Plea<<s>>e, <<s>>ir, plea<<s>>e <<s>>et me free. I don't want to be here. - <<if (getSlave($AS).energy < 50)>> - I have no de<<s>>ire for <<s>>e<<x>>. I don't want to be your toy! Plea<<s>>e let me go." - <<else>> - I might even come back to <<sh>>are con<<s>>en<<s>>ual love with you. I ju<<s>>t don't want to be property. Plea<<s>>e, let me go." - <</if>> - <</if>> - You tell your slave to rise to $his feet. Even though $he desired the impossible, it wasn't a total waste. You feel as though you have a pretty good understanding of where your slave stands. You send $him away with $his request denied, and you resolve to break $him more in the coming weeks. -<<elseif (getSlave($AS).devotion <= 60)>> - Your slave looks at $his <<= getWrittenTitle(getSlave($AS))>> with obedient eyes. -<<elseif (getSlave($AS).devotion <= 100)>> - Your devoted slave takes the begging position, - <<if (getSlave($AS).fetish != "submissive")>> - $he even brings $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> up like a dog's paws. - <<else>> - <<if (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - and $he bows $his head in total submission. - <<if (getSlave($AS).nipplesPiercing > 0)>> - The armbinder thrusts $his tits out nicely, and $his nipple rings are pulled tight by the weighted bells weighing them down. - <<elseif (getSlave($AS).nipplesPiercing > 1)>> - The armbinder thrusts $his tits out nicely, and ensures that $his nipple chains are pulled tight by the angle of $his shoulders. <<BoobWatch>> The bells on $his nipple piercings jungle sweetly as $he breathes. - <<else>> - The armbinder thrusts $his tits out nicely and $his nipples are now red from the clamps pressing down hard on $his sensitive flesh. Every painful shudder makes the bells jungle ever so sweetly. - <</if>> - <<else>> - $he even brings $his hand<<if hasBothArms(getSlave($AS))>>s<</if>> up like a dog's paws. - <</if>> - <</if>> - "Ye<<s>> Ma<<s>>ter. Thank you, <<Master>>." $He is fully subservient to you, and would do anything to please you. -<</if>> - -<<if (getSlave($AS).devotion > 20)>> -/*eventually plan to make a string of Paraphilia text, which will be stronger versions of their fetish counterparts. */ - <<if (getSlave($AS).fetishKnown == 1)>> - <<if (getSlave($AS).fetishStrength > 60)>> - <<switch getSlave($AS).fetish>> - <<case "submissive">> - $He adjusts $his monoglove behind $his back, jingling $his nipple bells as $he does "Plea<<s>>e <<Master>>," $he begs with genuine humility, "Plea<<s>>e use your slave in whatever way you see fit. This <<s>>lave has no purpose but to please $his <<Master>>" - <<case "dom">> - $He looks up at you. Even from $his kneeling position $his eyes carry confident domination. "<<Master>>, I know my pla<<c>>e i<<s>> beneath you. Give me the authority to lord over your other <<s>>lave<<s>> and I will for<<c>>e them to <<s>>erve you a<<s>> I do." - <<case "masochist">> - "I know I haven't di<<s>>obeyed," $he begins, "but I ju<<s>>t need to be puni<<sh>>ed." You smile down at your little painslut, running your finger along $his chin. "Plea<<s>>e <<Master>>, beat me. Beat my a<<ss>> until it'<<s>> red and clamp my nipple<<s>> until they bleed. Plea<<s>>e! I need to feel your <<s>>trength!" - <<case "cumslut">> - Your little cumslut can't stop staring at your - <<if $PC.balls >= 30>> - monstrous, massive pair of watermelon sized balls. - <<elseif $PC.balls >= 14>> - enormous, heavy pair of balls. - <<elseif $PC.balls >= 9>> - huge pair of balls, bulging like softballs from behind your suit. - <<elseif $PC.balls >= 5>> - large pair of balls, swinging heavily as you move. - <<else>> - crotch. - <</if>> - Drool begins to drip from $his lips, and you have to remind your slave that $he is here to beg. - "<<Master>>," $he breathes heavily, "Plea<<s>>e let me - <<if $PC.dick != 0>> - <<s>>uck your magnifi<<c>>ent - <<if $PC.vagina != -1>> - cock and eat you out, - <<else>> - cock, - <</if>> - <<else>> - eat your deli<<c>>iou<<s>> pu<<ss>>y, - <</if>> - plea<<s>>e." You smile at the little cocksucker, so eager to please. - <<case "humiliation">> - $He sits so that $his body is on full display, "Plea<<s>>e <<Master>>, u<<s>>e me and humiliate me. Take me out to the public <<s>>quare <<s>>o that everyone can <<s>>ee you overpower me." - <<case "buttslut">> - $He positions $his back so $his ass sticks out even further "<<Master>>," $he begs, "u<<s>>e my a<<ss>>! - <<if (getSlave($AS).sexualQuirk == "painal")>> - Make me <<s>>queal! - <</if>> - I ju<<s>>t need your cock in my mo<<s>>t u<<s>>eful fuckhole, plea<<s>>e!" - <<case "boobs">> - $He <<if (!hasAnyArms(getSlave($AS)))>>leans $his head back and juts out $his tits, raising<<else>>takes $his hand<<if (hasBothArms(getSlave($AS)))>>s<</if>> and presses $his tits together, lifting<</if>> them to display for you $his primary purpose in life. - <<if (getSlave($AS).lactation > 0)>> - More milk <<if (!hasAnyArms(getSlave($AS)))>>dribbles<<else>>squirts<</if>> from each teat as $he bears them. - <</if>> - "I beg of you, <<Master>>, I need you to u<<s>>e my tit<<s>>. <<S>>uck them, <<s>>queeze them, fuck them, I cannot cum without you u<<s>>ing my <<s>>lave tit<<s>>! I am nothing more than a <<if canWalk(getSlave($AS))>>walking <</if>>tit-carrier, and my only purpo<<s>>e i<<s>> to offer the<<s>>e brea<<s>>t<<s>> to you." - <<case "pregnant">> - $He begins to <<if (hasAnyArms(getSlave($AS)))>>caress<<else>>stick out<</if>> $his stomach. "U<<s>>e me a<<s>> your breeder, <<Master>>, plea<<s>>e! I ju<<s>>t want to be filled with your <<s>>eed forever!" - <<default>> - $He kneels <<if hasBothLegs(getSlave($AS))>>with $his legs far spread<<else>>on the floor<</if>>. "U<<s>>e my fuckhole <<Master>>, I beg you. Plea<<s>>e, I need you to fuck me!" - <</switch>> - <<else>> - "<<Master>>, I e<<x>>i<<s>>t to <<s>>erve you." $He say, "I have no other purpo<<s>>e in life. I beg of you, plea<<s>>e never let me leave your <<s>>ervi<<c>>e. Let me wait on you forever. I <<s>>wear I will alway<<s>> be obedient. Let me cook your meal<<s>>, clean your penthou<<s>>e, care for your other <<s>>lave<<s>>, even make me a cow. I don't care, a<<s>> long a<<s>> I'm here <<s>>erving you." $He knows that $his rightful place is a slave, and $he is dedicated to living out that role to the fullest. - <<if (getSlave($AS).behavioralQuirk == "advocate")>> - "I <<s>>ee now," $he continues, "that <<s>>lavery really i<<s>> a $woman'<<s>> rightful pla<<c>>e. <<He>> ha<<s>> no purpo<<s>>e e<<x>><<c>>ept to <<s>>erve <<his>> <<Master>>." - <</if>> - <</if>> - <<else>> - "<<Master>>, I exi<<s>>t to <<s>>erve you." $He says, "I have no other purpo<<s>>e in life. I beg of you, plea<<s>>e never let me leave your <<s>>ervi<<c>>e. Let me wait on you forever. I <<s>>wear I will alway<<s>> be obedient. Let me cook your meal<<s>>, clean your penthou<<s>>e, care for your other <<s>>lave<<s>>, even make me a cow. I don't care, a<<s>> long a<<s>> I'm here <<s>>erving you." $He knows that $his rightful place is a slave, and $he is dedicated to living out that role to the fullest. - <<if (getSlave($AS).behavioralQuirk == "advocate")>> - "I <<s>>ee now," $he continues, "that <<s>>lavery really i<<s>> a $woman'<<s>> rightful pla<<c>>e. <<He>> ha<<s>> no purpo<<s>>e e<<x>><<c>>ept to <<s>>erve <<his>> <<Master>>." - <</if>> - <</if>> - You smile at your obedient little slave, and agree to grant $his request. -<</if>> - -<<if (random(1,100) > (100 + getSlave($AS).devotion))>> - <<if (getSlave($AS).fetish != "submissive") && (getSlave($AS).energy <= 95) && (getSlave($AS).behavioralFlaw != "liberated")>> - Seeing the humiliating acts your slaves are expected to perform has made $him @@.red;determined to be free.@@ - <<set getSlave($AS).behavioralFlaw = "liberated">> - <</if>> -<<elseif (random(1,100) > (110 - getSlave($AS).devotion))>> - <<if (getSlave($AS).fetish == "none") && (getSlave($AS).behavioralFlaw != "liberated")>> - Feeling the joy of kneeling before such a powerful <<= getWrittenTitle(getSlave($AS))>> and begging at _hisP feet has @@.lightcoral;encouraged $him to be more submissive.@@ - <<set getSlave($AS).fetish = "submissive", getSlave($AS).fetishKnown = 1>> - <</if>> -<</if>> diff --git a/src/npc/interaction/fBoobs.js b/src/npc/interaction/fBoobs.js index a1b200b1079f4bc071e952e94b5debe8d78a678b..825740bf56a2c4f92539676453e0e34817f3ae59 100644 --- a/src/npc/interaction/fBoobs.js +++ b/src/npc/interaction/fBoobs.js @@ -315,7 +315,10 @@ App.Interact.fBoobs = function(slave) { } } } else if (random(1, 100) > (110-slave.devotion)) { - if (slave.fetish === "none" && slave.behavioralFlaw !== "hates men" || V.PC.dick === 0 && slave.behavioralFlaw !== "hates women" || V.PC.dick > 0) { + if (slave.fetish === "none" && + (slave.behavioralFlaw !== "hates men" || V.PC.dick === 0) && + (slave.behavioralFlaw !== "hates women" || V.PC.dick > 0) + ) { r.push(`Having attention and love lavished on ${his} boobs by ${his} ${getWrittenTitle(slave)} has ${him} thinking of ${his} <span class="fetish gain">breasts as sexual organs.</span>`); slave.fetish = "boobs"; slave.fetishKnown = 1; diff --git a/src/npc/interaction/fCaress.js b/src/npc/interaction/fCaress.js new file mode 100644 index 0000000000000000000000000000000000000000..dda4abb1e66d05d06b4de20d382357e880203845 --- /dev/null +++ b/src/npc/interaction/fCaress.js @@ -0,0 +1,379 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fCaress = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, hers, woman, girl + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + const {womanP} = getPronouns(V.PC).appendSuffix("P"); + + r.push(`You tell ${slave.slaveName} to`); + if (!hasAnyLegs(slave)) { + r.push(`have another slave set ${him} down on your desk.`); + } else if (tooBigBreasts(slave)) { + r.push(`have another slave help ${him} heft ${his} tits so ${he} can be near you.`); + } else if (tooBigBelly(slave)) { + r.push(`have another slave help ${him} heft ${his} belly so ${he} can be near you.`); + } else if (tooBigButt(slave)) { + r.push(`have another slave help ${him} heft ${his} ass cheeks so ${he} can be near you.`); + } else if (tooBigDick(slave)) { + r.push(`have another slave help ${him} heft ${his} cock so ${he} can be near you.`); + } else if (tooBigBalls(slave)) { + r.push(`have another slave help ${him} heft ${his} balls so ${he} can be near you.`); + } else if (tooFatSlave(slave)) { + r.push(`have another slave help ${him} up so ${he} can be near you.`); + } else { + r.push(`move closer towards you.`); + } + + if (slave.fetish === "mindbroken" && slave.relationship !== -3) { + r.push(`${He} complies mechanically. ${He} remembers that when getWrittenTitle(slave)'s commands are not obeyed, there is punishment.`); + } else if (slave.relationship === -2) { + r.push(`${He} eagerly complies, happy to be near the object of ${his} longing. Once ${he}'s close, you hold ${his} face in your palms and gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he} loves overwhelming, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he} loves and finds it overwhelming, and after a moment glances away.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.relationship === -3) { + if (slave.fetish === "mindbroken") { + r.push(`${He} complies mechanically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} blank ${App.Desc.eyesColor(slave)}. ${He} doesn't react.`); + } else if (slave.devotion+slave.trust >= 175) { + r.push(`${He} happily complies, eager to be close to the ${womanP} who married ${him}. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to affirming, and looks down with a `); + if (canSee(slave)) { + r.push(`smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`smile.`); + } + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`${He} complies. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to disturbing, and`); + if (canSee(slave)) { + r.push(`breaks eye contact.`); + } else { + r.push(`turns ${his} face away.`); + } + } else if (slave.devotion < -20) { + r.push(`${He} complies out of fear. Once ${he}'s close, you hold ${his} shaking face in your palms and look into ${his} teary ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to terrifying, and`); + if (canSee(slave)) { + r.push(`breaks eye contact.`); + } else { + r.push(`turns ${his} face away.`); + } + } else { + r.push(`${He} complies obediently. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to reassuring, and looks down with a slight`); + if (canSee(slave)) { + r.push(`smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`smile.`); + } + } + } else if (slave.devotion > 75) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from ${his} beloved ${getWrittenTitle(slave)} disconcerting, and ${his} eyes flick downward after a moment. ${He} blushes furiously.`); + } else if (slave.devotion > 50) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and ${he} looks down after a moment, blushing.`); + } else if (slave.devotion > 20) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } else if (slave.devotion >= -20 && slave.trust >= -20) { + r.push(`${He} visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, ${his} lower lip trembling with nervousness.`); + } else if (slave.trust < -20) { + r.push(`The command terrifies ${him}, but ${he}'s more frightened still of the consequences of disobedience, and ${he} complies. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} looks down fearfully, and begins to shake with terror, tears leaking silently down ${his} cheeks.`); + } else { + r.push(`${He} pauses, obviously considering whether to resist, but eventually decides to save ${his} strength to fight more onerous orders, and gives in. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} ${App.Desc.eyesColor(slave)}. ${He} stares back, but after a few moments ${he} loses the contest of wills and looks down.`); + } + + r.push(`You delicately lift ${his} head and touch your fingertips to ${his} chin, tenderly brushing along the line of ${his} mouth with your`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`thumb.`); + if (slave.lipsTat !== 0) { + r.push(`Your fingers trace ${his} facial tattoos, slowly picking out the patterns against ${his} ${slave.skin} skin.`); + } + if (slave.lipsPiercing+slave.tonguePiercing > 2) { + r.push(`You touch each of ${his} facial piercings, one by one, feeling the hard metal contrast with ${his} pliant flesh.`); + } + r.push(`Then, you gently tilt ${his}`); + if (slave.face > 95) { + r.push(`overwhelmingly stunning`); + } else if (slave.face > 10) { + r.push(`alluring`); + } else if (slave.face >= -10) { + r.push(`appealing`); + } else if (slave.face >= -40) { + r.push(`plain`); + } else { + r.push(`rough`); + } + r.push(`head back and lightly touch ${his}`); + if (slave.lips > 95) { + r.push(`facepussy`); + } else { + if (slave.lips > 70) { + r.push(`pillowlike`); + } else if (slave.lips > 40) { + r.push(`generous`); + } else if (slave.lips > 20) { + r.push(`plush`); + } + r.push(`lips`); + } + r.push(`with your fingertips. You use your fingers and thumbs to slowly slide along ${his} mouth, ${his} chin, ${his} cheeks then around ${his} face. You use a deft touch to thoroughly explore the shape of ${his}`); + if (slave.face > 95) { + r.push(`gorgeous`); + } else if (slave.face > 10) { + r.push(`nice`); + } else if (slave.face >= -10) { + r.push(`cute`); + } else if (slave.face >= -40) { + r.push(`fair`); + } else { + r.push(`prominent`); + } + r.push(`cheekbones. Grazing ${his} temple and brushing ${his} forehead simultaneously, you smoothly motion along ${his} eyelids and nose, and tenderly stroke ${his} face with both hands as you take ${his} head lightly and trace around it, gently massaging as you go. You work your way down, slowly and gradually, along ${his} neck with one hand, then the other, briefly pausing before continuing your path down to ${his} shoulders and`); + if (slave.fetish !== "mindbroken") { + r.push(`${he} starts to gasp as`); + } else { + r.push(`starts to shudder as`); + } + r.push(`you slide your hands down ${his} side, across ${his} back and along ${his} belly taking every moment to savor the contours of ${his} body before going back up again to ${his} face.`); + + if (slave.fetish === "mindbroken") { + r.push(`${His} posture doesn't change. ${He} initially only reacts slightly to your physical touch but then stops reacting completely. When you stop, ${his} ${App.Desc.eyesColor(slave)} track the movements of your hands briefly but then stare blankly ahead of ${him}, awaiting further use of ${his} body.`); + } else if (slave.relationship === -2) { + r.push(`${His} eyes gradually close and ${he} slowly leans ${his} head back, relaxing as ${he} feels your caress. ${He} gently gasps as ${he} feels your warm`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`hand. When you finally stop gently caressing ${him}, ${his} eyes remain closed and ${his} mouth still in a rapturous shape for a moment before ${he} slowly opens ${his} eyes and smiles at you, ${he} has an eager look on ${his} face.`); + if (hasAnyArms(slave)) { + r.push(`A hand reaches dumbly up to ${his} face mimicking your last movements.`); + } + r.push(``); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate love with ${his} ${App.Desc.eyesColor(slave)}, since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s dreamily.` + ); + } + r.push(`${He} looks as though ${he} wants much more than your mere caress.`); + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`As you start to touch ${his}`); + if (slave.face > 95) { + r.push(`gorgeous`); + } else if (slave.face > 10) { + r.push(`lovely`); + } else if (slave.face >= -10) { + r.push(`pretty`); + } else if (slave.face >= -40) { + r.push(`homely`); + } else { + r.push(`ugly`); + } + r.push(`face, ${he} smiles at you and takes your hand in ${hers}, following its movements. ${He} tries hard to stop ${himself} from losing ${himself} in your masterful hands. ${He} takes ${his} tendency towards sexual dominance right up to the edge of insubordination, when ${he} starts to caress your face in turn. When you finally stop, ${his} eyes are closed and ${he}'s smiling.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate excitement with ${his} ${App.Desc.eyesColor(slave)}, since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate excitement with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push( + Spoken(slave, `"That was fun, ${Master},"`), + `${he} ${say}s cheerfully.` + ); + } + r.push(`${He} looks at you, ${his} eyes almost begging you to give ${him} more than your mere caress.`); + } else if (slave.devotion > 50 && slave.fetish === "cumslut" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`${He} stiffens at your touch but slowly relaxes to your fingers on ${his} face. As you move your fingers along ${his} lips, ${he} reacts almost as though ${he}'s receiving oral. ${He} starts to gently suck your fingers, moaning into your hand and pressing ${himself} lewdly against your`); + if (V.PC.boobs >= 1400) { + r.push(`giant tits.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`prominent breasts.`); + } else if (V.PC.boobs >= 650) { + r.push(`unremarkable breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`tiny breasts.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`non-existent breasts.`); + } + if (slave.teeth === "pointy") { + r.push(`${He}'s very careful to avoid spearing your finger with ${his} sharp teeth.`); + } else if (slave.teeth === "fangs") { + r.push(`${He} holds perfectly still so you may trace ${his} fangs without getting poked.`); + } else if (slave.teeth === "fang") { + r.push(`You give ${his} lone fang a little extra attention as you work.`); + } + r.push(`${He} achieves a weak orgasm before you stop caressing ${him}.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his} ${App.Desc.eyesColor(slave)}, since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push( + Spoken(slave, `"That was fun, ${Master},"`), + `${he} ${say}s lustfully.` + ); + } + r.push(`${He} looks at you as if ${he} wants more than your hands touching ${him}.`); + } else if (slave.devotion > 50) { + r.push(`${He} accepts your touch with devotion, leaning ${his} head back at your gentle caress along ${his} face. ${He} leans ${his} body forward, pressing ${himself} against you, and you feel the intense heat from ${his} body against your`); + if (V.PC.boobs >= 1400) { + r.push(`expansive`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`chest.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`soft breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`small chest.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`flat chest.`); + } + r.push(`${He} gradually closes ${his} eyes and when you finally stop,`); + if (hasAnyArms(slave)) { + r.push(`${he} runs ${his} hand delightfully across ${his} face where you last touched ${him},`); + } else { + r.push(`there is`); + } + r.push(`a euphoric look on ${his} ${slave.skin} face.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his} ${App.Desc.eyesColor(slave)}, since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s jubilantly.` + ); + } + r.push(`${He} looks at you longingly, almost as if ${he}'s bursting to say that ${he} wants more than your mere caress.`); + } else if (slave.devotion > 20) { + r.push(`${He} accepts your touch willingly. As you are so close to ${him}, you sense considerable turmoil in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your touch across ${his} face. When you finally move your hand away, ${his} ${App.Desc.eyesColor(slave)} gaze into yours searchingly, looking for answers that are not there.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`${He} shakes at your touch fearfully. As you move your hand along ${his} unresisting face, ${his} eagerness to avoid punishment leads ${him} to stiffen, ${his} nervousness is made apparent. You continue stroking ${his} cheek, enjoying ${his} fear, and the physical intimacy slowly does its work. ${He} starts to relax, ${his} resistance easing and ${his} eyes start to close. When finally move your hand away, ${he} looks at you for a long moment, ${his} eyes darting up at you, before visibly catching ${himself} with a reminder that ${he}'s a slave and you're ${his} owner.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else if (slave.trust < -50) { + r.push(`${He} is nearly frozen with fear, and does not resist as you start to caress ${his} face. In fact, ${he} barely reacts at all. ${He} stares at you as you move your fingers across ${his} stiff face, but it's like touching a statue. ${He} is so filled with terror that ${he} remains stiff even as it becomes clear to ${him} you're not going to hurt ${him}. When you bore of touching the`); + if (slave.physicalAge > 30) { + r.push(`${woman}`); + } else { + r.push(`${girl}`); + } + r.push(`and move your hand away, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs spastically, begging fearfully to know if that's it.`); + } else { + r.push( + `${He} asks nervously,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + r.push(`Then ${he} cringes.`); + } else { + r.push(`${He} reflexively turns away from you, but you catch ${his} head with one hand and slowly but gently move your other hand along ${his} face. Spluttering, ${he} leans backwards, but you tip forward with ${him} and pin ${him} against your desk, not stopping your gentle touch on ${his} head. ${He} tries to wriggle out of your grasp desperately, but ${his} struggles slowly subside as ${he} realizes that you're not taking this any farther. When you bore of it and move your hand away, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes demand an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs irritably, asking whether that's it.`); + } else { + r.push( + `${He} splutters,`, + Spoken(slave, `"Is that it, ${Master}!?"`) + ); + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fCaress.tw b/src/npc/interaction/fCaress.tw deleted file mode 100644 index 27da29bfb74a6da7868aa27a36acab58dc51bbdd..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fCaress.tw +++ /dev/null @@ -1,141 +0,0 @@ -:: FCaress [nobr no-history] - -<<setPlayerPronouns>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You tell <<= getSlave($AS).slaveName>> to -<<if !hasAnyLegs(getSlave($AS))>> - have another slave set $him down on your desk. -<<elseif tooBigBreasts(getSlave($AS))>> - have another slave help $him heft $his tits so $he can be near you. -<<elseif tooBigBelly(getSlave($AS))>> - have another slave help $him heft $his belly so $he can be near you. -<<elseif tooBigButt(getSlave($AS))>> - have another slave help $him heft $his ass cheeks so $he can be near you. -<<elseif tooBigDick(getSlave($AS))>> - have another slave help $him heft $his cock so $he can be near you. -<<elseif tooBigBalls(getSlave($AS))>> - have another slave help $him heft $his balls so $he can be near you. -<<elseif tooFatSlave(getSlave($AS))>> - have another slave help $him up so $he can be near you. -<<else>> - move closer towards you. -<</if>> - -<<if (getSlave($AS).fetish == "mindbroken") && (getSlave($AS).relationship != -3)>> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. -<<elseif (getSlave($AS).relationship == -2)>> - $He eagerly complies, happy to be near the object of $his longing. Once $he's close, you hold $his face in your palms and gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he loves overwhelming, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he loves and finds it overwhelming, and after a moment glances away. - <</if>> - $He blushes furiously. -<<elseif (getSlave($AS).relationship == -3)>> - <<if getSlave($AS).fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank <<= App.Desc.eyesColor(getSlave($AS))>>. $He doesn't react. - <<elseif getSlave($AS).devotion+getSlave($AS).trust >= 175>> - $He happily complies, eager to be close to the _womanP who married $him. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile<<if canSee(getSlave($AS))>>, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>><</if>>. - <<elseif getSlave($AS).devotion < -20 && getSlave($AS).trust > 20>> - $He complies. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and <<if canSee(getSlave($AS))>> breaks eye contact<<else>> turns $his face away<</if>>. - <<elseif getSlave($AS).devotion < -20>> - $He complies out of fear. Once $he's close, you hold $his shaking face in your palms and look into $his teary <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to terrifying, and <<if canSee(getSlave($AS))>> breaks eye contact<<else>> turns $his face away<</if>>. - <<else>> - $He complies obediently. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile<<if canSee(getSlave($AS))>>, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>><</if>>. - <</if>> -<<elseif (getSlave($AS).devotion > 75)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from $his beloved <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. -<<elseif (getSlave($AS).devotion > 50)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $he looks down after a moment, blushing. -<<elseif (getSlave($AS).devotion > 20)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. -<<elseif (getSlave($AS).trust < -20)>> - The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. -<<else>> - $He pauses, obviously considering whether to resist, but eventually decides to save $his strength to fight more onerous orders, and gives in. Once $he's close, you hold $his face in your palms and look into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He stares back, but after a few moments $he loses the contest of wills and looks down. -<</if>> - -You delicately lift $his head and touch your fingertips to $his chin, tenderly brushing along the line of $his mouth with your <<if $PC.title == 1>>manly<<else>>feminine<</if>> thumb. -<<if (getSlave($AS).lipsTat != 0)>> - Your fingers trace $his facial tattoos, slowly picking out the patterns against $his <<= getSlave($AS).skin>> skin. -<</if>> -<<if (getSlave($AS).lipsPiercing+getSlave($AS).tonguePiercing > 2)>> - You touch each of $his facial piercings, one by one, feeling the hard metal contrast with $his pliant flesh. -<</if>> -Then, you gently tilt $his <<if getSlave($AS).face > 95>>overwhelmingly stunning<<elseif getSlave($AS).face > 10>>alluring<<elseif getSlave($AS).face >= -10>>appealing<<elseif getSlave($AS).face >= -40>>plain<<else>>rough<</if>> head back and lightly touch $his -<<if getSlave($AS).lips > 95>>facepussy -<<else>> - <<if getSlave($AS).lips > 70>>pillowlike - <<elseif getSlave($AS).lips > 40>>generous - <<elseif getSlave($AS).lips > 20>>plush - <</if>> - lips -<</if>> with your fingertips. You use your fingers and thumbs to slowly slide along $his mouth, $his chin, $his cheeks then around $his face. You use a deft touch to thoroughly explore the shape of $his <<if getSlave($AS).face > 95>>gorgeous<<elseif getSlave($AS).face > 10>>nice<<elseif getSlave($AS).face >= -10>>cute<<elseif getSlave($AS).face >= -40>>fair<<else>>prominent<</if>> cheekbones. Grazing $his temple and brushing $his forehead simultaneously, you smoothly motion along $his eyelids and nose, and tenderly stroke $his face with both hands as you take $his head lightly and trace around it, gently massaging as you go. You work your way down, slowly and gradually, along $his neck with one hand, then the other, briefly pausing before continuing your path down to $his shoulders and<<if (getSlave($AS).fetish != "mindbroken")>> $he starts to gasp as<<else>> starts to shudder as<</if>> you slide your hands down $his side, across $his back and along $his belly taking every moment to savor the contours of $his body before going back up again to $his face. - -<<if (getSlave($AS).fetish == "mindbroken")>> - $His posture doesn't change. $He initially only reacts slightly to your physical touch but then stops reacting completely. When you stop, $his <<= App.Desc.eyesColor(getSlave($AS))>> track the movements of your hands briefly but then stare blankly ahead of $him, awaiting further use of $his body. -<<elseif (getSlave($AS).relationship == -2)>> - $His eyes gradually close and $he slowly leans $his head back, relaxing as $he feels your caress. $He gently gasps as $he feels your warm <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand. When you finally stop gently caressing $him, $his eyes remain closed and $his mouth still in a rapturous shape for a moment before $he slowly opens $his eyes and smiles at you, $he has an eager look on $his face.<<if (hasAnyArms(getSlave($AS)))>> A hand reaches dumbly up to $his face mimicking your last movements.<</if>> <<if (getSlave($AS).accent >= 3)>>$He does $his best to communicate love with $his <<= App.Desc.eyesColor(getSlave($AS))>>, since $he does not speak $language well enough to express $himself.<<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>>$He does $his best to communicate love with $his <<= App.Desc.eyesColor(getSlave($AS))>>.<<elseif !canTalk(getSlave($AS))>>$He signs that $he loves you.<<else>>"I love you, <<Master>>," $he <<say>>s dreamily.<</if>> $He looks as though $he wants much more than your mere caress. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - As you start to touch $his <<if getSlave($AS).face > 95>>gorgeous<<elseif getSlave($AS).face > 10>>lovely<<elseif getSlave($AS).face >= -10>>pretty<<elseif getSlave($AS).face >= -40>>homely<<else>>ugly<</if>> face, $he smiles at you and takes your hand in $hers, following its movements. $He tries hard to stop $himself from losing $himself in your masterful hands. $He takes $his tendency towards sexual dominance right up to the edge of insubordination, when $he starts to caress your face in turn. When you finally stop, $his eyes are closed and $he's smiling. <<if (getSlave($AS).accent >= 3)>>$He does $his best to communicate excitement with $his <<= App.Desc.eyesColor(getSlave($AS))>>, since $he does not speak $language well enough to express $himself.<<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>>$He does $his best to communicate excitement with $his <<= App.Desc.eyesColor(getSlave($AS))>>.<<elseif !canTalk(getSlave($AS))>>$He signs that $he liked that.<<else>>"That wa<<s>> fun, <<Master>>," $he <<say>>s cheerfully.<</if>> $He looks at you, $his eyes almost begging you to give $him more than your mere caress. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "cumslut") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - $He stiffens at your touch but slowly relaxes to your fingers on $his face. As you move your fingers along $his lips, $he reacts almost as though $he's receiving oral. $He starts to gently suck your fingers, moaning into your hand and pressing $himself lewdly against your - <<if $PC.boobs >= 1400>> - giant tits. - <<elseif $PC.boobs >= 1200>> - huge breasts. - <<elseif $PC.boobs >= 1000>> - big breasts. - <<elseif $PC.boobs >= 800>> - prominent breasts. - <<elseif $PC.boobs >= 650>> - unremarkable breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - tiny breasts. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - non-existent breasts. - <</if>> - <<if (getSlave($AS).teeth == "pointy")>> - $He's very careful to avoid spearing your finger with $his sharp teeth. - <<elseif (getSlave($AS).teeth == "fangs")>> - $He holds perfectly still so you may trace $his fangs without getting poked. - <<elseif (getSlave($AS).teeth == "fang")>> - You give $his lone fang a little extra attention as you work. - <</if>> - $He achieves a weak orgasm before you stop caressing $him. <<if (getSlave($AS).accent >= 3)>>$He does $his best to communicate undiminished lust with $his <<= App.Desc.eyesColor(getSlave($AS))>>, since $he does not speak $language well enough to express $himself.<<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>>$He does $his best to communicate undiminished lust with $his <<= App.Desc.eyesColor(getSlave($AS))>>.<<elseif !canTalk(getSlave($AS))>>$He signs that $he liked that.<<else>>"That wa<<s>> fun, <<Master>>," $he <<say>>s lustfully.<</if>> $He looks at you as if $he wants more than your hands touching $him. -<<elseif (getSlave($AS).devotion > 50)>> - $He accepts your touch with devotion, leaning $his head back at your gentle caress along $his face. $He leans $his body forward, pressing $himself against you, and you feel the intense heat from $his body against your - <<if $PC.boobs >= 1400>> - expansive <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> chest. - <<elseif $PC.boobs >= 1200>> - huge <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 1000>> - big <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 800>> - soft breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - small chest. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - flat chest. - <</if>> - $He gradually closes $his eyes and when you finally stop, <<if (hasAnyArms(getSlave($AS)))>>$he runs $his hand delightfully across $his face where you last touched $him,<<else>>there is<</if>> a euphoric look on $his <<= getSlave($AS).skin>> face. <<if (getSlave($AS).accent >= 3)>>$He does $his best to communicate devotion with $his <<= App.Desc.eyesColor(getSlave($AS))>>, since $he's not confident in $his ability to express it in $language.<<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>>$He does $his best to communicate devotion with $his <<= App.Desc.eyesColor(getSlave($AS))>>.<<elseif !canTalk(getSlave($AS))>>$He signs that $he loves you.<<else>>"I love you, <<Master>>," $he <<say>>s jubilantly.<</if>> $He looks at you longingly, almost as if $he's bursting to say that $he wants more than your mere caress. -<<elseif (getSlave($AS).devotion > 20)>> - $He accepts your touch willingly. As you are so close to $him, you sense considerable turmoil in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch across $his face. When you finally move your hand away, $his <<= App.Desc.eyesColor(getSlave($AS))>> gaze into yours searchingly, looking for answers that are not there. <<if ((!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS))))>>$His eyes beg for an answer: is that it?<<elseif !canTalk(getSlave($AS))>>$He signs hesitantly, asking if that's it.<<else>>$He asks hesitantly, "I-i<<s>> that it, <<Master>>?"<</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust < -20)>> - $He shakes at your touch fearfully. As you move your hand along $his unresisting face, $his eagerness to avoid punishment leads $him to stiffen, $his nervousness is made apparent. You continue stroking $his cheek, enjoying $his fear, and the physical intimacy slowly does its work. $He starts to relax, $his resistance easing and $his eyes start to close. When finally move your hand away, $he looks at you for a long moment, $his eyes darting up at you, before visibly catching $himself with a reminder that $he's a slave and you're $his owner. <<if ((!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS))))>>$His eyes beg for an answer: is that it?<<elseif !canTalk(getSlave($AS))>>$He signs hesitantly, asking if that's it.<<else>>$He asks hesitantly, "I-i<<s>> that it, <<Master>>?"<</if>> -<<elseif (getSlave($AS).trust < -50)>> - $He is nearly frozen with fear, and does not resist as you start to caress $his face. In fact, $he barely reacts at all. $He stares at you as you move your fingers across $his stiff face, but it's like touching a statue. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of touching the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>> and move your hand away, $he stares at you in utter incomprehension. <<if ((!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS))))>>$His eyes beg for an answer: is that it?<<elseif !canTalk(getSlave($AS))>>$He signs spastically, begging fearfully to know if that's it.<<else>>$He asks nervously, "I-i<<s>> that it, <<Master>>?"<</if>> Then $he cringes. -<<else>> - $He reflexively turns away from you, but you catch $his head with one hand and slowly but gently move your other hand along $his face. Spluttering, $he leans backwards, but you tip forward with $him and pin $him against your desk, not stopping your gentle touch on $his head. $He tries to wriggle out of your grasp desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and move your hand away, $he stares at you in utter incomprehension. <<if ((!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS))))>>$His eyes demand an answer: is that it?<<elseif !canTalk(getSlave($AS))>>$He signs irritably, asking whether that's it.<<else>>$He splutters, "I<<s>> that it, <<Master>>!?"<</if>> -<</if>> diff --git a/src/npc/interaction/fDance.js b/src/npc/interaction/fDance.js index 1c2d60f969112e95f728837574cc71c793adedeb..9fa5693990ef457de39bd39c5e1109e88ab81c67 100644 --- a/src/npc/interaction/fDance.js +++ b/src/npc/interaction/fDance.js @@ -349,9 +349,7 @@ App.Interact.fDance = function(slave) { r.push(`${He} dances, but makes sure that the disgust on ${his} face shows clearly that ${he} is not into it.`); } } - r.push(`The atmosphere of your office is a testament to masculine opulence. Few ${womenP} in the old world would have the pleasure of completing their work while an attractive ${woman} flaunts ${himself} for ${hisP} pleasure. - You allow the situation to continue for about an hour, before deciding it's time to escalate. - You look up once more at your slave and take some time to review ${his} dancing performance.`); + r.push(`The atmosphere of your office is a testament to masculine opulence. Few ${womenP} in the old world would have the pleasure of completing their work while an attractive ${woman} flaunts ${himself} for ${hisP} pleasure. You allow the situation to continue for about an hour, before deciding it's time to escalate. You look up once more at your slave and take some time to review ${his} dancing performance.`); if (slave.devotion >= -20) { if (slave.skill.entertainment >= 100) { r.push(`Your slave has a level of skill previously unseen in the old world. Even ${his} blinks have the seductive pull of a goddess. As you watch ${him} perform, you think how no${womanP} of the old world would ever get to see pure sexuality like this. And not only do you get to watch ${him}, you OWN ${him}. ${His} body moves like water, with hips that ebb and flow as if the tides themselves panged for a rock hard cock to come and take them. You try to get some work done, but can't take your eyes off ${him} for even a second. You promise to reward your slave for bringing so much sensuality and beauty into your office; transforming your place of work into a shrine of Masculine dominance.`); diff --git a/src/npc/interaction/fEmbrace.js b/src/npc/interaction/fEmbrace.js new file mode 100644 index 0000000000000000000000000000000000000000..b6c80d961b39d2b54cf8cf1e0b4f2178dbc9e9f9 --- /dev/null +++ b/src/npc/interaction/fEmbrace.js @@ -0,0 +1,321 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fEmbrace = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, wife, hers, woman, girl + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + const {womanP} = getPronouns(V.PC).appendSuffix("P"); + + slave.partners.add(-1); + + r.push(`You tell ${slave.slaveName} to`); + if (hasAnyLegs(slave)) { + r.push(`stand in front of you.`); + } else { + r.push(`have another slave set ${him} down on your desk.`); + } + + if (slave.fetish === "mindbroken" && slave.relationship !== -3) { + r.push(`${He} complies automatically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment.`); + } else if (slave.relationship === -2) { + r.push(`${He} excitedly complies, happy to be near the object of ${his} longing. Once ${he}'s close, you take ${his} completely relaxed head in your hands and gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he} loves overwhelming, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he} loves and finds it overwhelming, and after a moment glances away.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.relationship === -3) { + if (slave.fetish === "mindbroken") { + r.push(`${He} complies mechanically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} blank ${App.Desc.eyesColor(slave)}. ${He} shows no reaction.`); + } else if (slave.devotion+slave.trust >= 175) { + r.push(`${He} lovingly complies, hurrying to come close to the ${womanP} who married ${him}. Once ${he}'s close, you take your willing ${wife}'s head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to affirming, and looks down with a`); + if (canSee(slave)) { + r.push(`smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`smile.`); + } + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`${He} complies. Once ${he}'s close, you take your reluctant ${wife}'s head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to disturbing, and`); + if (canSee(slave)) { + r.push(`breaks eye contact.`); + } else { + r.push(`turns ${his} face away.`); + } + } else if (slave.devotion < -20) { + r.push(`${He} complies out of fear. Once ${he}'s close, you take your unwilling ${wife}'s head in your hands and gaze deeply into ${his} teary ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to terrifying, and`); + if (canSee(slave)) { + r.push(`breaks eye contact.`); + } else { + r.push(`turns ${his} face away.`); + } + } else { + r.push(`${He} complies obediently. Once ${he}'s close, you take your willing ${wife}'s head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to reassuring, and looks down with a slight `); + if (canSee(slave)) { + r.push(`smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`smile.`); + } + } + } else if (slave.devotion > 75) { + r.push(`${He} elatedly complies, joyful at being near to you. Once ${he}'s close, you take ${his} completely relaxed head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from ${his} beloved ${getWrittenTitle(slave)} disconcerting, and ${his} eyes flick downward after a moment. ${He} blushes furiously.`); + } else if (slave.devotion > 50) { + r.push(`${He} dotingly complies, being near you filling ${him} with delight. Once ${he}'s close, you take ${his} completely relaxed head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and ${he} looks down after a moment, blushing.`); + } else if (slave.devotion > 20) { + r.push(`${He} joyfully complies, happy to be near you. Once ${he}'s close, you take ${his} willing head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } else if (slave.devotion >= -20 && slave.trust >= -20) { + r.push(`${He} visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once ${he}'s close, you take ${his} head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, ${his} lower lip trembling with nervousness.`); + } else if (slave.trust < -20) { + r.push(`The command terrifies ${him}, but ${he}'s more frightened still of the consequences of disobedience, and ${he} complies. Once ${he}'s close, you take ${his} trembling head in your hands and gaze deeply into ${his} ${App.Desc.eyesColor(slave)} for a moment. ${He} looks down fearfully, and begins to shake with terror, tears streaking down ${his} cheeks.`); + } else { + r.push(`${He} pauses, obviously considering whether to resist, but eventually decides to save ${his} strength to fight more onerous orders, and gives in. Once ${he}'s close, you take a moment to gaze deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} stares back, but after a few moments ${he} loses the contest of wills and looks down.`); + } + + r.push(`You walk around ${him} and put your hands around ${his} abdomen,`); + if (hasAnyLegs(slave)) { + r.push(`to gently pull ${him} close towards you`); + } else { + r.push(`moving close towards ${him} on your desk`); + } + r.push(`and then wrap your arms around ${his} shoulders.`); + if (hasAnyLegs(slave)) { + r.push(`When you press your hips against ${hers},`); + } else { + r.push(`You use your arms to prop ${him} up against you,`); + } + r.push(``); + if (slave.trust > 20) { + r.push(`letting ${him} lean while taking the weight of ${him} against you.`); + } else { + r.push(`${he} tries to lean away from you, pushing against your arms.`); + } + r.push(`You lovingly squeeze ${him} in your long, cradling embrace.`); + + if (slave.boobs < 2600) { + if (slave.nipples === "huge") { + r.push(`You feel ${his} large, erect nipples against your`); + } else if (slave.nipples === "puffy") { + r.push(`You feel ${his} erect, puffy nipples against your`); + } else if (slave.nipples === "flat") { + r.push(`You feel the bumps of ${his} flat nipples against your`); + } else if (slave.nipples === "partially inverted") { + r.push(`You feel ${his} partially inverted nipples against your`); + } else if (slave.nipples === "inverted") { + r.push(`You feel ${his} inverted nipples against your`); + } else if (slave.nipples === "fuckable") { + r.push(`You feel the slits of ${his} nipples against your`); + } else { + r.push(`You feel ${his} erect nipples against your`); + } + r.push(`hands as you move your arms down around ${his} breasts.`); + if (slave.devotion > 20) { + r.push(`You take your time to stay in this position, feeling ${his} heart beat against you. ${He} starts to breathe faster before you keep one arm wrapped around ${him} as you move to ${his} front.`); + } else { + r.push(`As you move to ${his} front, with one arm still around ${him}, ${he} again tries to break away but you keep ${him} held tightly and you whisper the alternatives to ${him}, reminding ${him}.`); + } + r.push(`You wrap your arms around ${his} back as you press ${his} breasts against your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`${His} massive tits are too large for you to wrap your arms around so you start to wrap your arms around ${his} waist. You feel ${his} heart beat against your chest, ${he} starts to breathe faster as you press ${his} back against your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } + + if (slave.fetish === "mindbroken") { + r.push(`${His} posture doesn't change. ${He} initially only reacts slightly to your physical touch but eventually ${he} relaxes in the warmth of your embrace against ${him}. You know that this may only be a physiological reaction, nothing more. For a brief moment you think you detect a spark of life in ${his} dull eyes but just as quickly, it is gone. When you stop, ${his} ${App.Desc.eyesColor(slave)} track the movements of your hands briefly but then ${he} stares blankly ahead of ${him}, not understanding what is happening.`); + } else if (slave.relationship === -2) { + r.push(`In the warmth of your embrace, ${he} turns towards you, ${his} passionate ${App.Desc.eyesColor(slave)} staring intently at your face. ${He} leans closer to you and kisses you as you hold ${him}. ${His} heart beats faster and then gradually slows as ${he} grows accustomed to your body against ${hers}. Eventually, ${he} relaxes totally and ${his} eyes gradually close, melting in your arms. When you finally stop and relax your embrace, ${his} eyes remain closed and ${his} mouth still in a rapturous shape for a moment before ${he} slowly opens ${his} eyes and smiles at you with a blissful look on ${his} face.`); + if (hasAnyArms(slave)) { + r.push(`${His} hand reaches to your arms and ${he} strokes them longingly.`); + } + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} slowly opens them and does ${his} best to communicate love with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s dreamily.` + ); + } + r.push(`${He} looks at you, almost begging you with ${his} eyes that ${he} wants much more than a mere embrace.`); + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`In your soft, warm embrace, ${he} tries hard to stop ${himself} from losing ${himself} in your arms.`); + if (hasAnyArms(slave)) { + r.push(`${He} starts to embrace you`); + if (hasBothArms(slave)) { + r.push(`in ${his} arms`); + } else { + r.push(`with ${his} arm`); + } + r.push(`as well. When you gently squeeze ${him} in your arms, ${he} breathes more heavily and starts to lovingly squeeze you as well, ${his} tendency towards sexual dominance encouraging ${him} to compete with you in embraces against each other.`); + } else { + r.push(`When you gently squeeze ${him} in your arms, ${he} breathes more heavily before relaxing against you.`); + } + r.push(`When you finally stop and relax your embrace, ${his} eyes are closed and ${he}'s smiling blissfully.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} slowly opens them and does ${his} best to communicate excitement with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s cheerfully.` + ); + } + r.push(`${He} eagerly looks at you, ${his} eyes almost seem to say that ${he} wants you to give ${his} ${Master} more than a mere hug.`); + } else if (slave.devotion > 50) { + r.push(`${He} sighs devotedly in your arms and slowly relaxes. ${He} turns towards you, ${his} doting ${App.Desc.eyesColor(slave)} staring intently at your face. You feel ${his} heart beating faster against your chest as you softly squeeze your arms tighter.`); + if (hasAnyArms(slave)) { + r.push(`${His} ${hasBothArms(slave) ? `hands` : `hand`} reach to your arms and ${he} strokes them longingly as you squeeze.`); + } + r.push(`${He} gradually closes ${his} eyes as ${he} leans ${his} body against yours, melting in your warm embrace, and you feel the intense heat from ${his} body against your`); + if (V.PC.boobs >= 1400) { + r.push(`expansive`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`chest.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big`); + if (V.PC.boobsImplant/V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`soft breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`small chest.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`flat chest.`); + } + r.push(`When you finally stop,`); + if (hasAnyArms(slave)) { + r.push(`${he} reaches to your face with ${his} hand and gently strokes your cheek,`); + } else { + r.push(`${he} turns to you,`); + } + r.push(`a euphoric look on ${his} ${slave.skin} face.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his} ${App.Desc.eyesColor(slave)}, since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master}," ${he} `), + `${say}s elatedly.` + ); + } + r.push(`${He} looks at you longingly, almost as if ${he}'s bursting to say that ${he} wants more than a mere embrace.`); + } else if (slave.devotion > 20) { + r.push(`${He} willingly gives ${himself} up to your embracing arms. As you are so close to ${him}, you sense considerable uneasiness in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your soft embrace against ${his} body. ${He} gradually closes ${his} eyes in the feeling of your gentle arms. When you finally stop and relax your embrace, ${his} + ${App.Desc.eyesColor(slave)} open to gaze puzzlingly at you. Even though ${he} has accepted life as a sex slave, ${he} looks as though ${he} is unsure of what to make of this non-sexual physical contact.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`${He} shakes at your touch fearfully. As you softly press ${his} trembling body against you, ${his} eagerness to avoid punishment leads ${him} to stiffen in your arms. While ${he} continues to shudder, you continue embracing ${him}, enjoying ${his} fear, and the physical intimacy slowly does its work. ${He} starts to relax, ${his} resistance easing and ${his} eyes start to close. When you relax your arms for a moment, ${he} opens ${his} eyes to look at you for a long moment, ${his} eyes darting up to your face, before visibly catching ${himself} with a reminder that ${he}'s a slave and you're ${his} owner.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else if (slave.trust < -50) { + r.push(`${He} is nearly frozen with fear, and does not resist as you start to squeeze your arms around ${him}. In fact, ${he} barely reacts at all. ${He} stares at your arms as they continue squeezing, but it's like touching a statue. ${He} is so filled with terror that ${he} remains stiff even as it becomes clear to ${him} you're not going to hurt ${him}. When you bore of embracing the still`); + if (slave.physicalAge > 30) { + r.push(`${woman}`); + } else { + r.push(`${girl}`); + } + r.push(`and release ${him}, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs spastically, begging fearfully to know if that's it.`); + } else { + r.push( + `${He} asks nervously,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + r.push(`Then ${he} cringes, unsure of what you are going to do next.`); + } else { + r.push(`${He} reflexively tries to break free from your arms, but you keep ${him} wrapped in them. Shuddering, ${he} desperately leans away from you, but you tip forward with ${him} and pin ${him} against your desk, continuing your hold on ${him}. ${He} tries to wriggle out of your grasp desperately, but ${his} struggles slowly subside as ${he} realizes that you're not taking this any farther. When you bore of it and release ${him}, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His} eyes demand an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs irritably, asking whether that's it.`); + } else { + r.push( + `${He} splutters,`, + Spoken(slave, `"Is that it, ${Master}!?"`) + ); + } + r.push(`${He} shakes uncontrollably, apprehensive at what you are going to do next.`); + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fEmbrace.tw b/src/npc/interaction/fEmbrace.tw deleted file mode 100644 index 83e30f78c00d17b76749f12b370b742bec20c172..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fEmbrace.tw +++ /dev/null @@ -1,170 +0,0 @@ -:: FEmbrace [nobr no-history] - -<<setPlayerPronouns>> -<<run Enunciate(getSlave($AS))>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run getSlave($AS).partners.add(-1)>> - -You tell <<= getSlave($AS).slaveName>> to -<<if (hasAnyLegs(getSlave($AS)))>> - stand in front of you. -<<else>> - have another slave set $him down on your desk. -<</if>> - -<<if (getSlave($AS).fetish == "mindbroken") && (getSlave($AS).relationship != -3)>> - $He complies automatically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. -<<elseif (getSlave($AS).relationship == -2)>> - $He excitedly complies, happy to be near the object of $his longing. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he loves overwhelming, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he loves and finds it overwhelming, and after a moment glances away. - <</if>> - $He blushes furiously. -<<elseif (getSlave($AS).relationship == -3)>> - <<if getSlave($AS).fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank <<= App.Desc.eyesColor(getSlave($AS))>>. $He shows no reaction. - <<elseif getSlave($AS).devotion+getSlave($AS).trust >= 175>> - $He lovingly complies, hurrying to come close to the _womanP who married $him. Once $he's close, you take your willing $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile<<if canSee(getSlave($AS))>>, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>><</if>>. - <<elseif getSlave($AS).devotion < -20 && getSlave($AS).trust > 20>> - $He complies. Once $he's close, you take your reluctant $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and <<if canSee(getSlave($AS))>> breaks eye contact<<else>> turns $his face away<</if>>. - <<elseif getSlave($AS).devotion < -20>> - $He complies out of fear. Once $he's close, you take your unwilling $wife's head in your hands and gaze deeply into $his teary <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to terrifying, and <<if canSee(getSlave($AS))>> breaks eye contact<<else>> turns $his face away<</if>>. - <<else>> - $He complies obediently. Once $he's close, you take your willing $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile<<if canSee(getSlave($AS))>>, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>><</if>>. - <</if>> -<<elseif (getSlave($AS).devotion > 75)>> - $He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from $his beloved <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. -<<elseif (getSlave($AS).devotion > 50)>> - $He dotingly complies, being near you filling $him with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $he looks down after a moment, blushing. -<<elseif (getSlave($AS).devotion > 20)>> - $He joyfully complies, happy to be near you. Once $he's close, you take $his willing head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. -<<elseif (getSlave($AS).trust < -20)>> - The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take $his trembling head in your hands and gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>> for a moment. $He looks down fearfully, and begins to shake with terror, tears streaking down $his cheeks. -<<else>> - $He pauses, obviously considering whether to resist, but eventually decides to save $his strength to fight more onerous orders, and gives in. Once $he's close, you take a moment to gaze deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He stares back, but after a few moments $he loses the contest of wills and looks down. -<</if>> - -You walk around $him and put your hands around $his abdomen,<<if (hasAnyLegs(getSlave($AS)))>> to gently pull $him close towards you<<else>> moving close towards $him on your desk<</if>> and then wrap your arms around $his shoulders.<<if (hasAnyLegs(getSlave($AS)))>> When you press your hips against $hers,<<else>> You use your arms to prop $him up against you,<</if>> <<if (getSlave($AS).trust > 20)>>letting $him lean while taking the weight of $him against you<<else>>$he tries to lean away from you, pushing against your arms<</if>>. You lovingly squeeze $him in your long, cradling embrace. - -<<if (getSlave($AS).boobs < 2600)>> - <<if (getSlave($AS).nipples == "huge")>> - You feel $his large, erect nipples against your - <<elseif (getSlave($AS).nipples == "puffy")>> - You feel $his erect, puffy nipples against your - <<elseif (getSlave($AS).nipples == "flat")>> - You feel the bumps of $his flat nipples against your - <<elseif getSlave($AS).nipples == "partially inverted">> - You feel $his partially inverted nipples against your - <<elseif getSlave($AS).nipples == "inverted">> - You feel $his inverted nipples against your - <<elseif getSlave($AS).nipples == "fuckable">> - You feel the slits of $his nipples against your - <<else>> - You feel $his erect nipples against your - <</if>> - hands as you move your arms down around $his breasts. <<if (getSlave($AS).devotion > 20)>>You take your time to stay in this position, feeling $his heart beat against you. $He starts to breathe faster before you keep one arm wrapped around $him as you move to $his front<<else>>As you move to $his front, with one arm still around $him, $he again tries to break away but you keep $him held tightly and you whisper the alternatives to $him, reminding $him<</if>>. You wrap your arms around $his back as you press $his breasts against your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. -<<else>> - $His massive tits are too large for you to wrap your arms around so you start to wrap your arms around $his waist. You feel $his heart beat against your chest, $he starts to breathe faster as you press $his back against your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. -<</if>> - -<<if (getSlave($AS).fetish == "mindbroken")>> - $His posture doesn't change. $He initially only reacts slightly to your physical touch but eventually $he relaxes in the warmth of your embrace against $him. You know that this may only be a physiological reaction, nothing more. For a brief moment you think you detect a spark of life in $his dull eyes but just as quickly, it is gone. When you stop, $his <<= App.Desc.eyesColor(getSlave($AS))>> track the movements of your hands briefly but then $he stares blankly ahead of $him, not understanding what is happening. -<<elseif (getSlave($AS).relationship == -2)>> - In the warmth of your embrace, $he turns towards you, $his passionate <<= App.Desc.eyesColor(getSlave($AS))>> staring intently at your face. $He leans closer to you and kisses you as you hold $him. $His heart beats faster and then gradually slows as $he grows accustomed to your body against $hers. Eventually, $he relaxes totally and $his eyes gradually close, melting in your arms. When you finally stop and relax your embrace, $his eyes remain closed and $his mouth still in a rapturous shape for a moment before $he slowly opens $his eyes and smiles at you with a blissful look on $his face. <<if (hasAnyArms(getSlave($AS)))>> $His hand reaches to your arms and $he strokes them longingly.<</if>> - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He slowly opens them and does $his best to communicate love with $his <<= App.Desc.eyesColor(getSlave($AS))>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s dreamily. - <</if>> - $He looks at you, almost begging you with $his eyes that $he wants much more than a mere embrace. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - In your soft, warm embrace, $he tries hard to stop $himself from losing $himself in your arms. - <<if (hasAnyArms(getSlave($AS)))>> - $He starts to embrace you <<if (hasBothArms(getSlave($AS)))>>in $his arms<<else>>with $his arm<</if>> as well. When you gently squeeze $him in your arms, $he breathes more heavily and starts to lovingly squeeze you as well, $his tendency towards sexual dominance encouraging $him to compete with you in embraces against each other. - <<else>> - When you gently squeeze $him in your arms, $he breathes more heavily before relaxing against you. - <</if>> - When you finally stop and relax your embrace, $his eyes are closed and $he's smiling blissfully. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He slowly opens them and does $his best to communicate excitement with $his <<= App.Desc.eyesColor(getSlave($AS))>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that. - <<else>> - "That wa<<s>> fun, <<Master>>," $he <<say>>s cheerfully. - <</if>> - $He eagerly looks at you, $his eyes almost seem to say that $he wants you to give $his <<Master>> more than a mere hug. -<<elseif (getSlave($AS).devotion > 50)>> - $He sighs devotedly in your arms and slowly relaxes. $He turns towards you, $his doting <<= App.Desc.eyesColor(getSlave($AS))>> staring intently at your face. You feel $his heart beating faster against your chest as you softly squeeze your arms tighter.<<if hasAnyArms(getSlave($AS))>> $His hand<<if hasBothArms(getSlave($AS))>>s<</if>> reach to your arms and $he strokes them longingly as you squeeze.<</if>> $He gradually closes $his eyes as $he leans $his body against yours, melting in your warm embrace, and you feel the intense heat from $his body against your - <<if $PC.boobs >= 1400>> - expansive <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> chest. - <<elseif $PC.boobs >= 1200>> - huge <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 1000>> - big <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 800>> - soft breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - small chest. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - flat chest. - <</if>> - When you finally stop, <<if (hasAnyArms(getSlave($AS)))>>$he reaches to your face with $his hand and gently strokes your cheek<<else>>$he turns to you<</if>>, a euphoric look on $his <<= getSlave($AS).skin>> face. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He does $his best to communicate devotion with $his <<= App.Desc.eyesColor(getSlave($AS))>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<elseif (getSlave($AS).accent >= 3)>> - $He does $his best to communicate devotion with $his <<= App.Desc.eyesColor(getSlave($AS))>>, since $he's not confident in $his ability to express it in $language. - <<else>> - "I love you, <<Master>>," $he <<say>>s elatedly. - <</if>> - $He looks at you longingly, almost as if $he's bursting to say that $he wants more than a mere embrace. -<<elseif (getSlave($AS).devotion > 20)>> - $He willingly gives $himself up to your embracing arms. As you are so close to $him, you sense considerable uneasiness in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your soft embrace against $his body. $He gradually closes $his eyes in the feeling of your gentle arms. When you finally stop and relax your embrace, $his <<= App.Desc.eyesColor(getSlave($AS))>> open to gaze puzzlingly at you. Even though $he has accepted life as a sex slave, $he looks as though $he is unsure of what to make of this non-sexual physical contact. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $His eyes beg for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust < -20)>> - $He shakes at your touch fearfully. As you softly press $his trembling body against you, $his eagerness to avoid punishment leads $him to stiffen in your arms. While $he continues to shudder, you continue embracing $him, enjoying $his fear, and the physical intimacy slowly does its work. $He starts to relax, $his resistance easing and $his eyes start to close. When you relax your arms for a moment, $he opens $his eyes to look at you for a long moment, $his eyes darting up to your face, before visibly catching $himself with a reminder that $he's a slave and you're $his owner. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $His eyes beg for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).trust < -50)>> - $He is nearly frozen with fear, and does not resist as you start to squeeze your arms around $him. In fact, $he barely reacts at all. $He stares at your arms as they continue squeezing, but it's like touching a statue. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of embracing the still <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>> and release $him, $he stares at you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $His eyes beg for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs spastically, begging fearfully to know if that's it. - <<else>> - $He asks nervously, "I-i<<s>> that it, <<Master>>?" - <</if>> - Then $he cringes, unsure of what you are going to do next. -<<else>> - $He reflexively tries to break free from your arms, but you keep $him wrapped in them. Shuddering, $he desperately leans away from you, but you tip forward with $him and pin $him against your desk, continuing your hold on $him. $He tries to wriggle out of your grasp desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and release $him, $he stares at you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $His eyes demand an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs irritably, asking whether that's it. - <<else>> - $He splutters, "I<<s>> that it, <<Master>>!?" - <</if>> - $He shakes uncontrollably, apprehensive at what you are going to do next. -<</if>> diff --git a/src/npc/interaction/fFeelings.js b/src/npc/interaction/fFeelings.js index cf031998e17def4aedf6f0341292d39c94625983..5863524766284f2a43900e1c9ffc5ef2ec93a644 100644 --- a/src/npc/interaction/fFeelings.js +++ b/src/npc/interaction/fFeelings.js @@ -807,9 +807,16 @@ App.Interact.feelings = function(slave) { r.push(`I'm so horny, ${Master}.`); if (plugWidth(slave) === 1 && slave.anus > 2) { r.push(`I wear the buttplug you gave me, but it is so small... It reminds me of being fucked in the ass, but I can barely feel it. It drives me crazy.`); - } else if (((plugWidth(slave) === 1 && slave.anus < 3) || (plugWidth(slave) === 2 && slave.anus === 3) || plugWidth(slave) === 3 && slave.anus >= 4) ) { + } else if ( + (plugWidth(slave) === 1 && slave.anus < 3) || + (plugWidth(slave) === 2 && slave.anus === 3) || + (plugWidth(slave) === 3 && slave.anus >= 4) + ) { r.push(`Thank you for the buttplug. It is really fun to have my ass filled all day long.`); - } else if ((plugWidth(slave) === 2 && slave.anus < 3) || (plugWidth(slave) > 2 && slave.anus < 4) ) { + } else if ( + (plugWidth(slave) === 2 && slave.anus < 3) || + (plugWidth(slave) > 2 && slave.anus < 4) + ) { r.push(`I like it up the ass, but the plug you make me wear is too big. It really hurts. Not in the good way.`); } else { r.push(`My anus is killing me, all I want to do is touch it and massage it and fill it.`); @@ -1188,19 +1195,19 @@ App.Interact.feelings = function(slave) { if (slave.bellyFluid >= 10000) { r.push(Spoken(slave, `My belly hurts a bit, but it's worth it to let everybody know what a disgraceful, gluttonous <span class="note">pig</span> I am.`)); } else if (slave.bellyFluid >= 5000) { - r.push(Spoken(slave, `I can't believe I get to gorge myself silly on${_fluid} and show it off! Thank you, ${Master}.`)); + r.push(Spoken(slave, `I can't believe I get to gorge myself silly on ${_fluid} and show it off! Thank you, ${Master}.`)); } else if (slave.bellyFluid >= 2000) { - r.push(Spoken(slave, `This${_fluid} is delicious, but wouldn't it be hot if your little piggy had an even <span class="note">bigger</span> belly for people to stare at?`)); + r.push(Spoken(slave, `This ${_fluid} is delicious, but wouldn't it be hot if your little piggy had an even <span class="note">bigger</span> belly for people to stare at?`)); } } else if (slave.behavioralFlaw === "gluttonous" && ["food", "milk"].includes(_fluid) && [1, 3].includes(slave.inflationMethod)) { if (slave.bellyFluid >= 10000 && slave.fetish === "masochist" && slave.fetishStrength > 60) { - r.push(Spoken(slave, `This${_fluid} is so tasty, and my belly hurts so <span class="note">good</span>... I wish I really could stuff myself to bursting.`)); + r.push(Spoken(slave, `This ${_fluid} is so tasty, and my belly hurts so <span class="note">good</span>... I wish I really could stuff myself to bursting.`)); } else if (slave.bellyFluid >= 10000) { r.push(Spoken(slave, `My belly hurts a little, but it feels so good to gorge myself...`)); } else if (slave.bellyFluid >= 5000) { r.push(Spoken(slave, `I can't believe I get to stuff myself like this! Thank you, ${Master}.`)); } else if (slave.bellyFluid >= 2000) { - r.push(Spoken(slave, `Thank you for letting me have so much delicious${_fluid}, ${Master}.`)); + r.push(Spoken(slave, `Thank you for letting me have so much delicious ${_fluid}, ${Master}.`)); } } else if (slave.sexualFlaw === "cum addict" && _fluid === "cum" && [1, 3].includes(slave.inflationMethod)) { if (slave.bellyFluid >= 10000 && slave.fetish === "masochist" && slave.fetishStrength > 60) { @@ -1234,11 +1241,11 @@ App.Interact.feelings = function(slave) { if (slave.bellyFluid >= 10000 && slave.fetish === "masochist" && slave.fetishStrength > 60) { r.push(Spoken(slave, `My guts are so full, ${Master}, it hurts so <span class="note">good</span>...`)); } else if (slave.bellyFluid >= 10000) { - r.push(Spoken(slave, `I feel really full, can I let the${_fluid} out now?`)); + r.push(Spoken(slave, `I feel really full, can I let the ${_fluid} out now?`)); } else if (slave.bellyFluid >= 5000) { - r.push(Spoken(slave, `I feel so full, can I let the${_fluid} out now?`)); + r.push(Spoken(slave, `I feel so full, can I let the ${_fluid} out now?`)); } else if (slave.bellyFluid >= 2000) { - r.push(Spoken(slave, `I feel so uncomfortable, can I let the${_fluid} out now?`)); + r.push(Spoken(slave, `I feel so uncomfortable, can I let the ${_fluid} out now?`)); } } } @@ -1330,7 +1337,11 @@ App.Interact.feelings = function(slave) { break; case "intensive testicle enhancement": r.push(Spoken(slave, `My balls feel incredibly full, ${Master}. They're really uncomfortable.`)); - if (slave.fetishKnown === 1 && (slave.fetish === "dom") || (slave.fetish === "sadist") && slave.fetishStrength > 60) { + if ( + slave.fetishKnown === 1 && + (slave.fetish === "dom" || slave.fetish === "sadist") && + slave.fetishStrength > 60 + ) { r.push(Spoken(slave, `But I can't wait to force a bitch to take the whole load.`)); } else if (slave.fetishKnown === 1 && slave.fetish === "pregnancy" && slave.fetishStrength > 60) { r.push(Spoken(slave, `I feel like I could fill a girl's womb with cum with one orgasm.`)); @@ -1340,7 +1351,11 @@ App.Interact.feelings = function(slave) { break; case "hyper testicle enhancement": r.push(Spoken(slave, `My balls feel so incredibly full, ${Master}. They're really painful.`)); - if (slave.fetishKnown === 1 && (slave.fetish === "dom") || (slave.fetish === "sadist") && slave.fetishStrength > 60) { + if ( + slave.fetishKnown === 1 && + (slave.fetish === "dom" || slave.fetish === "sadist") && + slave.fetishStrength > 60 + ) { r.push(Spoken(slave, `But I can't wait to fill a bitch with my load. Bet they'll look pregnant when I'm done.`)); } else if (slave.fetishKnown === 1 && slave.fetish === "pregnancy" && slave.fetishStrength > 60) { r.push(Spoken(slave, `I feel like I could fertilize all of a girl's eggs with my cum.`)); @@ -1349,7 +1364,7 @@ App.Interact.feelings = function(slave) { } break; case "intensive breast injections": - if (slave.fetishKnown === 1 && (slave.fetish === "boobs") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "boobs" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my boobs swelling, ${Master}. Thank you for injecting them with hormones, and please, never stop.`)); } else { r.push(Spoken(slave, `I can almost feel my boobs swelling, ${Master}. It's kind of uncomfortable.`)); @@ -1367,7 +1382,7 @@ App.Interact.feelings = function(slave) { } break; case "intensive butt injections": - if (slave.fetishKnown === 1 && (slave.fetish === "buttslut") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "buttslut" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my butt growing, ${Master}. I can't wait to feel a dick sliding up in between my buttocks.`)); } else { r.push(Spoken(slave, `I can almost feel my butt growing, ${Master}. It's kind of uncomfortable.`)); @@ -1385,7 +1400,7 @@ App.Interact.feelings = function(slave) { } break; case "lip injections": - if (slave.fetishKnown === 1 && (slave.fetish === "cumslut") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "cumslut" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my lips swelling, ${Master}. I can't wait to wrap them around a cock.`)); } else { r.push(Spoken(slave, `I can almost feel my lips swelling, ${Master}. It's kind of uncomfortable.`)); diff --git a/src/npc/interaction/fKiss.js b/src/npc/interaction/fKiss.js new file mode 100644 index 0000000000000000000000000000000000000000..de04aa1bc29f27b83168f40e2fc49a96be40c8f1 --- /dev/null +++ b/src/npc/interaction/fKiss.js @@ -0,0 +1,579 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fKiss = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, wife, woman, girl + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + const {womanP} = getPronouns(V.PC).appendSuffix("P"); + let assignedGag = ""; + r.push(`You tell ${slave.slaveName} to`); + switch (slave.mouthAccessory) { + case "none": + if (canMove(slave)) { + r.push(`approach you.`); + } else { + r.push(`have another slave help ${him} to your desk.`); + } + break; + case "dildo gag": + if (hasAnyArms(slave) && canMove(slave)) { + r.push(`remove ${his} dildo gag and approach you.`); + } else { + r.push(`have another slave remove ${his} dildo gag and set ${him} down on your desk.`); + } + assignedGag = slave.mouthAccessory; + slave.mouthAccessory = "none"; + break; + case "massive dildo gag": + if (hasAnyArms(slave) && canMove(slave)) { + r.push(`pull ${his} enormous dildo gag out of the depths of ${his} throat and approach you.`); + } else { + r.push(`have another slave pull the enormous dildo gag out of the depths of ${his} throat and set ${him} down on your desk.`); + } + assignedGag = slave.mouthAccessory; + slave.mouthAccessory = "none"; + break; + default: + if (hasAnyArms(slave) && canMove(slave)) { + r.push(`undo ${his} gag and approach you.`); + } else { + r.push(`have another slave undo ${his} gag and set ${him} down on your desk.`); + } + assignedGag = slave.mouthAccessory; + slave.mouthAccessory = "none"; + } + + if (slave.fetish === "mindbroken" && slave.relationship !== -3) { + r.push(`${He} complies mechanically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment.`); + } else if (slave.relationship === -2) { + r.push(`${He} hurriedly complies, happy to be near the object of ${his} longing. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he} loves overwhelming, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he} loves and finds it overwhelming, and after a moment glances away.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.relationship === -3) { + if (slave.fetish === "mindbroken") { + r.push(`${He} complies mechanically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment. You kiss ${him} deeply and intensely; ${he} doesn't understand why.`); + } else if (slave.devotion + slave.trust >= 175) { + r.push(`${He} complies in a ${wife}ly fashion, moving ${his} body as ${he} approaches to best catch your desire. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to affirming, and looks down with a smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he}'s married to and finds it affirming, and looks down with a smile.`); + } + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`${He} complies. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to disturbing, and quickly breaks eye contact.`); + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he}'s forcibly married to and finds it disturbing, and quickly turns ${his} face away.`); + } + } else if (slave.devotion < -20) { + r.push(`${He} complies fearfully. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} tearing ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to horrifying, and quickly breaks eye contact.`); + } else { + r.push(`upon ${his} tear-streaked face. ${He} senses the intense look from the ${womanP} ${he}'s forcibly married to and finds it horrifying, and quickly turns ${his} face away.`); + } + } else { + r.push(`${He} complies obediently. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to reassuring, and looks down with a slight smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`upon ${his} face. ${He} senses the intense look from the ${womanP} ${he}'s married to and finds it reassuring, and looks down with a slight smile.`); + } + } + } else if (slave.devotion > 75) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from ${his} beloved ${getWrittenTitle(slave)} disconcerting, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} senses the intense look from ${his} beloved ${getWrittenTitle(slave)} and finds it disconcerting, and after a moment glances away.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.devotion > 50) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and ${he} looks down after a moment, blushing.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and ${he} looks down after a moment, blushing.`); + } + } else if (slave.devotion > 20) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } + } else if (slave.devotion >= -20 && slave.trust >= -20) { + r.push(`${He} visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, ${his} lower lip trembling with nervousness.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and turns away after a moment, ${his} lower lip trembling with nervousness.`); + } + } else if (slave.trust < -20) { + r.push(`The command terrifies ${him}, but ${he}'s more frightened still of the consequences of disobedience, and ${he} complies. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. After a mere instant of locked gazes, ${he} looks down fearfully, and begins to shake with terror, tears leaking silently down ${his} cheeks.`); + } else { + r.push(`upon ${his} face. After a mere instant of locked faces, ${he} looks down fearfully, and begins to shake with terror, tears leaking silently down ${his} cheeks.`); + } + } else { + r.push(`${He} pauses, obviously considering whether to resist, but eventually decides to save ${his} strength to fight more onerous orders, and gives in. Once ${he}'s close, you take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} stares back, but after a few moments ${he} loses the contest of wills and looks down.`); + } else { + r.push(`upon ${his} face. ${He} faces you defiantly, but after a few moments ${he} loses the contest of wills and looks down.`); + } + } + + r.push(`You extend a`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`hand and graze your fingertips along the line of ${his} cheekbone.`); + if (slave.lipsTat !== 0) { + r.push(`Your fingers trace ${his} facial tattoos, slowly picking out the patterns against ${his} ${slave.skin} skin.`); + } + if (slave.lipsPiercing + slave.tonguePiercing > 2) { + r.push(`You touch each of ${his} facial piercings, one by one, feeling the hard metal contrast with ${his} pliant flesh.`); + } + r.push(`Then, you gently raise ${his}`); + if (slave.face > 95) { + r.push(`heartrendingly beautiful`); + } else if (slave.face > 10) { + r.push(`lovely`); + } else if (slave.face >= -10) { + r.push(`pretty`); + } else if (slave.face >= -40) { + r.push(`homely`); + } else { + r.push(`ugly`); + } + r.push(`chin and kiss ${him} right on ${his}`); + if (slave.lips > 95) { + r.push(`facepussy.`); + } else { + if (slave.lips > 70) { + r.push(`pillowlike`); + } else if (slave.lips > 40) { + r.push(`generous`); + } else if (slave.lips > 20) { + r.push(`plush`); + } + r.push(`lips.`); + } + + if (slave.relationship === -3) { + if (slave.fetish === "mindbroken") { + r.push(`${His} mouth opens to accept the kiss, and is compliant with your questing tongue. You kiss your broken ${wife} deeply. ${His} posture remains completely unchanged. Being kissed affects ${him} as little as being penetrated, being struck, being loved, or being your V.wife: not at all. When you pull away,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} track you carefully, awaiting further use of ${his} body.`); + } else { + r.push(`${he} exposes ${himself} to you, awaiting further use of ${his} body.`); + } + } else if (slave.devotion + slave.trust >= 175) { + r.push(`${His} mouth accepts yours with love, matching itself perfectly to your insistent lips and tongue.`); + if (App.Medicine.Modification.teeth.get(slave.teeth).sharp) { + r.push(`(Though you're quite careful around ${his} sharp dentition.)`); + } + r.push(`${He} melts into you, sighing ever so gently. When you finally break the kiss, ${his} mouth freezes in the shape it was in when last your lips touched, and a momentary look of longing crosses ${his} face.`); + if (hasAnyArms(slave)) { + r.push(`A hand reaches dumbly up to ${his} mouth to trace ${his} lips where yours last touched.`); + } + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(Spoken(slave, `"I love you, ${Master}," ${he} says dreamily.`)); + } + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`${He} reflexively turns ${his} head away from you, but you catch your ${wife} by ${his} jaw and kiss ${him} harder. You wrap your arms around ${him} so ${he} cannot escape. ${He} wriggles desperately, but ${his} struggles slowly subside as ${he} realizes that you're not taking this any farther. When you bore of it and pull away, ${he} glares at you.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes demand`); + } else { + r.push(`expression demands`); + } + r.push(`an answer: are you done?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs irritably, asking if you're done.`); + } else { + r.push(`${He} splutters, "Are you done, ${Master}?"`); + } + } else if (slave.devotion < -20) { + r.push(`${He} is nearly frozen with fear, and does not resist as you kiss ${him} deeply. In fact, ${he} barely reacts at all. ${He} opens ${his} mouth mechanically in response to your insistent tongue, but it's like kissing a doll. ${He} is so filled with terror that ${he} remains stiff even as it becomes clear to ${him} you're not going to hurt ${him}. When you bore of making out with your ${wife} and pull away, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs spastically, begging fearfully to know if that's it.`); + } else { + r.push(`${He} asks nervously before cringing, "I-is that it, ${Master}?"`); + } + } else { + r.push(`${He} accepts the kiss willingly. As you are so close to ${him}, you sense considerable turmoil in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a ${wife} by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your lips and tongue. When you finally break the kiss,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} gaze into yours searchingly,`); + } else { + r.push(`${he} gazes at you,`); + } + r.push(`looking for answers that are not there.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push(`${He} asks hesitantly, "I-is that it, ${Master}?"`); + } + } + } else if (slave.fetish === "mindbroken") { + r.push(`${His} mouth opens to accept the kiss, and is compliant with your questing tongue. ${His} posture remains completely unchanged. Being kissed affects ${him} as little as being penetrated, being struck, or being loved: not at all. When you pull away,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} track you carefully, awaiting further use of ${his} body.`); + } else { + r.push(`${he} exposes ${himself} to you, awaiting further use of ${his} body.`); + } + } else if (slave.relationship === -2) { + r.push(`${His} mouth accepts yours with love, matching itself perfectly to your insistent lips and tongue.`); + if (App.Medicine.Modification.teeth.get(slave.teeth).sharp) { + r.push(`(Though you're quite careful around ${his} sharp dentition.)`); + } + r.push(`${He} melts into you, sighing ever so gently. When you finally break the kiss, ${his} mouth freezes in the shape it was in when last your lips touched, and a momentary look of longing crosses ${his} face.`); + if (hasAnyArms(slave)) { + r.push(`A hand reaches dumbly up to ${his} mouth to trace ${his} lips where yours last touched.`); + } + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(Spoken(slave, `"I love you, ${Master},"`)); + r.push(`${he} ${say}s dreamily.`); + } + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`${He} giggles into you and kisses you back with vigor, ${his} head pressing insistently forward. The two of you make out rather`); + if (slave.teeth === "pointy") { + r.push(`aggressively, ${his} sharp teeth drawing a bit of blood from your lips and tongue.`); + } else if (slave.teeth === "fangs") { + r.push(`aggressively, ${his} fangs drawing a bit of blood from your lips and tongue.`); + } else if (slave.teeth === "fang") { + r.push(`aggressively, ${his} pointy fang drawing a bit of blood from your lips and tongue.`); + } else { + r.push(`aggressively.`); + } + r.push(`${He} takes ${his} tendency towards sexual dominance right up to the edge of insubordination, ${his} active tongue only retreating when yours presses against it. When you finally shove ${him} away, ${he}'s breathing hard through ${his} grin.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate excitement with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate excitement with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push(Spoken(slave, `"That was fun, ${Master},"`)); + r.push(`${he} ${say}s cheerfully.`); + } + } else if (slave.devotion > 50 && slave.fetish === "cumslut" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`${He} stiffens with arousal. ${His} sexuality is complex, focusing on cum, but with a heavy layer of oral fixation. As your tongue plunders ${his} mouth, ${he} reacts almost as though ${he}'s receiving oral, whimpering and moaning into you and pressing ${himself} lewdly against your`); + if (V.PC.boobs >= 1400) { + r.push(`giant tits.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`prominent breasts.`); + } else if (V.PC.boobs >= 650) { + r.push(`unremarkable breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`tiny breasts.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`non-existent breasts.`); + } + if (App.Medicine.Modification.teeth.get(slave.teeth).sharp) { + if (slave.teeth === "pointy") { + r.push(`${He}'s very careful to avoid spearing your tongue with ${his} sharp teeth.`); + } else if (slave.teeth === "fangs") { + r.push(`${He}'s very careful to avoid spearing your tongue with ${his} fangs.`); + } else if (slave.teeth === "fang") { + r.push(`${He}'s very careful to avoid poking you with ${his} fang.`); + } + } + r.push(`${He} achieves a weak orgasm before you tire of making out with ${him}.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push(Spoken(slave, `"That was fun, ${Master},"`)); + r.push(`${he} ${say}s lustfully.`); + } + } else if (slave.devotion > 50) { + r.push(`${His} mouth accepts yours with devotion, matching itself carefully to your insistent lips and tongue.`); + if (App.Medicine.Modification.teeth.get(slave.teeth).sharp) { + if (slave.teeth === "pointy") { + r.push(`${He} is exquisitely careful to keep ${his} sharp teeth clear of you.`); + } else if (slave.teeth === "fangs") { + r.push(`${He} is exquisitely careful to keep ${his} fangs from poking you.`); + } else if (slave.teeth === "fang") { + r.push(`${He} is exquisitely careful to keep ${his} fang from getting into trouble.`); + } + } + r.push(`${He} presses ${himself} against you, ${his} warmth wonderful against your`); + if (V.PC.boobs >= 1400) { + r.push(`expansive`); + if (V.PC.boobsImplant / V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`chest.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge`); + if (V.PC.boobsImplant / V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big`); + if (V.PC.boobsImplant / V.PC.boobs >= .60) { + r.push(`firm`); + } else { + r.push(`soft`); + } + r.push(`breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`soft breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`small chest.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`flat chest.`); + } + r.push(`When you finally break the kiss, ${he} runs ${his} tongue rapturously across ${his} moistened lips${hasAnyArms(slave) ? ` and then runs a finger across them as well` : ``}, an openly sexual look on ${his} ${slave.skin} face.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(Spoken(slave, `"I love you, ${Master},"`)); + r.push(`${he} ${say}s forthrightly.`); + } + } else if (slave.devotion > 20) { + r.push(`${He} accepts the kiss willingly. As you are so close to ${him}, you sense considerable turmoil in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your lips and tongue. When you finally break the kiss,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} gaze into yours searchingly,`); + } else { + r.push(`${he} gazes at you,`); + } + r.push(`looking for answers that are not there.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push(`${He} asks hesitantly,`); + r.push(Spoken(slave, `"I-is that it, ${Master}?"`)); + } + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`${He} accepts the kiss fearfully. As you kiss ${his} unresisting mouth, ${his} eagerness to avoid punishment leads ${him} to kiss you back, though nervousness makes ${him} mechanical. You kiss ${him} harder, enjoying ${his} fear, and the physical intimacy slowly does its work. ${He} becomes softer and more natural, ${his} resistance easing. When you pull away from ${him} for a moment, ${he}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you for a long moment, ${his} mouth still hanging open, before visibly catching ${himself} with a reminder that ${he}'s a slave and you're ${his} owner.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else if (slave.trust < -50) { + r.push(`${He} is nearly frozen with fear, and does not resist as you kiss ${him}. In fact, ${he} barely reacts at all. ${He} opens ${his} mouth mechanically in response to your insistent tongue, but it's like kissing a doll. ${He} is so filled with terror that ${he} remains stiff even as it becomes clear to ${him} you're not going to hurt ${him}. When you bore of making out with the poor`); + if (slave.physicalAge > 30) { + r.push(`${woman}`); + } else { + r.push(`${girl}`); + } + r.push(`and pull away, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs spastically, begging fearfully to know if that's it.`); + } else { + r.push( + `${He} asks nervously before cringing,`, + Spoken(slave, `"I-is that it, ${Master}?"`) + ); + } + } else { + r.push(`${He} reflexively turns ${his} head away from you, but you catch ${his} jaw and kiss ${him} harder. Spluttering, ${he} flees backwards, but you tip forward with ${him} and pin ${him} against your desk, plundering ${his} mouth without mercy. ${He} wriggles desperately, but ${his} struggles slowly subside as ${he} realizes that you're not taking this any farther. When you bore of it and pull away, ${he} stares at you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes demand`); + } else { + r.push(`expression demands`); + } + r.push(`an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs irritably, asking whether that's it.`); + } else { + r.push( + `${He} splutters,`, + Spoken(slave, `"Is that it, ${Master}!?"`) + ); + } + } + + if (assignedGag) { + slave.mouthAccessory = assignedGag; + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fKiss.tw b/src/npc/interaction/fKiss.tw deleted file mode 100644 index 1019969fc2f190078084e6c7309f362bd8ea417a..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fKiss.tw +++ /dev/null @@ -1,326 +0,0 @@ -:: FKiss [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<setPlayerPronouns>> - -You tell <<= getSlave($AS).slaveName>> to -<<switch getSlave($AS).mouthAccessory>> -<<case "none">> - <<if canMove(getSlave($AS))>> - approach you. - <<else>> - have another slave help $him to your desk. - <</if>> -<<case "dildo gag">> - <<if hasAnyArms(getSlave($AS)) && canMove(getSlave($AS))>> - remove $his dildo gag and approach you. - <<else>> - have another slave remove $his dildo gag and set $him down on your desk. - <</if>> - <<set _tempGag = getSlave($AS).mouthAccessory, getSlave($AS).mouthAccessory = "none">> -<<case "massive dildo gag">> - <<if hasAnyArms(getSlave($AS)) && canMove(getSlave($AS))>> - pull $his enormous dildo gag out of the depths of $his throat and approach you. - <<else>> - have another slave pull the enormous dildo gag out of the depths of $his throat and set $him down on your desk. - <</if>> - <<set _tempGag = getSlave($AS).mouthAccessory, getSlave($AS).mouthAccessory = "none">> -<<default>> - <<if hasAnyArms(getSlave($AS)) && canMove(getSlave($AS))>> - undo $his gag and approach you. - <<else>> - have another slave undo $his gag and set $him down on your desk. - <</if>> - <<set _tempGag = getSlave($AS).mouthAccessory, getSlave($AS).mouthAccessory = "none">> -<</switch>> - -<<run Enunciate(getSlave($AS))>> - -<<if (getSlave($AS).fetish == "mindbroken") && (getSlave($AS).relationship != -3)>> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. -<<elseif (getSlave($AS).relationship == -2)>> - $He hurriedly complies, happy to be near the object of $his longing. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he loves overwhelming, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he loves and finds it overwhelming, and after a moment glances away. - <</if>> - $He blushes furiously. -<<elseif (getSlave($AS).relationship == -3)>> - <<if getSlave($AS).fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. You kiss $him deeply and intensely; $he doesn't understand why. - <<elseif getSlave($AS).devotion+getSlave($AS).trust >= 175>> - $He complies in a <<= $wife>>ly fashion, moving $his body as $he approaches to best catch your desire. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he's married to and finds it affirming, and looks down with a smile. - <</if>> - <<elseif getSlave($AS).devotion < -20 && getSlave($AS).trust > 20>> - $He complies. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and quickly breaks eye contact. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he's forcibly married to and finds it disturbing, and quickly turns $his face away. - <</if>> - <<elseif getSlave($AS).devotion < -20>> - $He complies fearfully. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his tearing <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to horrifying, and quickly breaks eye contact. - <<else>> - upon $his tear-streaked face. $He senses the intense look from the _womanP $he's forcibly married to and finds it horrifying, and quickly turns $his face away. - <</if>> - <<else>> - $He complies obediently. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. - <<else>> - upon $his face. $He senses the intense look from the _womanP $he's married to and finds it reassuring, and looks down with a slight smile. - <</if>> - <</if>> -<<elseif (getSlave($AS).devotion > 75)>> - $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from $his beloved <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He senses the intense look from $his beloved <<= getWrittenTitle(getSlave($AS))>> and finds it disconcerting, and after a moment glances away. - <</if>> - $He blushes furiously. -<<elseif (getSlave($AS).devotion > 50)>> - $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $he looks down after a moment, blushing. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $he looks down after a moment, blushing. - <</if>> -<<elseif (getSlave($AS).devotion > 20)>> - $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. - <</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and turns away after a moment, $his lower lip trembling with nervousness. - <</if>> -<<elseif (getSlave($AS).trust < -20)>> - The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. After a mere instant of locked gazes, $he looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. - <<else>> - upon $his face. After a mere instant of locked faces, $he looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. - <</if>> -<<else>> - $He pauses, obviously considering whether to resist, but eventually decides to save $his strength to fight more onerous orders, and gives in. Once $he's close, you take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He stares back, but after a few moments $he loses the contest of wills and looks down. - <<else>> - upon $his face. $He faces you defiantly, but after a few moments $he loses the contest of wills and looks down. - <</if>> -<</if>> - -You extend a <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand and graze your fingertips along the line of $his cheekbone. -<<if (getSlave($AS).lipsTat != 0)>> - Your fingers trace $his facial tattoos, slowly picking out the patterns against $his <<= getSlave($AS).skin>> skin. -<</if>> -<<if (getSlave($AS).lipsPiercing+getSlave($AS).tonguePiercing > 2)>> - You touch each of $his facial piercings, one by one, feeling the hard metal contrast with $his pliant flesh. -<</if>> -Then, you gently raise $his <<if getSlave($AS).face > 95>>heartrendingly beautiful<<elseif getSlave($AS).face > 10>>lovely<<elseif getSlave($AS).face >= -10>>pretty<<elseif getSlave($AS).face >= -40>>homely<<else>>ugly<</if>> chin and kiss $him right on $his <<if getSlave($AS).lips > 95>>facepussy<<else>><<if getSlave($AS).lips > 70>>pillowlike <<elseif getSlave($AS).lips > 40>>generous <<elseif getSlave($AS).lips > 20>>plush <</if>>lips<</if>>. - -<<if (getSlave($AS).relationship == -3)>> - <<if getSlave($AS).fetish == "mindbroken">> - $His mouth opens to accept the kiss, and is compliant with your questing tongue. You kiss your broken $wife deeply. $His posture remains completely unchanged. Being kissed affects $him as little as being penetrated, being struck, being loved, or being your $wife: not at all. When you pull away, - <<if canSee(getSlave($AS))>> - $his <<= App.Desc.eyesColor(getSlave($AS))>> track you carefully, awaiting further use of $his body. - <<else>> - $he exposes $himself to you, awaiting further use of $his body. - <</if>> - <<elseif getSlave($AS).devotion+getSlave($AS).trust >= 175>> - $His mouth accepts yours with love, matching itself perfectly to your insistent lips and tongue.<<if (getSlave($AS).teeth == "pointy") || (getSlave($AS).teeth == "fangs") || (getSlave($AS).teeth == "fang")>> (Though you're quite careful around $his sharp dentition.)<</if>> $He melts into you, sighing ever so gently. When you finally break the kiss, $his mouth freezes in the shape it was in when last your lips touched, and a momentary look of longing crosses $his face.<<if hasAnyArms(getSlave($AS))>> A hand reaches dumbly up to $his mouth to trace $his lips where yours last touched.<</if>> - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif !hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s dreamily. - <</if>> - <<elseif getSlave($AS).devotion < -20 && getSlave($AS).trust > 20>> - $He reflexively turns $his head away from you, but you catch your $wife by $his jaw and kiss $him harder. You wrap your arms around $him so $he cannot escape. $He wriggles desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and pull away, $he glares at you. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes demand<<else>>expression demands<</if>> an answer: are you done? - <<elseif !canTalk(getSlave($AS))>> - $He signs irritably, asking if you're done. - <<else>> - $He splutters, "Are you done, <<Master>>?" - <</if>> - <<elseif getSlave($AS).devotion < -20>> - $He is nearly frozen with fear, and does not resist as you kiss $him deeply. In fact, $he barely reacts at all. $He opens $his mouth mechanically in response to your insistent tongue, but it's like kissing a doll. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of making out with your $wife and pull away, $he stares at you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs spastically, begging fearfully to know if that's it. - <<else>> - $He asks nervously before cringing, "I-i<<s>> that it, <<Master>>?" - <</if>> - <<else>> - $He accepts the kiss willingly. As you are so close to $him, you sense considerable turmoil in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a $wife by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your lips and tongue. When you finally break the kiss, <<if canSee(getSlave($AS))>>$his <<= App.Desc.eyesColor(getSlave($AS))>> gaze into yours searchingly<<else>>$he gazes at you<</if>>, looking for answers that are not there. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> - <</if>> -<<elseif (getSlave($AS).fetish == "mindbroken")>> - $His mouth opens to accept the kiss, and is compliant with your questing tongue. $His posture remains completely unchanged. Being kissed affects $him as little as being penetrated, being struck, or being loved: not at all. When you pull away, - <<if canSee(getSlave($AS))>> - $his <<= App.Desc.eyesColor(getSlave($AS))>> track you carefully, awaiting further use of $his body. - <<else>> - $he exposes $himself to you, awaiting further use of $his body. - <</if>> -<<elseif (getSlave($AS).relationship == -2)>> - $His mouth accepts yours with love, matching itself perfectly to your insistent lips and tongue.<<if (getSlave($AS).teeth == "pointy") || (getSlave($AS).teeth == "fangs") || (getSlave($AS).teeth == "fang")>> (Though you're quite careful around $his sharp dentition.)<</if>> $He melts into you, sighing ever so gently. When you finally break the kiss, $his mouth freezes in the shape it was in when last your lips touched, and a momentary look of longing crosses $his face.<<if hasAnyArms(getSlave($AS))>> A hand reaches dumbly up to $his mouth to trace $his lips where yours last touched.<</if>> - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif !hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s dreamily. - <</if>> -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - $He giggles into you and kisses you back with vigor, $his head pressing insistently forward. The two of you make out rather aggressively<<if (getSlave($AS).teeth == "pointy")>>, $his sharp teeth drawing a bit of blood from your lips and tongue<<elseif (getSlave($AS).teeth == "fangs")>>, $his fangs drawing a bit of blood from your lips and tongue<<elseif (getSlave($AS).teeth == "fang")>>, $his pointy fang drawing a bit of blood from your lips and tongue<</if>>. $He takes $his tendency towards sexual dominance right up to the edge of insubordination, $his active tongue only retreating when yours presses against it. When you finally shove $him away, $he's breathing hard through $his grin. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate excitement with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif !hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate excitement with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that. - <<else>> - "That wa<<s>> fun, <<Master>>," $he <<say>>s cheerfully. - <</if>> -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "cumslut") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - $He stiffens with arousal. $His sexuality is complex, focusing on cum, but with a heavy layer of oral fixation. As your tongue plunders $his mouth, $he reacts almost as though $he's receiving oral, whimpering and moaning into you and pressing $himself lewdly against your - <<if $PC.boobs >= 1400>> - giant tits. - <<elseif $PC.boobs >= 1200>> - huge breasts. - <<elseif $PC.boobs >= 1000>> - big breasts. - <<elseif $PC.boobs >= 800>> - prominent breasts. - <<elseif $PC.boobs >= 650>> - unremarkable breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - tiny breasts. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - non-existent breasts. - <</if>> - <<if (getSlave($AS).teeth == "pointy")>> - $He's very careful to avoid spearing your tongue with $his sharp teeth. - <<elseif (getSlave($AS).teeth == "fangs")>> - $He's very careful to avoid spearing your tongue with $his fangs. - <<elseif (getSlave($AS).teeth == "fang")>> - $He's very careful to avoid poking you with $his fang. - <</if>> - $He achieves a weak orgasm before you tire of making out with $him. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate undiminished lust with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif !hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate undiminished lust with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that. - <<else>> - "That wa<<s>> fun, <<Master>>," $he <<say>>s lustfully. - <</if>> -<<elseif (getSlave($AS).devotion > 50)>> - $His mouth accepts yours with devotion, matching itself carefully to your insistent lips and tongue. - <<if (getSlave($AS).teeth == "pointy")>> - $He is exquisitely careful to keep $his sharp teeth clear of you. - <<elseif (getSlave($AS).teeth == "fangs")>> - $He is exquisitely careful to keep $his fangs from poking you. - <<elseif (getSlave($AS).teeth == "fang")>> - $He is exquisitely careful to keep $his fang from getting into trouble. - <</if>> - $He presses $himself against you, $his warmth wonderful against your - <<if $PC.boobs >= 1400>> - expansive <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> chest. - <<elseif $PC.boobs >= 1200>> - huge <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 1000>> - big <<if $PC.boobsImplant/$PC.boobs >= .60>>firm<<else>>soft<</if>> breasts. - <<elseif $PC.boobs >= 800>> - soft breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - small chest. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - flat chest. - <</if>> - When you finally break the kiss, $he runs $his tongue rapturously across $his moistened lips<<if hasAnyArms(getSlave($AS))>> and then runs a finger across them as well<</if>>, an openly sexual look on $his <<= getSlave($AS).skin>> face. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he's not confident in $his ability to express it in $language. - <<elseif !hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s forthrightly. - <</if>> -<<elseif (getSlave($AS).devotion > 20)>> - $He accepts the kiss willingly. As you are so close to $him, you sense considerable turmoil in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your lips and tongue. When you finally break the kiss, <<if canSee(getSlave($AS))>>$his <<= App.Desc.eyesColor(getSlave($AS))>> gaze into yours searchingly<<else>>$he gazes at you<</if>>, looking for answers that are not there. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust < -20)>> - $He accepts the kiss fearfully. As you kiss $his unresisting mouth, $his eagerness to avoid punishment leads $him to kiss you back, though nervousness makes $him mechanical. You kiss $him harder, enjoying $his fear, and the physical intimacy slowly does its work. $He becomes softer and more natural, $his resistance easing. When you pull away from $him for a moment, $he <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you for a long moment, $his mouth still hanging open, before visibly catching $himself with a reminder that $he's a slave and you're $his owner. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).trust < -50)>> - $He is nearly frozen with fear, and does not resist as you kiss $him. In fact, $he barely reacts at all. $He opens $his mouth mechanically in response to your insistent tongue, but it's like kissing a doll. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of making out with the poor <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>> and pull away, $he stares at you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs spastically, begging fearfully to know if that's it. - <<else>> - $He asks nervously before cringing, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<else>> - $He reflexively turns $his head away from you, but you catch $his jaw and kiss $him harder. Spluttering, $he flees backwards, but you tip forward with $him and pin $him against your desk, plundering $his mouth without mercy. $He wriggles desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and pull away, $he stares at you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS)) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes demand<<else>>expression demands<</if>> an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs irritably, asking whether that's it. - <<else>> - $He splutters, "I<<s>> that it, <<Master>>!?" - <</if>> -<</if>> - -<<if def _tempGag>> - <<set getSlave($AS).mouthAccessory = _tempGag>> -<</if>> diff --git a/src/npc/interaction/fLickPussy.js b/src/npc/interaction/fLickPussy.js new file mode 100644 index 0000000000000000000000000000000000000000..62ce7af0d79b9d3685f0921ae0df19e82f98a79b --- /dev/null +++ b/src/npc/interaction/fLickPussy.js @@ -0,0 +1,134 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fLickPussy = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, + he, his, him + } = getPronouns(slave); + + const {womanP} = getPronouns(V.PC).appendSuffix("P"); + + App.Utils.setLocalPronouns(slave); + addPartner(slave, -1); + + const _devotion = slave.devotion; /* for brevity*/ + + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`You summon ${slave.slaveName} to your office and order ${him} to lie down on the couch. ${He} does so`); + if (_devotion > 95) { + r.push(`with a smile, skipping over to give you a quick kiss before ${he} complies with your request.`); + } else if (_devotion > 50) { + r.push(`without hesitation, ready to serve and obey.`); + } else if (_devotion > -50) { + r.push(`with a look of trepidation, as though afraid you're going to hurt ${him}.`); + } else if (_devotion <= -50) { + r.push(`with a look of hatred, though only after you threaten to punish ${him}.`); + } + } else { + r.push(`You have ${slave.slaveName} brought into your office and placed on your couch.`); + } + + r.push(`After ${he} is situated, you go over to `); + if (slave.clothes !== "no clothing") { + r.push(`${him} and take off ${his} clothing, causing ${him} to`); + if (_devotion > 50) { + r.push(`give you a soft smile.`); + } else { + r.push(`give you an angry glare.`); + } + } else { + r.push(`${him}.`); + } + r.push(`You suddenly grab ${his} hips and pull ${his} crotch to your face, causing ${him} to`); + if (canTalk(slave)) { + r.push(`give a shriek of surprise`); + } else { + r.push(`shudder in surprise`); + } + + if (slave.belly >= 30000) { + if (slave.bellyPreg > 1000) { + r.push(`as you get familiar under ${his} huge life-swollen baby bump.`); + } else { + r.push(`as you get familiar under ${his} hugely swollen belly.`); + } + } else if (slave.belly >= 10000) { + if (slave.bellyPreg >= 8000) { + r.push(`as you get under ${his} baby bump.`); + } else if (slave.bellyImplant >= 8000) { + r.push(`as you get under the swollen orb that is ${his} stomach.`); + } else { + r.push(`as you get under the bloated container of ${slave.inflationType} that is ${his} middle.`); + } + } else if (slave.belly >= 1000) { + if (slave.bellyPreg >= 1000) { + r.push(`as you get not far below the life growing within ${him}.`); + } else if (slave.bellyImplant >= 1000) { + r.push(`as you get not far below the curve of ${his} stomach.`); + } else { + r.push(`as you get not far below the groaning container of ${slave.inflationType} within ${him}.`); + } + } else if (slave.weight > 95) { + r.push(`as you get familiar with ${his} fat belly.`); + } + + r.push(`Looking at ${him} directly in the eyes, you begin to run your tongue along ${his} labia, drawing a`); + if (canTalk(slave)) { + r.push(`soft`); + } else { + r.push(`silent`); + } + r.push(`moan from ${him}. The combination of the pleasure and the intense look from`); + if (areRelated(slave, V.PC)) { + r.push(`${his} ${relativeTerm(slave, V.PC)}`); + } else { + r.push(`the ${womanP} ${he}`); + if (_devotion > 95) { + r.push(`loves`); + } else if (_devotion > 50) { + r.push(`'s accepted as ${his} ${getWrittenTitle(slave)}`); + } else { + r.push(`hates`);/* not sure what to use for "reluctant"*/ + } + } + r.push(`makes ${him} blush, but you don't let up.`); + if (slave.dick === 0) { + r.push(`You give ${his} clit a few experimental tweaks, causing ${his}`); + if (canTalk(slave)) { + r.push(`moans`); + } else { + r.push(`squirming`); + } + r.push(`to intensify${(hasBothLegs(slave)) ? `and ${his} legs to tighten around your head` : ``}.`); + } + r.push(`Before ${he} cums, though, you pull back, causing ${him} to whine in frustration. You begin again, then pull back again just before ${he} orgasms. You repeat this several more times, each time causing ${him} to become more and more frustrated. Finally, one last stroke of your tongue causes ${him} to go over the edge, making ${him}`); + if (canTalk(slave)) { + r.push(`scream out`); + if (_devotion > 50) { + r.push(`your name`); + } + } else { + r.push(`spasm`); + } + if (slave.dick > 0) { + if (canAchieveErection(slave)) { + r.push(`in ecstasy and spray cum across ${his} chest.`); + } else { + r.push(`in ecstasy and dribble cum from ${his} limp dick.`); + } + } else { + r.push(`in ecstasy.`); + } + r.push(`You send ${him} back to ${his} assignment before calling in another slave to clean up the mess.`); + + slave.counter.vaginal++; + V.vaginalTotal++; + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fLickPussy.tw b/src/npc/interaction/fLickPussy.tw deleted file mode 100644 index d9de79b39c7af799cff48be6d4db973b30b009d0..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fLickPussy.tw +++ /dev/null @@ -1,60 +0,0 @@ -:: FLickPussy [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> -<<setPlayerPronouns>> - -<<set _devotion = getSlave($AS).devotion>> /*for brevity*/ - -<<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>> - You summon <<= getSlave($AS).slaveName>> to your office and order $him to lie down on the couch. $He does so - <<if _devotion > 95>> - with a smile, skipping over to give you a quick kiss before $he complies with your request. - <<elseif _devotion > 50>> - without hesitation, ready to serve and obey. - <<elseif _devotion > -50>> - with a look of trepidation, as though afraid you're going to hurt $him. - <<elseif _devotion <= -50>> - with a look of hatred, though only after you threaten to punish $him. - <</if>> -<<else>> - You have <<= getSlave($AS).slaveName>> brought into your office and placed on your couch. -<</if>> - -After $he is situated, you go over to $him<<if getSlave($AS).clothes != "no clothing">> and take off $his clothing, causing $him to <<if _devotion > 50>>give you a soft smile<<else>>give you an angry glare<</if>><</if>>. You suddenly grab $his hips and pull $his crotch to your face, causing $him to <<if canTalk(getSlave($AS))>>give a shriek of surprise<<else>>shudder in surprise<</if>> - -<<if getSlave($AS).belly >= 30000>> - <<if getSlave($AS).bellyPreg > 1000>> - as you get familiar under $his huge life-swollen baby bump. - <<else>> - as you get familiar under $his hugely swollen belly. - <</if>> - -<<elseif getSlave($AS).belly >= 10000>> - <<if getSlave($AS).bellyPreg >= 8000>> - as you get under $his baby bump. - <<elseif getSlave($AS).bellyImplant >= 8000>> - as you get under the swollen orb that is $his stomach. - <<else>> - as you get under the bloated container of <<= getSlave($AS).inflationType>> that is $his middle. - <</if>> - -<<elseif getSlave($AS).belly >= 1000>> - <<if getSlave($AS).bellyPreg >= 1000>> - as you get not far below the life growing within $him. - <<elseif getSlave($AS).bellyImplant >= 1000>> - as you get not far below the curve of $his stomach. - <<else>> - as you get not far below the groaning container of <<= getSlave($AS).inflationType>> within $him. - <</if>> -<<elseif getSlave($AS).weight > 95>> - as you get familiar with $his fat belly. -<</if>> - -Looking at $him directly in the eyes, you begin to run your tongue along $his labia, drawing a <<if canTalk(getSlave($AS))>>soft<<else>>silent<</if>> moan from $him. The combination of the pleasure and the intense look from <<if areRelated(getSlave($AS), $PC)>>$his <<=relativeTerm(getSlave($AS), $PC)>><<else>>the _womanP $he<<if _devotion > 95>> loves <<elseif _devotion > 50>>'s accepted as $his <<= getWrittenTitle(getSlave($AS))>><<else>> hates/*not sure what to use for "reluctant"*/<</if>><</if>> makes $him blush, but you don't let up. -<<if getSlave($AS).dick == 0>> - You give $his clit a few experimental tweaks, causing $his <<if canTalk(getSlave($AS))>>moans<<else>>squirming<</if>> to intensify<<if hasBothLegs(getSlave($AS))>> and $his legs to tighten around your head<</if>>. -<</if>> -Before $he cums, though, you pull back, causing $him to whine in frustration. You begin again, then pull back again just before $he orgasms. You repeat this several more times, each time causing $him to become more and more frustrated. Finally, one last stroke of your tongue causes $him to go over the edge, making $him <<if canTalk(getSlave($AS))>>scream out <<if _devotion > 50>>your name<</if>><<else>>spasm<</if>> in ecstasy<<if getSlave($AS).dick > 0>><<if canAchieveErection(getSlave($AS))>> and spray cum across $his chest<<else>> and dribble cum from $his limp dick<</if>><</if>>. You send $him back to $his assignment before calling in another slave to clean up the mess. - -<<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> diff --git a/src/npc/interaction/fMaternitySwing.js b/src/npc/interaction/fMaternitySwing.js new file mode 100644 index 0000000000000000000000000000000000000000..7f0c52f240d90a8aa729cf62fa01c1d85307f53d --- /dev/null +++ b/src/npc/interaction/fMaternitySwing.js @@ -0,0 +1,78 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fMaternitySwing = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, + he, his, him, himself + } = getPronouns(slave); + + slave.partners.add(-1); + + r.push(`You call ${him} over and hook ${him} into the reinforced silk maternity swing built into your office, then lift ${him} into the air so that you can toy with ${his} hyperfecund body. Once you have ${him} properly situated with ${his}`); + if (slave.boobs >= 20000) { + r.push(`obscenely bloated boobs`); + } else if (Math.floor(slave.boobsImplant/slave.boobs) >= .60) { + r.push(`augmented balloon boobies`); + } else if (slave.boobs >= 3000) { + r.push(`enormous breasts`); + } else { + r.push(`cute tits`); + } + r.push(`and`); + if (slave.bellyPreg >= 1000000) { + r.push(`ridiculously enormous, baby packed belly`); + } else if (slave.bellyPreg >= 750000) { + r.push(`mountainous, baby-stuffed gut`); + } else if (slave.bellyPreg >= 600000) { + r.push(`titanic, baby swollen womb`); + } else { + r.push(`massive belly`); + } + r.push(`hanging above the floor of your office, you turn your attention to molesting ${his} ripe protuberances. Running your tongue along the distended nub of ${his} belly button, you kiss your way up the fertile curve of ${his} belly, making your way to ${his} tits so that you can suck on ${his} ${slave.nipples} nipples. ${He} squirms in ${his} restraints and`); + if (slave.devotion > 95) { + if (!canTalk(slave)) { + r.push(`begs you to fuck ${him} already`); + } else { + r.push(`groans inchoately, obviously desperate for you to fuck ${him}`); + } + } else if (slave.trust < -20 && slave.devotion > -10) { + r.push(`groans with barely restrained lust.`); + } else { + r.push(`groans in lust and terror.`); + } + r.push(`You strap into your own customized version of the device, then elevate your body so that`); + if (V.PC.dick !== 0) { + r.push(`your dick`); + } else { + r.push(`the device's built-in strap-on`); + } + r.push(`is at the perfect angle to drive yourself and your`); + if (slave.bellyPreg >= 600000) { + r.push(`brood-slave`); + } else { + r.push(`glorified belly balloon`); + } + r.push(`into a string of mutual orgasms with some truly astounding aerial sex.`); + if (canDoVaginal(slave)) { + r.push(VCheck.Vaginal(slave, 1)); + } else { + r.push(VCheck.Anal(slave, 1)); + } + r.push(`The sight of ${his} swollen body wobbling in mid-air as you pound away at ${him} never gets old,`); + if (slave.devotion > 95) { + r.push(`and ${he} certainly seems to enjoy your ministrations, too.`); + } else if (slave.trust < -20 && slave.devotion > -10) { + r.push(`and, by the end of your session, ${he} seems to be enjoying ${himself}, too.`); + } else { + r.push(`and the sight of ${his} ugly tears rolling down ${his} face to hit the ground far below is one hell of a bonus.`); + } + r.push(`Once finished, you release ${him} from ${his} restraints and have ${him} carried away to clean ${himself} up before returning to ${his} duties.`); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fMaternitySwing.tw b/src/npc/interaction/fMaternitySwing.tw deleted file mode 100644 index 7fc101b9ba4be4591aa825c919d961b5ed29ee9a..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fMaternitySwing.tw +++ /dev/null @@ -1,54 +0,0 @@ -:: FMaternitySwing [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run getSlave($AS).partners.add(-1)>> - -You call $him over and hook $him into the reinforced silk maternity swing built into your office, then lift $him into the air so that you can toy with $his hyperfecund body. Once you have $him properly situated with $his -<<if getSlave($AS).boobs >= 20000>> - obscenely bloated boobs -<<elseif Math.floor(getSlave($AS).boobsImplant/getSlave($AS).boobs) >= .60>> - augmented balloon boobies -<<elseif getSlave($AS).boobs >= 3000>> - enormous breasts -<<else>> - cute tits -<</if>> -and -<<if getSlave($AS).bellyPreg >= 1000000>> - ridiculously enormous, baby packed belly -<<elseif getSlave($AS).bellyPreg >= 750000>> - mountainous, baby-stuffed gut -<<elseif getSlave($AS).bellyPreg >= 600000>> - titanic, baby swollen womb -<<else>> - massive belly -<</if>> -hanging above the floor of your office, you turn your attention to molesting $his ripe protuberances. Running your tongue along the distended nub of $his belly button, you kiss your way up the fertile curve of $his belly, making your way to $his tits so that you can suck on $his <<= getSlave($AS).nipples>> nipples. $He squirms in $his restraints and -<<if getSlave($AS).devotion > 95>> - <<if !canTalk(getSlave($AS))>> - begs you to fuck $him already - <<else>> - groans inchoately, obviously desperate for you to fuck $him - <</if>> -<<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - groans with barely restrained lust. -<<else>> - groans in lust and terror. -<</if>> -You strap into your own customized version of the device, then elevate your body so that <<if $PC.dick != 0>>your dick<<else>>the device's built-in strap-on<</if>> is at the perfect angle to drive yourself and your -<<if getSlave($AS).bellyPreg >= 600000>> - brood-slave -<<else>> - glorified belly balloon -<</if>> -into a string of mutual orgasms with some truly astounding aerial sex. -<<if canDoVaginal(getSlave($AS))>><<= VCheck.Vaginal(getSlave($AS), 1)>><<else>><<= VCheck.Anal(getSlave($AS), 1)>><</if>> -The sight of $his swollen body wobbling in mid-air as you pound away at $him never gets old, -<<if getSlave($AS).devotion > 95>> - and $he certainly seems to enjoy your ministrations, too. -<<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - and, by the end of your session, $he seems to be enjoying $himself, too. -<<else>> - and the sight of $his ugly tears rolling down $his face to hit the ground far below is one hell of a bonus. -<</if>> -Once finished, you release $him from $his restraints and have $him carried away to clean $himself up before returning to $his duties. diff --git a/src/npc/interaction/fNippleFuck.js b/src/npc/interaction/fNippleFuck.js new file mode 100644 index 0000000000000000000000000000000000000000..4559f648a891f41b0832d59d5f47c4536f3774ba --- /dev/null +++ b/src/npc/interaction/fNippleFuck.js @@ -0,0 +1,111 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fNippleFuck = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself + } = getPronouns(slave); + + addPartner(slave, -1); + + slave.counter.mammary += 2; + V.mammaryTotal += 2; + + r.push(`You call ${him} over to make use of ${his} lewd nipple cunts.`); + if (slave.fetish === "boobs" && slave.fetishKnown === 1) { + r.push(`${He} practically vibrates with excitement at the prospect of getting ${his} tits fucked.`); + } else if (slave.boobs >= 40000) { + r.push(`You set out a few cushions on the floor for ${him} and let ${his} breasts spill across them.`); + } else if (slave.boobs >= 20000) { + r.push(`It takes a moment to find a table that can support ${his} breasts and withstand your lovemaking.`); + } else { + r.push(`You settle ${him} on a couch and have ${him} present ${his} chest to you.`); + } + + r.push(`Once ${he} seems comfortable, you turn your attention to ${his} chest. You start by groping and nuzzling ${his} breasts, teasing ${his} nipples with your tongue.`); + + if (slave.lactation > 0) { + r.push(`It doesn't take much stimulation before milk starts dribbling onto your tongue.`); + } + + if (slave.devotion > 20 || slave.trust > 20) { + r.push(`${He} starts making soft noises of pleasure and luxuriates in your attentions.`); + } else { + r.push(`${He} fidgets at your ministrations, but doesn't say anything.`); + } + r.push(`Once you're satisfied, you line up your dick with ${his} right nipple and slowly ease yourself into ${him}.`); + + if (slave.lactation > 0) { + r.push(`Milk gushes around your length and soaks your crotch, the feeling almost like a waterjet, as ${his}`); + } else { + r.push(`${His}`); + } + r.push(`breast flesh grips you tightly. A few experimental pumps draws gasps from ${him} before you start to thrust in earnest. Soon, the room is filled with ${his} moaning and the sound of flesh on flesh.`); + + + if (slave.fetish === "boobs" && slave.fetishKnown === 1) { + r.push(`${He} has a glassy-eyed expression as ${he}`); + if (hasAnyArms(slave)) { + r.push(`gropes ${his} breasts with`); + if (hasBothArms(slave)) { + r.push(`both hands`); + } else { + r.push(`${his} hand`); + } + r.push(`, fingering ${his} unoccupied nipple in time with your thrusts.`); + } else { + r.push(`savors the sensations running through ${his} breast.`); + } + } else if (slave.devotion > 20 || slave.trust > 20) { + r.push(`${He} has a glassy-eyed expression as ${he}`); + if (hasBothArms(slave)) { + r.push(`gropes ${his} breasts with one hand and furiously abuses ${his} clit with the other.`); + } else if (hasAnyArms(slave)) { + r.push(`fingers ${his} pussy while rubbing ${his} arm alongside ${his} breasts.`); + } else { + r.push(`tries ${his} hardest to pleasure ${himself} with no hands.`); + } + } else { + r.push(`${He} turns ${his} gaze away from you as a blush suffuses ${his} cheeks and does ${his} best to suppress ${his} moans.`); + } + + r.push(`As your orgasm begins to build, you roughly grasp ${his} shoulders and begin to pick up the pace.`); + + if (slave.fetish === "boobs" && slave.fetishKnown === 1) { + r.push(`As ${he} reaches ${his} climax, ${his} eyes roll back into ${his} head and ${he} quivers in delight at the intense breastgasm ${he} just sustained.`); + } else if (slave.devotion > 20 || slave.trust > 20) { + r.push(`Eager for release, ${his} moaning grows louder and higher in pitch`); + if (hasAnyArms(slave)) { + r.push(`, and ${his} self-molesting becomes furious and desperate`); + } + r.push(`.`); + } else { + r.push(`As ${he} reaches ${his} climax, ${his} body seems to tense and ${he} bites ${his} lip.`); + } + + r.push(`It only takes few more thrusts before you bottom out inside ${his} breast and release your load deep inside ${him}. You pull yourself free with a lewd sound and proudly survey what you've wrought. Cum`); + if (slave.lactation > 0) { + r.push(`and milk dribble`); + } else { + r.push(`dribbles`); + } + r.push(`from ${his} gaping nipple. Enjoying the sight, you begin to feel yourself hardening and line up your dick at ${his} left nipple for a repeat performance.`); + + if (slave.lactation > 0) { + slave.lactationDuration = 2; + slave.boobs -= slave.boobsMilk; + slave.boobsMilk = 0; + } else { + r.push(induceLactation(slave)); + } + + r.push(`Once both ${his} breasts have been thoroughly fucked, you send ${him} away to clean ${himself} up.`); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fNippleFuck.tw b/src/npc/interaction/fNippleFuck.tw deleted file mode 100644 index c24bc0e0700cb4ae2311d58eb17109ac4d3bc297..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fNippleFuck.tw +++ /dev/null @@ -1,81 +0,0 @@ -:: FNippleFuck [nobr no-history] - -<<run Enunciate(getSlave($AS))>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -<<set getSlave($AS).counter.mammary += 2>> -<<set $mammaryTotal += 2>> - -You call $him over to make use of $his lewd nipple cunts. -<<if getSlave($AS).fetish == "boobs" && getSlave($AS).fetishKnown == 1>> - $He practically vibrates with excitement at the prospect of getting $his tits fucked. -<<elseif getSlave($AS).boobs >= 40000>> - You set out a few cushions on the floor for $him and let $his breasts spill across them. -<<elseif getSlave($AS).boobs >= 20000>> - It takes a moment to find a table that can support $his breasts and withstand your lovemaking. -<<else>> - You settle $him on a couch and have $him present $his chest to you. -<</if>> - -Once $he seems comfortable, you turn your attention to $his chest. You start by groping and nuzzling $his breasts, teasing $his nipples with your tongue. - -<<if getSlave($AS).lactation > 0>> - It doesn't take much stimulation before milk starts dribbling onto your tongue. -<</if>> - -<<if getSlave($AS).devotion > 20 || getSlave($AS).trust > 20>> - $He starts making soft noises of pleasure and luxuriates in your attentions. -<<else>> - $He fidgets at your ministrations, but doesn't say anything. -<</if>> -Once you're satisfied, you line up your dick with $his right nipple and slowly ease yourself into $him. - -<<if getSlave($AS).lactation > 0>> - Milk gushes around your length and soaks your crotch, the feeling almost like a waterjet, as $his -<<else>> - $His -<</if>> -breast flesh grips you tightly. A few experimental pumps draws gasps from $him before you start to thrust in earnest. Soon, the room is filled with $his moaning and the sound of flesh on flesh. - - -<<if getSlave($AS).fetish == "boobs" && getSlave($AS).fetishKnown == 1>> - $He has a glassy-eyed expression as $he - <<if hasAnyArms(getSlave($AS))>> - gropes $his breasts with <<if hasBothArms(getSlave($AS))>>both hands<<else>>$his hand<</if>>, fingering $his unoccupied nipple in time with your thrusts. - <<else>> - savors the sensations running through $his breast. - <</if>> -<<elseif getSlave($AS).devotion > 20 || getSlave($AS).trust > 20>> - $He has a glassy-eyed expression as $he - <<if hasBothArms(getSlave($AS))>> - gropes $his breasts with one hand and furiously abuses $his clit with the other. - <<elseif hasAnyArms(getSlave($AS))>> - fingers $his pussy while rubbing $his arm alongside $his breasts. - <<else>> - tries $his hardest to pleasure $himself with no hands. - <</if>> -<<else>> - $He turns $his gaze away from you as a blush suffuses $his cheeks and does $his best to suppress $his moans. -<</if>> - -As your orgasm begins to build, you roughly grasp $his shoulders and begin to pick up the pace. - -<<if getSlave($AS).fetish == "boobs" && getSlave($AS).fetishKnown == 1>> - As $he reaches $his climax, $his eyes roll back into $his head and $he quivers in delight at the intense breastgasm $he just sustained. -<<elseif getSlave($AS).devotion > 20 || getSlave($AS).trust > 20>> - Eager for release, $his moaning grows louder and higher in pitch<<if hasAnyArms(getSlave($AS))>>, and $his self-molesting becomes furious and desperate<</if>>. -<<else>> - As $he reaches $his climax, $his body seems to tense and $he bites $his lip. -<</if>> - -It only takes few more thrusts before you bottom out inside $his breast and release your load deep inside $him. You pull yourself free with a lewd sound and proudly survey what you've wrought. Cum <<if getSlave($AS).lactation > 0>>and milk dribble<<else>>dribbles<</if>> from $his gaping nipple. Enjoying the sight, you begin to feel yourself hardening and line up your dick at $his left nipple for a repeat performance. - -<<if getSlave($AS).lactation > 0>> - <<set getSlave($AS).lactationDuration = 2>> - <<set getSlave($AS).boobs -= getSlave($AS).boobsMilk, getSlave($AS).boobsMilk = 0>> -<<else>> - <<= induceLactation(getSlave($AS))>> -<</if>> - -Once both $his breasts have been thoroughly fucked, you send $him away to clean $himself up. diff --git a/src/npc/interaction/fPCImpreg.js b/src/npc/interaction/fPCImpreg.js index 2d326bdfe4a115e34e6192567af5be5f2a5cc6ea..487d206776c90584f29dc6ffde13c416c6f32740 100644 --- a/src/npc/interaction/fPCImpreg.js +++ b/src/npc/interaction/fPCImpreg.js @@ -264,7 +264,7 @@ App.Interact.fPCImpreg = function(slave) { text.push(`is <span class="pregnant">carrying your child.</span>`); } - if (V.arcologies[0].FSRestart !== 'unset' && (!slave.breedingMark || !V.propOutcome) && V.eugenicsFullControl) { + if (V.arcologies[0].FSRestart !== 'unset' && (!slave.breedingMark || V.propOutcome === 0) && V.eugenicsFullControl !== 1) { text.push(`Rumors spread about you fucking your slaves pregnant; the Societal Elite are <span class="reputation dec">very displeased</span> by these rumors.`); V.failedElite += 5; @@ -272,31 +272,19 @@ App.Interact.fPCImpreg = function(slave) { if (V.arcologies[0].FSGenderRadicalist !== 'unset' && slave.mpreg) { text.push(`Society <span class="reputation inc">approves</span> of your fucking your slaves' asses pregnant; this advances the ideal all a slave needs is ${his} rear.`); - - // FIXME: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. - repX(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderRadicalist / V.FSLockinLevel), 'futureSocieties', slave); - // FIXME: Operator '+=' cannot be applied to types 'string | number' and 'number'. - V.arcologies[0].FSGenderRadicalist += 0.05 * V.FSSingleSlaveRep; + FutureSocieties.Change("FSGenderRadicalist", 1); } else if (V.arcologies[0].FSGenderFundamentalist !== 'unset') { if (slave.mpreg) { - text.push(`Society <span class="reputation inc">approves</span> of your putting a new slave in ${him}; this advances the idea that all slaves should bear their masters' babies.`); - - // FIXME: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. - repX(forceNeg(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel)), 'futureSocieties', slave); - // FIXME: Operator '+=' cannot be applied to types 'string | number' and 'number'. - V.arcologies[0].FSGenderFundamentalist -= 0.05 * V.FSSingleSlaveRep; - } else { text.push(`Society <span class="reputation dec">is disgusted</span> by this degenerate form of reproduction.`); - - // FIXME: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. - repX(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel), 'futureSocieties', slave); - // FIXME: Operator '+=' cannot be applied to types 'string | number' and 'number'. - V.arcologies[0].FSGenderFundamentalist += 0.05 * V.FSSingleSlaveRep; + FutureSocieties.Change("FSGenderFundamentalist", -1); + } else { + text.push(`Society <span class="reputation inc">approves</span> of your putting a new slave in ${him}; this advances the idea that all slaves should bear their masters' babies.`); + FutureSocieties.Change("FSGenderFundamentalist", 1); } } addPartner(slave, -1); - knockMeUp(slave, 100, 2, -1, true); + knockMeUp(slave, 100, 2, -1); App.Events.addNode(frag, text); diff --git a/src/npc/interaction/fPat.js b/src/npc/interaction/fPat.js new file mode 100644 index 0000000000000000000000000000000000000000..567d9de68f27606fcce7e66a9b31048b39b402c3 --- /dev/null +++ b/src/npc/interaction/fPat.js @@ -0,0 +1,584 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fPat = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, woman, girl, wife + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + const { + hisP, womanP, + } = getPronouns(V.PC).appendSuffix("P"); + + slave.partners.add(-1); + const isBald = slave.hStyle.includes("bald") || slave.bald === 1; + + r.push(`You tell ${slave.slaveName} to`); + if (!hasAnyLegs(slave)) { + r.push(`have another slave set ${him} up onto your desk.`); + } else if (tooBigBreasts(slave)) { + r.push(`have another slave help ${him} heft ${his} tits so ${he} can be near you.`); + } else if (tooBigBelly(slave)) { + r.push(`have another slave help ${him} heft ${his} belly so ${he} can be near you.`); + } else if (tooBigButt(slave)) { + r.push(`have another slave help ${him} heft ${his} ass cheeks so ${he} can be near you.`); + } else if (tooBigDick(slave)) { + r.push(`have another slave help ${him} heft ${his} cock so ${he} can be near you.`); + } else if (tooBigBalls(slave)) { + r.push(`have another slave help ${him} heft ${his} balls so ${he} can be near you.`); + } else if (tooFatSlave(slave)) { + r.push(`have another slave help ${him} up so ${he} can be near you.`); + } else { + r.push(`move closer towards you.`); + } + + /* approach*/ + + if (slave.fetish === "mindbroken" && slave.relationship !== -3) { + r.push(`${He} complies robotically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment.`); + } else if (slave.relationship === -2) { + r.push(`${He} eagerly complies, happy to be near the object of ${his} longing. Once ${he}'s close, you hold ${his} face in your palms and gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he} loves overwhelming, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense look from the ${womanP} ${he} loves overwhelming, and after a moment glances away.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.relationship === -3) { + if (slave.fetish === "mindbroken") { + r.push(`${He} complies mechanically. ${He} remembers that when ${getWrittenTitle(slave)}'s commands are not obeyed, there is punishment. Once ${he}'s close, you hold ${his} face in your palms and look into ${his} empty ${App.Desc.eyesColor(slave)}. ${He} shows no reaction`); + } else if (slave.devotion+slave.trust >= 175) { + r.push(`${He} complies in a ${wife}ly fashion, moving ${his} body as ${he} approaches to best enflame your desire, eager to be close to the ${womanP} who married ${him}. Once ${he}'s close, you hold ${his} face in your palms and gaze`); + if (canSee(slave)) { + r.push(`deeply into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to affirming, and looks down with a smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`upon ${his} face. ${He} finds the intense look from the ${womanP} ${he}'s married to affirming, and looks down with a smile.`); + } + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`${He} complies. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} tearful ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married too disturbing, and breaks eye contact.`); + } else { + r.push(`upon ${his} face. ${He} can feel the intense gaze of the ${womanP} ${he}'s forcibly married to, and finds it disturbing. ${He} quickly turns ${his} face away.`); + } + } else if (slave.devotion < -20) { + r.push(`${He} complies out of fear. Once ${he}'s close, you hold ${his} quivering face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} teary ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s forcibly married to terrifying, and quickly breaks eye contact.`); + } else { + r.push(`upon ${his} tear-streaked face. ${He} can feel the intense look from the ${womanP} ${he}'s forcibly married to, and it is horrifying, causing ${him} to turn ${his} face away after only a moment.`); + } + } else { + r.push(`${He} complies obediently. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from the ${womanP} ${he}'s married to reassuring, and looks down with a slight smile, running ${his} eyes over your`); + if (V.PC.boobs >= 300) { + r.push(`bosom.`); + } else { + r.push(`chest.`); + } + } else { + r.push(`upon ${his} face. The intense look from the ${womanP} ${he}'s married to is reassuring to ${him}, and ${he} looks down with a slight smile.`); + } + } + } else if (slave.devotion > 75) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense look from ${his} beloved ${getWrittenTitle(slave)} disconcerting, and ${his} eyes flick downward after a moment.`); + } else { + r.push(`upon ${his} face. ${He} can feel the intense look from ${his} beloved ${Master} and it is disconcerting, causing ${him} to glance away after only a moment, ${his} face flushed.`); + } + r.push(`${He} blushes furiously.`); + } else if (slave.devotion > 50) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and ${he} looks down after a moment, blushing.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} disconcerting, and it causes ${him} to glance away after only a moment, blushing.`); + } + } else if (slave.devotion > 20) { + r.push(`${He} hurriedly complies, happy to be near you. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and ${he} looks down after a moment, blushing nervously.`); + } + } else if (slave.devotion < -20 && slave.trust >= 20) { + r.push(`${He} seems to visibly consider disobedience, but apparently decides your order is harmless enough. ${He} does as ${he} is told,`); + if (canSee(slave)) { + r.push(`giving you a defiant stare as ${he} does so.`); + } else { + r.push(`defiantly staring in your direction.`); + } + } else if (slave.devotion >= -20 && slave.trust >= -20) { + r.push(`${He} visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} finds the intense attention from ${his}`); + getWrittenTitle(slave); + r.push(`troubling, and ${he} looks down after a moment, ${his} lower lip trembling with nervousness.`); + } else { + r.push(`upon ${his} face. ${He} finds the intense attention from ${his} ${getWrittenTitle(slave)} worrying, and turns away after a moment, ${his} lower lip trembling with nervousness.`); + } + } else if (slave.trust < -20) { + r.push(`The command terrifies ${him}, but ${he}'s more frightened still of the consequences of disobedience, and ${he} complies. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. After a mere instant of locked faces, ${he} looks down fearfully and begins to shake with terror, tears leaking silently down ${his} cheeks.`); + } else { + r.push(`upon ${his} face. After a mere instant of locked faces, ${he} looks down fearfully and begins to shake with terror, tears leaking silently down ${his} cheeks.`); + } + } else { + r.push(`${He} pauses, obviously considering whether to resist, but eventually decides to save ${his} strength to fight more onerous orders, and gives in. Once ${he}'s close, you hold ${his} face in your palms and take a moment to gaze deeply`); + if (canSee(slave)) { + r.push(`into ${his} ${App.Desc.eyesColor(slave)}. ${He} stares back, but after a few moments ${he} loses the contest of wills and looks down.`); + } else { + r.push(`upon ${his} face. ${He} faces you defiantly, but after a few moments ${he} loses the contest of wills and looks down.`); + } + } + + /* action */ + + r.push(`You walk around ${him}, drawing closer and slowly resting your hand on ${his} head. You let it rest for a few seconds to get ${him} accustomed to your touch.`); + if (slave.fetish === "mindbroken") { + r.push(`Tenderly and lovingly you brush your fingers along ${his} head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. ${He} initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke ${his}`); + if (isBald) { + r.push(`shaven scalp,`); + } else { + r.push(`hair,`); + } + r.push(`as you gently press ${his} body into your chest${!hasAnyLegs(slave) ? ` and onto your lap` : ``}. The warmth from your slave's body, and the action of petting ${his} head, combined with the sound of ${his} breathing, allow you to feel more relaxed by the minute.`); + } else if ((slave.relationship === -3) && slave.devotion+slave.trust >= 175) { + r.push(`Tenderly and lovingly you brush your fingers along ${his} head, enjoying the feeling of your slave's utterly willing submission. ${He} slowly leans ${his} body closer and closer to you${!hasAnyLegs(slave) ? ` and finally onto your lap` : ``}, relaxing as ${he} feels your caress. As ${he} shifts ${his} weight to your chest, ${he} feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes ${his} lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a ${womanP} and ${hisP} devoted and content ${wife}.`); + } else if (slave.relationship === -2) { + r.push(`Tenderly and lovingly you brush your fingers along ${his} head, for a moment, appreciating how easily your slave submits to your desire to pat ${his} head. ${He} slowly leans ${his} body closer and closer to you${!hasAnyLegs(slave) ? `allowing you to move ${him} onto your lap` : ``}, relaxing as ${he} feels your caresses. As ${his} weight falls onto you, all of the stress from ${his} body melts away, and a small, respectful sigh escapes ${his} pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a ${womanP} and ${hisP} devoted and content servant.`); + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60 && hasAnyArms(slave)) { + r.push(`As you start to touch ${him} ${he} smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of ${his} head, before continuing with your ministrations. As opposed to your more submissive slaves, ${slave.slaveName} takes an active role in your petting, gently guiding where your hand goes along ${his} head. You enjoy the feel of ${his} hand on yours, as well as ${his}`); + if (isBald) { + r.push(`smooth scalp.`); + } else { + r.push(`hair.`); + } + } else if (slave.devotion > 50 && slave.fetish === "submissive" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`${He} stiffens at your touch but slowly relaxes at the sensation of your hand on ${his} head. You tenderly and lovingly stroke your fingers along ${his} scalp, enjoying the feeling of your slave's subservience. ${He} gently, submissively, presses ${his} head against your hand, like a dog. As you continue`); + if (isBald) { + r.push(`kneading ${his} shaved scalp,`); + } else { + r.push(`stroking ${his} hair,`); + } + r.push(`${he} starts to clutch ${his} thighs, and if you listen you can hear subdued whimpers. ${He} looks up at you with adoring eyes, and relishes in the pureness of this act as ${his} master's pet to ${his} beloved ${getWrittenTitle(slave)}.`); + } else if (slave.devotion > 50) { + r.push(`${He} accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along ${his} head, enjoying the feeling of your slave's willingness to set aside ${his} dignity for headpats. ${He} leans ${his} body backward, pressing ${himself} against you. You can feel the intense heat from ${his} body against your`); + if (V.PC.boobs >= 300) { + r.push(`soft breasts.`); + } else { + r.push(`manly chest.`); + } + r.push(`You take your time enjoying the sensation of`); + if (isBald) { + r.push(`rubbing your slave's smooth scalp,`); + } else { + r.push(`gently running your fingers through your slave's hair,`); + } + r.push(`and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well.`); + } else if (slave.devotion > 20) { + r.push(`${He} willingly accepts it. As you tenderly and lovingly brush your fingers along ${his} head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. ${He} looks at you with confusion and trepidation. Your eyes betray nothing however — you simply smile and press ${his} head into your`); + if (V.PC.boobs >= 300) { + r.push(`soft breasts,`); + } else { + r.push(`masculine chest,`); + } + r.push(`all the while enjoying the feeling of your`); + if (isBald) { + r.push(`hands gliding over ${his} smooth head.`); + } else { + r.push(`fingers gliding through ${his} hair.`); + } + } else if (slave.devotion < -20 && slave.trust >= 20) { + r.push(`${He} doesn't react to your touch, remaining as still as statue, the same defiant expression on ${his} face. ${He} still doesn't react when you brush your fingers down the side of ${his} head or when you`); + if (isBald) { + r.push(`stroke ${his} smooth head.`); + } else { + r.push(`run your fingers through ${his} hair.`); + } + r.push(`${He} does react when you gently rest your thumb on ${his} lips, however, by suddenly giving you a fierce bite. Cursing, you pull your hand back and examine it — ${he} didn't bite deep enough to draw blood, but the area is now red and puffy. Furious, you backhand ${him} across the`); + if (random(1, 100) > 80) { + slave.minorInjury = either("black eye", "bruise", "split lip"); + r.push(`face, giving ${him} a <span class="health dec">${slave.minorInjury}</span>.`); + } else { + r.push(`face.`); + } + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`${He} shakes at your touch fearfully. As you tenderly brush your fingers down ${his} unresisting head, you appreciate this expression of your slave's subservience, ${his} eagerness to avoid punishment making ${him} stiffen, ${his} nervousness easily apparent. You continue stroking ${him}, enjoying ${his} fear, as the physical intimacy slowly does its work. ${He} starts to relax, ${his} resistance easing as ${his} eyes start to close. Your hands continue to gently scratch at ${his} scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave. Gently, slowly, so not as to spook ${him}, you ease your property's head back into your`); + if (V.PC.boobs >= 300) { + r.push(`breasts.`); + } else { + r.push(`chest.`); + } + r.push(`Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you.`); + } else if (slave.trust < -50) { + r.push(`${He} is nearly frozen with fear and does not resist as you tenderly and lovingly brush your fingers along ${his} head, enjoying your slave's complete and utter submission to you. In fact, ${he} barely reacts at all. But being an arcology owner has taught you many things, not least of which is patience. With time and a gentle hand, your slave's shoulders slowly start to relax, so slowly if you weren't paying attention you wouldn't have noticed. With a sense of satisfaction, you continue your actions, enjoying the feeling of your`); + if (isBald) { + r.push(`hand gliding over ${his} smooth head.`); + } else { + r.push(`fingers combing through ${his} hair and gently scritching ${his} scalp.`); + } + r.push(`You settle with this for now, knowing that any attempt at further intimacy will likely scare your slave off, but you enjoy it nonetheless.`); + } else { + r.push(`${He} reflexively turns away from you, but you tenderly hold ${his} chin and maneuver ${him} in position with one hand and slowly but gently move your other hand to the top of ${his} head. Spluttering, ${he} leans backwards, but you catch ${him} by the shoulder and pin ${him} against you, where you feel the intense heat from ${his} body against your`); + if (V.PC.boobs >= 300) { + r.push(`soft breasts,`); + } else { + r.push(`manly chest,`); + } + r.push(`before resuming your gentle stroking. ${He} desperately tries to wriggle out of your grasp, but ${his} struggles slowly subside as ${he} realizes that you're not taking this any farther. Tenderly and lovingly you stroke your fingers over ${his} head, appreciating the feeling of your slave's rebelliousness.`); + } + + r.push(`You pat ${him} softly move your palm down the side of ${his} head with a soothing touch as you pet ${him}. Gently you start to run your hand down the back of ${his} head, softly stroking and caressing ${him}. You delicately lift ${his} head and touch your fingertips to ${his} chin, tenderly brushing along the line of ${his} mouth with your`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`thumb.`); + + if (isBald) { + r.push(`Then, you gently touch ${his}`); + } else { + r.push(`You hold a strand of ${his} hair and softly place it behind ${his} ear, taking the chance to gently caress ${his}`); + } + if (slave.face > 95) { + r.push(`overwhelmingly stunning`); + } else if (slave.face > 10) { + r.push(`alluring`); + } else if (slave.face >= -10) { + r.push(`appealing`); + } else if (slave.face >= -40) { + r.push(`plain`); + } else { + r.push(`rough`); + } + r.push(`face and lightly touch ${his}`); + if (slave.lips > 95) { + r.push(`facepussy`); + } else { + if (slave.lips > 70) { + r.push(`pillowlike`); + } else if (slave.lips > 40) { + r.push(`generous`); + } else if (slave.lips > 20) { + r.push(`plush`); + } + r.push(`lips`); + } + r.push(`with your fingertips. You move your hand to the side of your slave's head, stroking ${his} temple gently.`); + if (slave.fetish === "mindbroken") { + r.push(`This causes an unconscious shiver to travel down ${his} spine.`); + } else if (slave.devotion > 50) { + r.push(`This causes ${him} to shudder in delight and to move ${his} hand to your hip, squeezing it gently.`); + } else if (slave.devotion > 20) { + r.push(`This causes ${him} to shudder in delight.`); + } else if (slave.devotion >= -20) { + r.push(`This causes ${him} to shiver unconsciously.`); + } else if (slave.trust <= -50) { + r.push(`This forces ${his} back rigid, in an effort not to move`); + if (V.showInches === 2) { + r.push(`an inch,`); + } else { + r.push(`a centimeter,`); + } + r.push(`out of fear.`); + } else if (slave.trust < -20) { + r.push(`This would cause ${him} to shiver with delight, but ${his} distaste for the situation makes that impossible.`); + } + + r.push(`You move your hand down to caress ${his} forehead, and then slide your hand along ${his} cheek. The last thing you do is take ${his} head lightly and trace around it, gently massaging as you go. Finally you pat ${him} a few times before letting ${him} up.`); + + /* outro + reaction */ + + if (slave.fetish === "mindbroken") { + r.push(`When you stop,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} track the movements of your hands briefly before returning to their usual stare,`); + } else { + r.push(`${he} stands at attention before you,`); + } + r.push(`awaiting further use of ${his} body.`); + } else if (slave.relationship === -2) { + r.push(`When you finally stop petting ${him},`); + if (canSee(slave)) { + r.push(`${his} eyes remain closed just for a second`); + } + r.push(`and ${his} mouth stands open in slack-jawed joy, before ${he} slowly`); + if (canSee(slave)) { + r.push(`opens ${his} eyes`); + } else { + r.push(`turns ${his} gaze towards you`); + } + r.push(`and smiles warmly at you. Pleasure lights up ${his} face`); + if (hasAnyArms(slave)) { + r.push(`as ${his} hand traces the path yours took up to ${his} head and mimics your last movements.`); + } else { + r.push(`as ${his} gaze drifts off to the right in memory, tilting ${his} head from side to side in sympathetic memory of how it felt to have your hand on ${his} head.`); + } + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s, dreamily.` + ); + } + r.push(`${He} looks as though ${he} wants much more than your mere caress.`); + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60 && hasAnyArms(slave)) { + r.push(`${He} tries hard to stop from losing ${himself} in your incredibly skilled hands. ${He} takes ${his} tendency towards sexual dominance right up to the edge of insubordination, when ${he} starts to caress your face in turn. When you finally stop, ${his} eyes are closed and ${he}'s smiling. When you are finally finished stroking your slave, they remove their hand from yours. Then you give them a playful flick on the nose, and the mischievous twinkle in your eye is only half playful, reminding ${him} of ${his} place in these walls.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate enjoyment with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate enjoyment with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that and would love to pet you next time.`); + } else { + r.push( + Spoken(slave, `"That was nice, ${Master},"`), + `${he} ${say}s cheerfully.`, + Spoken(slave, `"Maybe next time I can stroke you..."`) + ); + } + r.push(`${He} looks at you, ${his}`); + if (canSee(slave)) { + r.push(`lovely ${App.Desc.eyesColor(slave)}`); + } else { + r.push(`face`); + } + r.push(`practically begging you to let ${him} take this farther.`); + } else if (slave.devotion > 50 && slave.fetish === "submissive" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`As you stroke ${his} head, ${he} reacts almost as though you're stroking ${his} nether regions, and begins to moan and press ${himself} lewdly against your`); + if (V.PC.boobs >= 1400) { + r.push(`giant tits.`); + } else if (V.PC.boobs >= 1200) { + r.push(`huge breasts.`); + } else if (V.PC.boobs >= 1000) { + r.push(`big breasts.`); + } else if (V.PC.boobs >= 800) { + r.push(`prominent breasts.`); + } else if (V.PC.boobs >= 650) { + r.push(`unremarkable breasts.`); + } else if (V.PC.boobs >= 500) { + r.push(`breasts.`); + } else if (V.PC.boobs >= 300) { + r.push(`tiny breasts.`); + } else if (V.PC.title > 0) { + r.push(`manly chest.`); + } else { + r.push(`non-existent breasts.`); + } + r.push(`${He} achieves a weak orgasm before you finally stop caressing ${his} head; ${he} is your pet, after all.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate undiminished lust with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push( + Spoken(slave, `"That was fun, ${Master},"`), + `${he} ${say}s lustfully.`, + Spoken(slave, `"But why stop there?"`) + ); + } + r.push(`${He} looks at you as if ${he} wants more than your hands touching ${his} head.`); + } else if (slave.devotion > 50) { + r.push(`${He} gradually closes ${his} eyes and when you finally stop,`); + if (hasAnyArms(slave)) { + r.push(`${he} runs ${his} hand delightedly across ${his} face and`); + } + r.push(`a euphoric look quickly lights up ${his} features.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`facial expressions,`); + } + r.push(`since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`facial expressions.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s jubilantly.` + ); + } + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you longingly, almost as if ${he}'s bursting to say that ${he} wants more than your mere caress.`); + } else if (slave.devotion > 20) { + r.push(`When you finally move your hand away,`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} gaze into yours searchingly,`); + } else { + r.push(`${he} gazes at you,`); + } + r.push(`looking for answers that are not there.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's all.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that all, ${Master}?"`) + ); + } + } else if (slave.devotion < -20 && slave.trust >= 20) { + r.push(`${He} does little more than give another defiant glare as you pull away.`); + /* TODO: write this */ + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`When you finally move your hand away, ${he}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you for a long moment, as if looking for answers, before visibly catching ${himself} with a reminder that ${he}'s a slave and you're ${his} owner.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes hesitantly question`); + } else { + r.push(`expression hesitantly questions`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's all.`); + } else { + r.push( + `${He} asks hesitantly,`, + Spoken(slave, `"I-is that all, ${Master}?"`) + ); + } + } else if (slave.trust < -50) { + r.push(`${He} stares`); + if (canSee(slave)) { + r.push(`at you`); + } else { + r.push(`blankly`); + } + r.push(`as you move your fingers across ${his} stiff head, but it's like touching a statue. ${He} is so filled with terror that ${he} remains rigid even as it becomes clear to ${him} you're not going to hurt ${him}. When you bore of touching the`); + if (slave.physicalAge > 30) { + r.push(`${woman}`); + } else { + r.push(`${girl}`); + } + r.push(`and move your hand away, ${he} turns to you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`beg for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs spastically, asking fearfully to know if that's all.`); + } else { + r.push( + `${He} stammers fearfully, although somewhat less then before this session,`, + Spoken(slave, `"I-is that all, ${Master}?"`) + ); + } + r.push(`${He} then cringes.`); + } else { + r.push(`When you bore of it and take your hand away, ${he} faces you in utter incomprehension.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes demand`); + } else { + r.push(`expression demands`); + } + r.push(`an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs irritably, asking whether that's all.`); + } else { + r.push( + `${He} scowls, muttering,`, + Spoken(slave, `"Is that all, ${Master}?"`) + ); + } + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fPat.tw b/src/npc/interaction/fPat.tw deleted file mode 100644 index a201c35c55fbd04f057d82b5ba6673d358cb5ecb..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fPat.tw +++ /dev/null @@ -1,316 +0,0 @@ -:: FPat [nobr no-history] - -<<run Enunciate(getSlave($AS))>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run getSlave($AS).partners.add(-1)>> -<<setPlayerPronouns>> - -You tell <<= getSlave($AS).slaveName>> to -<<if !hasAnyLegs(getSlave($AS))>> - have another slave set $him up onto your desk. -<<elseif tooBigBreasts(getSlave($AS))>> - have another slave help $him heft $his tits so $he can be near you. -<<elseif tooBigBelly(getSlave($AS))>> - have another slave help $him heft $his belly so $he can be near you. -<<elseif tooBigButt(getSlave($AS))>> - have another slave help $him heft $his ass cheeks so $he can be near you. -<<elseif tooBigDick(getSlave($AS))>> - have another slave help $him heft $his cock so $he can be near you. -<<elseif tooBigBalls(getSlave($AS))>> - have another slave help $him heft $his balls so $he can be near you. -<<elseif tooFatSlave(getSlave($AS))>> - have another slave help $him up so $he can be near you. -<<else>> - move closer towards you. -<</if>> - -/*approach*/ - -<<if (getSlave($AS).fetish == "mindbroken") && (getSlave($AS).relationship != -3)>> - $He complies robotically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. -<<elseif (getSlave($AS).relationship == -2)>> - $He eagerly complies, happy to be near the object of $his longing. Once $he's close, you hold $his face in your palms and gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he loves overwhelming, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He finds the intense look from the _womanP $he loves overwhelming, and after a moment glances away. - <</if>> - $He blushes furiously. -<<elseif getSlave($AS).relationship == -3>> - <<if getSlave($AS).fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<= getWrittenTitle(getSlave($AS))>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his empty <<= App.Desc.eyesColor(getSlave($AS))>>. $He shows no reaction - <<elseif getSlave($AS).devotion+getSlave($AS).trust >= 175>> - $He complies in a <<= $wife>>ly fashion, moving $his body as $he approaches to best enflame your desire, eager to be close to the _womanP who married $him. Once $he's close, you hold $his face in your palms and gaze - <<if canSee(getSlave($AS))>> - deeply into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. - <<else>> - upon $his face. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile. - <</if>> - <<elseif getSlave($AS).devotion < -20 && getSlave($AS).trust > 20>> - $He complies. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his tearful <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and breaks eye contact. - <<else>> - upon $his face. $He can feel the intense gaze of the _womanP $he's forcibly married to, and finds it disturbing. $He quickly turns $his face away. - <</if>> - <<elseif getSlave($AS).devotion < -20>> - $He complies out of fear. Once $he's close, you hold $his quivering face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his teary <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's forcibly married to terrifying, and quickly breaks eye contact. - <<else>> - upon $his tear-streaked face. $He can feel the intense look from the _womanP $he's forcibly married to, and it is horrifying, causing $him to turn $his face away after only a moment. - <</if>> - <<else>> - $He complies obediently. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>. - <<else>> - upon $his face. The intense look from the _womanP $he's married to is reassuring to $him, and $he looks down with a slight smile. - <</if>> - <</if>> -<<elseif (getSlave($AS).devotion > 75)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense look from $his beloved <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $his eyes flick downward after a moment. - <<else>> - upon $his face. $He can feel the intense look from $his beloved <<Master>> and it is disconcerting, causing $him to glance away after only a moment, $his face flushed. - <</if>> - $He blushes furiously. -<<elseif (getSlave($AS).devotion > 50)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and $he looks down after a moment, blushing. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> disconcerting, and it causes $him to glance away after only a moment, blushing. - <</if>> -<<elseif (getSlave($AS).devotion > 20)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and $he looks down after a moment, blushing nervously. - <</if>> -<<elseif (getSlave($AS).devotion < -20) && (getSlave($AS).trust >= 20)>> - $He seems to visibly consider disobedience, but apparently decides your order is harmless enough. $He does as $he is told, - <<if canSee(getSlave($AS))>> - giving you a defiant stare as $he does so. - <<else>> - defiantly staring in your direction. - <</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> troubling, and $he looks down after a moment, $his lower lip trembling with nervousness. - <<else>> - upon $his face. $He finds the intense attention from $his <<= getWrittenTitle(getSlave($AS))>> worrying, and turns away after a moment, $his lower lip trembling with nervousness. - <</if>> -<<elseif (getSlave($AS).trust < -20)>> - The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. After a mere instant of locked faces, $he looks down fearfully and begins to shake with terror, tears leaking silently down $his cheeks. - <<else>> - upon $his face. After a mere instant of locked faces, $he looks down fearfully and begins to shake with terror, tears leaking silently down $his cheeks. - <</if>> -<<else>> - $He pauses, obviously considering whether to resist, but eventually decides to save $his strength to fight more onerous orders, and gives in. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply - <<if canSee(getSlave($AS))>> - into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He stares back, but after a few moments $he loses the contest of wills and looks down. - <<else>> - upon $his face. $He faces you defiantly, but after a few moments $he loses the contest of wills and looks down. - <</if>> -<</if>> - -/* action */ - -You walk around $him, drawing closer and slowly resting your hand on $his head. You let it rest for a few seconds to get $him accustomed to your touch. -<<if (getSlave($AS).fetish == "mindbroken")>> - Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke $his <<if getSlave($AS).hStyle == "shaved bald" || getSlave($AS).bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if !hasAnyLegs(getSlave($AS))>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute. -<<elseif (getSlave($AS).relationship == -3) && getSlave($AS).devotion+getSlave($AS).trust >= 175>> - Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if !hasAnyLegs(getSlave($AS))>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content $wife. -<<elseif (getSlave($AS).relationship == -2)>> - Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat $his head. $He slowly leans $his body closer and closer to you<<if !hasAnyLegs(getSlave($AS))>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content servant. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60) && (hasAnyArms(getSlave($AS)))>> - As you start to touch $him $he smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of $his head, before continuing with your ministrations. As opposed to your more submissive slaves, <<= getSlave($AS).slaveName>> takes an active role in your petting, gently guiding where your hand goes along $his head. You enjoy the feel of $his hand on yours, as well as $his <<if getSlave($AS).hStyle == "shaved bald" || getSlave($AS).bald == 1>>smooth scalp<<else>> hair<</if>>. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - $He stiffens at your touch but slowly relaxes at the sensation of your hand on $his head. You tenderly and lovingly stroke your fingers along $his scalp, enjoying the feeling of your slave's subservience. $He gently, submissively, presses $his head against your hand, like a dog. As you continue <<if getSlave($AS).hStyle == "shaved bald" || getSlave($AS).bald == 1>>kneading $his shaved scalp<<else>>stroking $his hair<</if>>, $he starts to clutch $his thighs, and if you listen you can hear subdued whimpers. $He looks up at you with adoring eyes, and relishes in the pureness of this act as $his master's pet to $his beloved <<= getWrittenTitle(getSlave($AS))>>. -<<elseif getSlave($AS).devotion > 50>> - $He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside $his dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs >= 300>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if getSlave($AS).hStyle == "shaved bald" || getSlave($AS).bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well. -<<elseif getSlave($AS).devotion > 20>> - $He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. $He looks at you with confusion and trepidation. Your eyes betray nothing however — you simply smile and press $his head into your <<if $PC.boobs >= 300>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if getSlave($AS).hStyle == "shaven bald" || getSlave($AS).bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>. -<<elseif (getSlave($AS).devotion < -20) && (getSlave($AS).trust >= 20)>> - $He doesn't react to your touch, remaining as still as statue, the same defiant expression on $his face. $He still doesn't react when you brush your fingers down the side of $his head or when you <<if getSlave($AS).hStyle == "shaven bald" || getSlave($AS).bald == 1>>stroke $his smooth head<<else>>run your fingers through $his hair<</if>>. $He does react when you gently rest your thumb on $his lips, however, by suddenly giving you a fierce bite. Cursing, you pull your hand back and examine it — $he didn't bite deep enough to draw blood, but the area is now red and puffy. Furious, you backhand $him across the face<<if random(1,100) > 80>><<set getSlave($AS).minorInjury = either("black eye", "bruise", "split lip")>>, giving $him a @@.health.dec;<<= getSlave($AS).minorInjury>>@@<</if>>. -<<elseif getSlave($AS).devotion >= -20 && getSlave($AS).trust < -20>> - $He shakes at your touch fearfully. As you tenderly brush your fingers down $his unresisting head, you appreciate this expression of your slave's subservience, $his eagerness to avoid punishment making $him stiffen, $his nervousness easily apparent. You continue stroking $him, enjoying $his fear, as the physical intimacy slowly does its work. $He starts to relax, $his resistance easing as $his eyes start to close. Your hands continue to gently scratch at $his scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave. Gently, slowly, so not as to spook $him, you ease your property's head back into your <<if $PC.boobs >= 300>>breasts<<else>>chest<</if>>. Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you. -<<elseif getSlave($AS).trust < -50>> - $He is nearly frozen with fear and does not resist as you tenderly and lovingly brush your fingers along $his head, enjoying your slave's complete and utter submission to you. In fact, $he barely reacts at all. But being an arcology owner has taught you many things, not least of which is patience. With time and a gentle hand, your slave's shoulders slowly start to relax, so slowly if you weren't paying attention you wouldn't have noticed. With a sense of satisfaction, you continue your actions, enjoying the feeling of your <<if getSlave($AS).hStyle == "shaven bald" || getSlave($AS).bald == 1>>hand gliding over $his smooth head<<else>>fingers combing through $his hair and gently scritching $his scalp<</if>>. You settle with this for now, knowing that any attempt at further intimacy will likely scare your slave off, but you enjoy it nonetheless. -<<else>> - $He reflexively turns away from you, but you tenderly hold $his chin and maneuver $him in position with one hand and slowly but gently move your other hand to the top of $his head. Spluttering, $he leans backwards, but you catch $him by the shoulder and pin $him against you, where you feel the intense heat from $his body against your <<if $PC.boobs >= 300>>soft breasts<<else>>manly chest<</if>>, before resuming your gentle stroking. $He desperately tries to wriggle out of your grasp, but $his struggles slowly subside as $he realizes that you're not taking this any farther. Tenderly and lovingly you stroke your fingers over $his head, appreciating the feeling of your slave's rebelliousness. -<</if>> - -You pat $him softly move your palm down the side of $his head with a soothing touch as you pet $him. Gently you start to run your hand down the back of $his head, softly stroking and caressing $him. You delicately lift $his head and touch your fingertips to $his chin, tenderly brushing along the line of $his mouth with your <<if $PC.title == 1>>manly<<else>>feminine<</if>> thumb. - -<<if getSlave($AS).hStyle == "shaved bald">> - Then, you gently touch $his -<<else>> - You hold a strand of $his hair and softly place it behind $his ear, taking the chance to gently caress $his -<</if>> -<<if getSlave($AS).face > 95>> - overwhelmingly stunning -<<elseif getSlave($AS).face > 10>> - alluring -<<elseif getSlave($AS).face >= -10>> - appealing -<<elseif getSlave($AS).face >= -40>> - plain -<<else>> - rough -<</if>> -face and lightly touch $his -<<if getSlave($AS).lips > 95>> - facepussy -<<else>> - <<if getSlave($AS).lips > 70>> - pillowlike - <<elseif getSlave($AS).lips > 40>> - generous - <<elseif getSlave($AS).lips > 20>> - plush - <</if>> - lips -<</if>> -with your fingertips. You move your hand to the side of your slave's head, stroking $his temple gently. -<<if getSlave($AS).fetish == "mindbroken">> - This causes an unconscious shiver to travel down $his spine. -<<elseif getSlave($AS).devotion > 50>> - This causes $him to shudder in delight and to move $his hand to your hip, squeezing it gently. -<<elseif getSlave($AS).devotion > 20>> - This causes $him to shudder in delight. -<<elseif getSlave($AS).devotion >= -20>> - This causes $him to shiver unconsciously. -<<elseif getSlave($AS).trust <= -50>> - This forces $his back rigid, in an effort not to move <<if $showInches == 2>>an inch<<else>>a centimeter<</if>>, out of fear. -<<elseif getSlave($AS).trust < -20>> - This would cause $him to shiver with delight, but $his distaste for the situation makes that impossible. -<</if>> - -You move your hand down to caress $his forehead, and then slide your hand along $his cheek. The last thing you do is take $his head lightly and trace around it, gently massaging as you go. Finally you pat $him a few times before letting $him up. - -/* outro + reaction */ - -<<if (getSlave($AS).fetish == "mindbroken")>> - When you stop, - <<if canSee(getSlave($AS))>> - $his <<= App.Desc.eyesColor(getSlave($AS))>> track the movements of your hands briefly before returning to their usual stare, - <<else>> - $he stands at attention before you, - <</if>> - awaiting further use of $his body. -<<elseif (getSlave($AS).relationship == -2)>> - When you finally stop petting $him, <<if canSee(getSlave($AS))>>$his eyes remain closed just for a second <</if>>and $his mouth stands open in slack-jawed joy, before $he slowly <<if canSee(getSlave($AS))>> opens $his eyes<<else>> turns $his gaze towards you<</if>> and smiles warmly at you. Pleasure lights up $his face<<if (hasAnyArms(getSlave($AS)))>> as $his hand traces the path yours took up to $his head and mimics your last movements<<else>> as $his gaze drifts off to the right in memory, tilting $his head from side to side in sympathetic memory of how it felt to have your hand on $his head<</if>>. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate love with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s dreamily. - <</if>> - $He looks as though $he wants much more than your mere caress. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60) && (hasAnyArms(getSlave($AS)))>> - $He tries hard to stop from losing $himself in your incredibly skilled hands. $He takes $his tendency towards sexual dominance right up to the edge of insubordination, when $he starts to caress your face in turn. When you finally stop, $his eyes are closed and $he's smiling. When you are finally finished stroking your slave, they remove their hand from yours. Then you give them a playful flick on the nose, and the mischievous twinkle in your eye is only half playful, reminding $him of $his place in these walls. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate enjoyment with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate enjoyment with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that and would love to pet you next time. - <<else>> - "That wa<<s>> ni<<c>>e, <<Master>>," $he <<say>>s cheerfully. "Maybe next time I can <<s>>troke you..." - <</if>> - $He looks at you, $his <<if canSee(getSlave($AS))>>lovely <<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>> practically begging you to let $him take this farther. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - As you stroke $his head, $he reacts almost as though you're stroking $his nether regions, and begins to moan and press $himself lewdly against your - <<if $PC.boobs >= 1400>> - giant tits. - <<elseif $PC.boobs >= 1200>> - huge breasts. - <<elseif $PC.boobs >= 1000>> - big breasts. - <<elseif $PC.boobs >= 800>> - prominent breasts. - <<elseif $PC.boobs >= 650>> - unremarkable breasts. - <<elseif $PC.boobs >= 500>> - breasts. - <<elseif $PC.boobs >= 300>> - tiny breasts. - <<elseif $PC.title > 0>> - manly chest. - <<else>> - non-existent breasts. - <</if>> - $He achieves a weak orgasm before you finally stop caressing $his head; $he is your pet, after all. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate undiminished lust with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate undiminished lust with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that. - <<else>> - "That wa<<s>> fun, <<Master>>," $he <<say>>s lustfully. "But why <<s>>top there?" - <</if>> - $He looks at you as if $he wants more than your hands touching $his head. -<<elseif (getSlave($AS).devotion > 50)>> - $He gradually closes $his eyes and when you finally stop, <<if (hasAnyArms(getSlave($AS)))>>$he runs $his hand delightedly across $his face and <</if>>a euphoric look quickly lights up $his features. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>, since $he's not confident in $his ability to express it in $language. - <<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>facial expressions<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s jubilantly. - <</if>> - $He <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you longingly, almost as if $he's bursting to say that $he wants more than your mere caress. -<<elseif (getSlave($AS).devotion > 20)>> - When you finally move your hand away, <<if canSee(getSlave($AS))>>$his <<= App.Desc.eyesColor(getSlave($AS))>> gaze into yours searchingly<<else>>$he gazes at you<</if>>, looking for answers that are not there. - <<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's all. - <<else>> - $He asks hesitantly, "I-i<<s>> that all, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).devotion < -20) && (getSlave($AS).trust >= 20)>> - $He does little more than give another defiant glare as you pull away. - /* TODO: write this */ -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust < -20)>> - When you finally move your hand away, $he <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you for a long moment, as if looking for answers, before visibly catching $himself with a reminder that $he's a slave and you're $his owner. - <<if ((!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS))))>> - $His <<if canSee(getSlave($AS))>>eyes hesitantly question<<else>>expression hesitantly questions<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's all. - <<else>> - $He asks hesitantly, "I-is that all, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).trust < -50)>> - $He stares <<if canSee(getSlave($AS))>>at you<<else>>blankly<</if>> as you move your fingers across $his stiff head, but it's like touching a statue. $He is so filled with terror that $he remains rigid even as it becomes clear to $him you're not going to hurt $him. When you bore of touching the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>> and move your hand away, $he turns to you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> beg for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs spastically, asking fearfully to know if that's all. - <<else>> - $He stammers fearfully, although somewhat less then before this session, "I-i<<s>> that all, <<Master>>?" - <</if>> - $He then cringes. -<<else>> - When you bore of it and take your hand away, $he faces you in utter incomprehension. - <<if (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $His <<if canSee(getSlave($AS))>>eyes demand<<else>>expression demands<</if>> an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs irritably, asking whether that's all. - <<else>> - $He scowls, muttering, "I<<s>> that all, <<Master>>?" - <</if>> -<</if>> diff --git a/src/npc/interaction/fPoolSex.js b/src/npc/interaction/fPoolSex.js new file mode 100644 index 0000000000000000000000000000000000000000..c4c7cbf8983b158b259e2395cd1c085d985a881c --- /dev/null +++ b/src/npc/interaction/fPoolSex.js @@ -0,0 +1,271 @@ + + + + +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fPoolSex = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, + he, his, him, himself, hers + } = getPronouns(slave); + + addPartner(slave, -1); + + r.push(`You order ${him} to meet you in the spa for some quality time in the penthouse's rejuvenating gelatin pool. When you get there, ${he}'s already in ${his} bathing attire, reclined at the side of the pool farthest from you with ${his} massive ${slave.skin} stomach hanging over the edge and half sunk in the thick, steaming ooze, flushed and sweaty.`); + if (slave.devotion > 95) { + if (!isAmputee(slave)) { + r.push(`${He}'s resting ${his} head on one arm, but ${he} gives you a little wave`); + if (!hasBothArms(slave)) { + r.push(`anyway`); + } else { + r.push(`with the other`); + } + r.push(`before setting it to rubbing the flank of one`); + if (slave.boobs >= 20000) { + r.push(`massively overgrown tit`); + } else if (Math.floor(slave.boobsImplant / slave.boobs) >= .60) { + r.push(`fat, augmented tit`); + } else if (slave.boobs >= 3000) { + r.push(`huge breast`); + } else { + r.push(`petite breast`); + } + r.push(`as ${he}`); + } else { + r.push(`${He}'s resting on a small pile of pillows, enjoying the feeling against the flanks of ${his} colossal belly. ${He} wiggles a welcome to you and then`); + } + if (canSee(slave)) { + r.push(`watches`); + } else { + r.push(`waits patiently as`); + } + r.push(`you strip down and change into your swimming outfit. When it's clear that you're ready to join ${him}, ${he} motions at the pool's holographic console and coos in delight as its mobility assistance devices kick in, rolling ${him} into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles${(V.PC.preg > 30) ? ` and soothes your stretched skin` : ``} , then wade toward your waiting slave.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`${He} smiles and beckons you toward ${him}, rubbing circles in the exploded sides of ${his} colossal belly, then gasps as you take a handful of the ooze and shove it right in ${his} face. ${He} sputters indignantly and then`); + if (hasAnyArms(slave)) { + r.push(`scoops up a handful ${himself}, flinging it at you. The two of you spend several minutes goo fighting before, eventually, you decide that your`); + } else { + r.push(`wobbles back and forth, ineffectually trying to fight back as you cover ${him} in thick wads of gel, over and over. After several minutes of this, you decide that your`); + } + if (V.PC.dick !== 0) { + r.push(`solid, quivering erection is in need of ${his} tender care.`); + if (canSee(slave)) { + r.push(`Seeing`); + } else { + r.push(`Sensing`); + } + r.push(`the change in your demeanor, ${he} rolls back to recline at the pool's edge and, once you've joined ${him},`); + if (hasAnyArms(slave)) { + r.push(`reaches down to masturbate your ooze lubricated dick.`); + } else { + r.push(`rolls forward and reaches down to tease your cockhead with ${his} mouth${(slave.boobs > 600) ? ` and tits` : ``}.`); + } + r.push(`When you feel yourself at the edge of orgasm, you slide in between ${his}`); + if (slave.butt > 11) { + r.push(`debilitatingly enormous, cushiony ass`); + } else if (slave.butt > 5) { + r.push(`massive, cushiony ass`); + } else if (Math.floor(slave.buttImplant / slave.butt) > .60) { + r.push(`implant swollen ass`); + } else if (slave.butt > 2) { + r.push(`plush ass`); + } else { + r.push(`back`); + } + r.push(`and the pool's silk-lined wall. Reaching, you tease ${his}`); + if (canDoVaginal(slave)) { + r.push(`kitty`); + } else { + r.push(`asshole`); + } + r.push(`with your fingers and ${he} crushes backward into you, moaning and rotating ${his} hips in response to your attention. Once you're certain ${he}'s ready, you slide into ${him}, driving you both to orgasm.`); + if (canDoVaginal(slave)) { + r.push(VCheck.Vaginal(slave, 1)); + } else { + r.push(VCheck.Anal(slave, 1)); + } + } else { + r.push(`ooze stimulated quim is in need of ${his} tender care. Seeing the change in your demeanor, ${he} rolls back to recline at the pool's edge and, once you've joined ${him},`); + if (hasAnyArms(slave)) { + r.push(`reaches down to masturbate your pussy, squeezing and rubbing your clit.`); + } else { + r.push(`rolls sideways and rubs your vulva as best ${he} can.`); + } + if (slave.dick >= 1) { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream ${his}`); + if (canDoVaginal(slave)) { + r.push(`pussy. ${VCheck.Vaginal(slave, 1)}`); + } else { + r.push(`asshole. ${VCheck.Anal(slave, 1)}`); + } + r.push(`Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your strap-on to ${his} needy hole, you tease ${him} for a moment before ramming home, driving the both of you to repeated orgasm.`); + } else { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your lower lips to ${hers}, you rub your clits together, driving the both of you to repeated orgasm.`); + slave.counter.vaginal++; + V.vaginalTotal++; + } + } + } else if (slave.trust < -20 && slave.devotion > -10) { + if (hasAnyArms(slave)) { + r.push(`${He}'s resting ${his} head on one arm, but ${he} nods at you in acknowledgment as`); + } else { + r.push(`${He}'s resting on a small pile of pillows, enjoying the sensations against the flanks of ${his} colossal belly. ${He} nods as you enter, not stopping ${his} rubbing, and`); + if (canSee(slave)) { + r.push(`watches`); + } else { + r.push(`waits patiently as`); + } + } + r.push(`you strip down and change into your swimming outfit. When it's clear that you're ready to join ${him}, ${he} motions at the pool's holographic console and its mobility assistance devices kick in, rolling ${him} into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles${(V.PC.preg > 30) ? `and soothes your stretched skin` : ``}, then wade toward your waiting slave.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`${He} smiles politely, rubbing circles in the exploded sides of ${his} colossal belly, then gasps as you take a handful of the ooze and shove it right in ${his} face. ${He} sputters indignantly and then`); + if (hasAnyArms(slave)) { + r.push(`scoops up a handful ${himself}, flinging it at you. The two of you spend several minutes goo fighting before, eventually, you decide that your`); + } else { + r.push(`wobbles back and forth, ineffectually trying to fight back as you cover ${him} in thick wads of gel, over and over. After several minutes of this, you decide that your`); + } + if (V.PC.dick !== 0) { + r.push(`solid, quivering erection is in need of ${his} tender care.`); + if (canSee(slave)) { + r.push(`Seeing`); + } else { + r.push(`Sensing`); + } + r.push(`the change in your demeanor, ${he} rolls back to recline at the pool's edge and, once you've joined ${him},`); + if (hasAnyArms(slave)) { + r.push(`reaches down to masturbate your ooze lubricated dick.`); + } else { + r.push(`rolls forward and reaches down to tease your cockhead with ${his} mouth${(slave.boobs > 600) ? ` and tits` : ``}.`); + } + r.push(`When you feel yourself at the edge of orgasm, you slide in between ${his}`); + if (slave.butt > 11) { + r.push(`debilitatingly enormous, cushiony ass`); + } else if (slave.butt > 5) { + r.push(`massive, cushiony ass`); + } else if (Math.floor(slave.buttImplant / slave.butt) > .60) { + r.push(`implant swollen ass`); + } else if (slave.butt > 2) { + r.push(`plush ass`); + } else { + r.push(`back`); + } + r.push(`and the pool's silk-lined wall. Reaching, you tease ${his}`); + if (canDoVaginal(slave)) { + r.push(`kitty`); + } else { + r.push(`asshole`); + } + r.push(`with your fingers and ${he} crushes backward into you, moaning and rotating ${his} hips in response to your attention. Once you're certain ${he}'s ready, you slide into ${him}, driving you both to orgasm.`); + if (canDoVaginal(slave)) { + r.push(VCheck.Vaginal(slave, 1)); + } else { + r.push(VCheck.Anal(slave, 1)); + } + } else { + r.push(`ooze stimulated quim is in need of ${his} tender care. Seeing the change in your demeanor, ${he} rolls back to recline at the pool's edge and, once you've joined ${him},`); + if (hasAnyArms(slave)) { + r.push(`reaches down to masturbate your pussy, squeezing and rubbing your clit.`); + } else { + r.push(`rolls sideways and rubs your vulva as best ${he} can.`); + } + if (slave.dick >= 1) { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream ${his}`); + if (canDoVaginal(slave)) { + r.push(`pussy. ${VCheck.Vaginal(slave, 1)}`); + } else { + r.push(`asshole. ${VCheck.Anal(slave, 1)}`); + } + r.push(`Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your strap-on to ${his} needy hole, you tease ${him} for a moment before ramming home, driving the both of you to repeated orgasm.`); + } else { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your lower lips to ${hers}, you rub your clits together, driving the both of you to repeated orgasm.`); + slave.counter.vaginal++; + V.vaginalTotal++; + } + } + } else { + if (hasAnyArms(slave)) { + r.push(`${He}'s resting ${his} head on one arm, but ${he} starts as you enter, watching tensely as`); + } else { + r.push(`${He}'s resting on a small pile of pillows, savoring the sensations against the flanks of ${his} colossal belly and`); + if (slave.boobs >= 20000) { + r.push(`massively overgrown tits`); + } else if (Math.floor(slave.boobsImplant / slave.boobs) >= .60) { + r.push(`fat, augmented tits`); + } else if (slave.boobs >= 3000) { + r.push(`huge breasts`); + } else { + r.push(`petite breasts`); + } + r.push(`${He} starts as you enter, watching tensely as`); + } + r.push(`you strip down and change into your swimming outfit. When you're ready to join ${him}, you motion at the pool's holographic console and its mobility assistance devices kick in, rolling ${him} into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles${(V.PC.preg > 30) ? ` and soothes your stretched skin` : ``}, then wade toward your worried looking slave.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`${He} smiles politely, rubbing circles in the exploded sides of ${his} colossal belly, then cries out in surprise as you take a handful of the ooze and shove it right in ${his} face. ${He} sputters, blushing, and wobbles back and forth, clearly trying not to react as you cover ${him} in thick wads of gel, over and over. After several minutes of this, you decide that your`); + if (V.PC.dick !== 0) { + r.push(`solid, quivering erection is in need of ${his} tender care. You force ${him} back into a reclining position at the pool's edge and order ${him} to`); + if (hasAnyArms(slave)) { + r.push(`masturbate your ooze lubricated dick.`); + } else { + r.push(`tease your cockhead with ${his} mouth.`); + } + r.push(`${He} complies, bringing you to the edge of orgasm, and, before ${he} can fully push you over the edge, you slide in between ${his}`); + if (slave.butt > 7) { + r.push(`debilitatingly enormous, cushiony ass`); + } else if (slave.butt > 4) { + r.push(`massive, cushiony ass`); + } else if (slave.butt > 2) { + r.push(`implant swollen ass`); + } else if (slave.buttImplant === 1) { + r.push(`plush ass`); + } else { + r.push(`back`); + } + r.push(`and the pool's silk lined wall. Reaching, you tease ${his}`); + if (canDoVaginal(slave)) { + r.push(`kitty`); + } else { + r.push(`asshole`); + } + r.push(`with your fingers and rub one hand back and forth along the line of ${his} tensed shoulders as ${he} slowly gives in to lust. Once you're certain ${he}'s ready, you slide into ${him}, driving you both to orgasm.`); + if (canDoVaginal(slave)) { + r.push(VCheck.Vaginal(slave, 1)); + } else { + r.push(VCheck.Anal(slave, 1)); + } + } else { + r.push(`ooze stimulated quim is in need of ${his} tender care. You force ${him} back to recline at the pool's edge and, once you've joined ${him},`); + if (hasAnyArms(slave)) { + r.push(`set ${him} to masturbating your pussy, squeezing and rubbing your clit.`); + } else { + r.push(`set ${him} to rubbing your vulva with ${his} belly button.`); + } + if (slave.dick >= 1) { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream ${his}`); + if (canDoVaginal(slave)) { + r.push(`pussy. ${VCheck.Vaginal(slave, 1)}`); + } else { + r.push(`asshole. ${VCheck.Anal(slave, 1)}`); + } + r.push(`Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your strap-on to ${his} needy hole, you tease ${him} for a moment before ramming home, driving the both of you to repeated orgasm.`); + r.push(VCheck.Anal(slave, 1)); + } else { + r.push(`When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate ${him} into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of ${his} hips and slide half on top of ${him}, resting your lower half on the rear swell of ${his} obscenely bloated belly. Pressing your lower lips to ${hers}, you rub your clits together, driving the both of you to repeated orgasm.`); + slave.counter.vaginal++; + V.vaginalTotal++; + } + } + } + r.push(`After you've finished with ${him}, you escort ${him} to the spa's attached showers so that the two of you can enjoy a bit more time together as you clean off, then allow ${him} to return to ${his} duties as you return to your own.`); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fPoolSex.tw b/src/npc/interaction/fPoolSex.tw deleted file mode 100644 index e83c02225701e2adbcb15fd5a5b01eb5f9585ac8..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fPoolSex.tw +++ /dev/null @@ -1,171 +0,0 @@ -:: FPoolSex [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -You order $him to meet you in the spa for some quality time in the penthouse's rejuvenating gelatin pool. When you get there, $he's already in $his bathing attire, reclined at the side of the pool farthest from you with $his massive <<= getSlave($AS).skin>> stomach hanging over the edge and half sunk in the thick, steaming ooze, flushed and sweaty. -<<if getSlave($AS).devotion > 95>> - <<if !isAmputee(getSlave($AS))>> - $He's resting $his head on one arm, but $he gives you a little wave <<if !hasBothArms(getSlave($AS))>>anyway<<else>>with the other<</if>> before setting it to rubbing the flank of one - <<if getSlave($AS).boobs >= 20000>> - massively overgrown tit - <<elseif Math.floor(getSlave($AS).boobsImplant/getSlave($AS).boobs) >= .60>> - fat, augmented tit - <<elseif getSlave($AS).boobs >= 3000>> - huge breast - <<else>> - petite breast - <</if>> - as $he - <<else>> - $He's resting on a small pile of pillows, enjoying the feeling against the flanks of $his colossal belly. $He wiggles a welcome to you and then - <</if>> - <<if canSee(getSlave($AS))>>watches<<else>>waits patiently as<</if>> you strip down and change into your swimming outfit. When it's clear that you're ready to join $him, $he motions at the pool's holographic console and coos in delight as its mobility assistance devices kick in, rolling $him into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles<<if $PC.preg > 30>> and soothes your stretched skin<</if>>, then wade toward your waiting slave. - <br><br> - $He smiles and beckons you toward $him, rubbing circles in the exploded sides of $his colossal belly, then gasps as you take a handful of the ooze and shove it right in $his face. $He sputters indignantly and then - <<if hasAnyArms(getSlave($AS))>> - scoops up a handful $himself, flinging it at you. The two of you spend several minutes goo fighting before, eventually, you decide that your - <<else>> - wobbles back and forth, ineffectually trying to fight back as you cover $him in thick wads of gel, over and over. After several minutes of this, you decide that your - <</if>> - <<if $PC.dick != 0>> - solid, quivering erection is in need of $his tender care. <<if canSee(getSlave($AS))>>Seeing<<else>>Sensing<</if>> the change in your demeanor, $he rolls back to recline at the pool's edge and, once you've joined $him, - <<if hasAnyArms(getSlave($AS))>> - reaches down to masturbate your ooze lubricated dick. - <<else>> - rolls forward and reaches down to tease your cockhead with $his mouth<<if getSlave($AS).boobs > 600>> and tits<</if>>. - <</if>> - When you feel yourself at the edge of orgasm, you slide in between $his - <<if getSlave($AS).butt > 11>> - debilitatingly enormous, cushiony ass - <<elseif getSlave($AS).butt > 5>> - massive, cushiony ass - <<elseif Math.floor(getSlave($AS).buttImplant/getSlave($AS).butt) > .60>> - implant swollen ass - <<elseif getSlave($AS).butt > 2>> - plush ass - <<else>> - back - <</if>> - and the pool's silk-lined wall. Reaching, you tease $his <<if canDoVaginal(getSlave($AS))>>kitty<<else>>asshole<</if>> with your fingers and $he crushes backward into you, moaning and rotating $his hips in response to your attention. Once you're certain $he's ready, you slide into $him, driving you both to orgasm. - <<if canDoVaginal(getSlave($AS))>><<= VCheck.Vaginal(getSlave($AS), 1)>><<else>><<= VCheck.Anal(getSlave($AS), 1)>><</if>> - <<else>> - ooze stimulated quim is in need of $his tender care. Seeing the change in your demeanor, $he rolls back to recline at the pool's edge and, once you've joined $him, - <<if hasAnyArms(getSlave($AS))>> - reaches down to masturbate your pussy, squeezing and rubbing your clit. - <<else>> - rolls sideways and rubs your vulva as best $he can. - <</if>> - <<if getSlave($AS).dick >= 1>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal(getSlave($AS))>>pussy. <<= VCheck.Vaginal(getSlave($AS), 1)>><<else>>asshole. <<= VCheck.Anal(getSlave($AS), 1)>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strap-on to $his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm. - <<else>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm. - <<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> - <</if>> - <</if>> -<<elseif (getSlave($AS).trust < -20) && (getSlave($AS).devotion > -10)>> - <<if hasAnyArms(getSlave($AS))>> - $He's resting $his head on one arm, but $he nods at you in acknowledgment as - <<else>> - $He's resting on a small pile of pillows, enjoying the sensations against the flanks of $his colossal belly. $He nods as you enter, not stopping $his rubbing, and <<if canSee(getSlave($AS))>>watches<<else>>waits patiently as<</if>> - <</if>> - you strip down and change into your swimming outfit. When it's clear that you're ready to join $him, $he motions at the pool's holographic console and its mobility assistance devices kick in, rolling $him into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles<<if $PC.preg > 30>> and soothes your stretched skin<</if>>, then wade toward your waiting slave. - <br><br> - $He smiles politely, rubbing circles in the exploded sides of $his colossal belly, then gasps as you take a handful of the ooze and shove it right in $his face. $He sputters indignantly and then - <<if hasAnyArms(getSlave($AS))>> - scoops up a handful $himself, flinging it at you. The two of you spend several minutes goo fighting before, eventually, you decide that your - <<else>> - wobbles back and forth, ineffectually trying to fight back as you cover $him in thick wads of gel, over and over. After several minutes of this, you decide that your - <</if>> - <<if $PC.dick != 0>> - solid, quivering erection is in need of $his tender care. <<if canSee(getSlave($AS))>>Seeing<<else>>Sensing<</if>> the change in your demeanor, $he rolls back to recline at the pool's edge and, once you've joined $him, - <<if hasAnyArms(getSlave($AS))>> - reaches down to masturbate your ooze lubricated dick. - <<else>> - rolls forward and reaches down to tease your cockhead with $his mouth<<if getSlave($AS).boobs > 600>> and tits<</if>>. - <</if>> - When you feel yourself at the edge of orgasm, you slide in between $his - <<if getSlave($AS).butt > 11>> - debilitatingly enormous, cushiony ass - <<elseif getSlave($AS).butt > 5>> - massive, cushiony ass - <<elseif Math.floor(getSlave($AS).buttImplant/getSlave($AS).butt) > .60>> - implant swollen ass - <<elseif getSlave($AS).butt > 2>> - plush ass - <<else>> - back - <</if>> - and the pool's silk-lined wall. Reaching, you tease $his <<if canDoVaginal(getSlave($AS))>>kitty<<else>>asshole<</if>> with your fingers and $he crushes backward into you, moaning and rotating $his hips in response to your attention. Once you're certain $he's ready, you slide into $him, driving you both to orgasm. - <<if canDoVaginal(getSlave($AS))>><<= VCheck.Vaginal(getSlave($AS), 1)>><<else>><<= VCheck.Anal(getSlave($AS), 1)>><</if>> - <<else>> - ooze stimulated quim is in need of $his tender care. Seeing the change in your demeanor, $he rolls back to recline at the pool's edge and, once you've joined $him, - <<if hasAnyArms(getSlave($AS))>> - reaches down to masturbate your pussy, squeezing and rubbing your clit. - <<else>> - rolls sideways and rubs your vulva as best $he can. - <</if>> - <<if getSlave($AS).dick >= 1>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal(getSlave($AS))>>pussy. <<= VCheck.Vaginal(getSlave($AS), 1)>><<else>>asshole. <<= VCheck.Anal(getSlave($AS), 1)>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strap-on to $his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm. - <<else>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm. - <<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> - <</if>> - <</if>> -<<else>> - <<if hasAnyArms(getSlave($AS))>> - $He's resting $his head on one arm, but $he starts as you enter, watching tensely as - <<else>> - $He's resting on a small pile of pillows, savoring the sensations against the flanks of $his colossal belly and - <<if getSlave($AS).boobs >= 20000>> - massively overgrown tits - <<elseif Math.floor(getSlave($AS).boobsImplant/getSlave($AS).boobs) >= .60>> - fat, augmented tits - <<elseif getSlave($AS).boobs >= 3000>> - huge breasts - <<else>> - petite breasts - <</if>> - $He starts as you enter, watching tensely as - <</if>> - you strip down and change into your swimming outfit. When you're ready to join $him, you motion at the pool's holographic console and its mobility assistance devices kick in, rolling $him into the curative gel. You sink yourself into the pool, taking a moment to bask in the feeling of the warm, curative laced goo as it relaxes your muscles<<if $PC.preg > 30>> and soothes your stretched skin<</if>>, then wade toward your worried looking slave. - <br><br> - $He smiles politely, rubbing circles in the exploded sides of $his colossal belly, then cries out in surprise as you take a handful of the ooze and shove it right in $his face. $He sputters, blushing, and wobbles back and forth, clearly trying not to react as you cover $him in thick wads of gel, over and over. After several minutes of this, you decide that your - <<if $PC.dick != 0>> - solid, quivering erection is in need of $his tender care. You force $him back into a reclining position at the pool's edge and order $him to - <<if hasAnyArms(getSlave($AS))>> - masturbate your ooze lubricated dick. - <<else>> - tease your cockhead with $his mouth. - <</if>> - $He complies, bringing you to the edge of orgasm, and, before $he can fully push you over the edge, you slide in between $his - <<if getSlave($AS).butt > 7>> - debilitatingly enormous, cushiony ass - <<elseif getSlave($AS).butt > 4>> - massive, cushiony ass - <<elseif getSlave($AS).butt > 2>> - implant swollen ass - <<elseif getSlave($AS).buttImplant == 1>> - plush ass - <<else>> - back - <</if>> - and the pool's silk lined wall. Reaching, you tease $his <<if canDoVaginal(getSlave($AS))>>kitty<<else>>asshole<</if>> with your fingers and rub one hand back and forth along the line of $his tensed shoulders as $he slowly gives in to lust. Once you're certain $he's ready, you slide into $him, driving you both to orgasm. - <<if canDoVaginal(getSlave($AS))>><<= VCheck.Vaginal(getSlave($AS), 1)>><<else>><<= VCheck.Anal(getSlave($AS), 1)>><</if>> - <<else>> - ooze stimulated quim is in need of $his tender care. You force $him back to recline at the pool's edge and, once you've joined $him, - <<if hasAnyArms(getSlave($AS))>> - set $him to masturbating your pussy, squeezing and rubbing your clit. - <<else>> - set $him to rubbing your vulva with $his belly button. - <</if>> - <<if getSlave($AS).dick >= 1>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal(getSlave($AS))>>pussy. <<= VCheck.Vaginal(getSlave($AS), 1)>><<else>>asshole. <<= VCheck.Anal(getSlave($AS), 1)>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strap-on to $his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm. - <<= VCheck.Anal(getSlave($AS), 1)>> - <<else>> - When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm. - <<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> - <</if>> - <</if>> -<</if>> -After you've finished with $him, you escort $him to the spa's attached showers so that the two of you can enjoy a bit more time together as you clean off, then allow $him to return to $his duties as you return to your own. diff --git a/src/npc/interaction/fRelation.js b/src/npc/interaction/fRelation.js index 4b674e894206d90529cc81cf35e42f7dd06f3813..7b45f7ed02c6c0dd1b28c05365e0bfe582a59b6a 100644 --- a/src/npc/interaction/fRelation.js +++ b/src/npc/interaction/fRelation.js @@ -1,9 +1,9 @@ /** - * - * @param {App.Entity.SlaveState} slave + * @param {App.Entity.SlaveState} slave - slave to fuck with partner. + * @param {App.Entity.SlaveState} partner - partner to fuck slave with. must be a close relative or relationship target of slave. * @returns {DocumentFragment} */ -App.Interact.fRelation = function(slave) { +App.Interact.fRelation = function(slave, partner) { const node = new DocumentFragment(); let r = []; @@ -15,29 +15,10 @@ App.Interact.fRelation = function(slave) { let activeSlaveRel; let partnerRel; - let partner; - if (V.partner === "mother") { - partner = getSlave(slave.mother); + if (areRelated(slave, partner)) { activeSlaveRel = relativeTerm(partner, slave); partnerRel = relativeTerm(slave, partner); - } else if (V.partner === "father") { - partner = getSlave(slave.father); - activeSlaveRel = relativeTerm(partner, slave); - partnerRel = relativeTerm(slave, partner); - } else if (V.partner === "daughter") { - partner = getSlave(randomAvailableDaughter(slave).ID); - activeSlaveRel = relativeTerm(partner, slave); - partnerRel = relativeTerm(slave, partner); - } else if (V.partner === "sister") { - partner = getSlave(randomAvailableSister(slave).ID); - activeSlaveRel = relativeTerm(partner, slave); - partnerRel = relativeTerm(slave, partner); - } else if (V.partner === "relation") { - partner = getSlave(V.relation); - activeSlaveRel = relativeTerm(partner, slave); - partnerRel = relativeTerm(slave, partner); - } else { - partner = getSlave(slave.relationshipTarget); + } else if (partner.ID === slave.relationshipTarget) { switch (slave.relationship) { case 1: activeSlaveRel = "friend"; @@ -60,6 +41,8 @@ App.Interact.fRelation = function(slave) { partnerRel = "slave wife"; break; } + } else { + throw new Error(`Invalid partner for fRelation: main ${slave ? slave.ID : "undefined"}, partner ${partner ? partner.ID : "undefined"}.`); } addPartner(slave, -1); addPartner(slave, partner); @@ -120,7 +103,7 @@ App.Interact.fRelation = function(slave) { r.push(`your strap-on`); } r.push(r.pop() + `.`); - r.push(`On your direction, ${slave.slaveName} sits on the couch. When ${partner.slaveName} enters, ${his2} ${activeSlaveRel} spreads ${his} arms and tells ${him2} to sit on ${his} lap. ${partner.slaveName} gets the idea and straddles ${him} so they're face to face. You take ${partner.slaveName} from behind; ${he2} gasps as ${he2} feels ${his2} ${activeSlaveRel}'s ${hasBothArms(partner) ? `hands` : `hand`}stimulate ${him2} from the front. They make out shamelessly while you take your pleasure. When you finish, ${slave.slaveName} lies down on the couch so ${partner.slaveName} can ride ${his}`); + r.push(`On your direction, ${slave.slaveName} sits on the couch. When ${partner.slaveName} enters, ${his2} ${activeSlaveRel} spreads ${his} arms and tells ${him2} to sit on ${his} lap. ${partner.slaveName} gets the idea and straddles ${him} so they're face to face. You take ${partner.slaveName} from behind; ${he2} gasps as ${he2} feels ${his2} ${activeSlaveRel}'s ${hasBothArms(partner) ? `hands` : `hand`} stimulate ${him2} from the front. They make out shamelessly while you take your pleasure. When you finish, ${slave.slaveName} lies down on the couch so ${partner.slaveName} can ride ${his}`); if (V.seeRace === 1) { r.push(slave.race); } @@ -243,7 +226,11 @@ App.Interact.fRelation = function(slave) { r.push(`at will. Whenever a hole begins to pall you just switch to another. ${slave.slaveName} tries hard to ignore the fact that ${he}'s getting fucked next to ${his} ${partnerRel}, and ${partner.slaveName} pretends the cock getting shoved into ${him2} isn't slick from ${his2} ${activeSlaveRel}'s fuckhole.`); r.push(VCheck.Both(slave, 1)); r.push(VCheck.Partner(partner, 1)); - } else if ((activeSlaveRel === "friend") || (activeSlaveRel === "best friend") && slave.devotion > 20 && partner.devotion > 20) { + } else if ( + (activeSlaveRel === "friend" || activeSlaveRel === "best friend") && + slave.devotion > 20 && + partner.devotion > 20 + ) { r.push(`${slave.slaveName}`); r.push(`and ${partner.slaveName} line up next to one another on the couch next to your desk`); if (V.PC.dick === 0) { @@ -291,7 +278,6 @@ App.Interact.fRelation = function(slave) { r.push(VCheck.Partner(partner, 1)); } - V.relation = 0; App.Events.addParagraph(node, r); return node; }; diff --git a/src/npc/interaction/fSlaveSelfImpreg.js b/src/npc/interaction/fSlaveSelfImpreg.js new file mode 100644 index 0000000000000000000000000000000000000000..12033dbe456fe89bf62d5633ed05899e001ea6ef --- /dev/null +++ b/src/npc/interaction/fSlaveSelfImpreg.js @@ -0,0 +1,420 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fSlaveSelfImpreg = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself + } = getPronouns(slave); + + addPartner(slave, -1); + + const _pfh = (slave.fetish === "pregnancy" && slave.fetishStrength > 50); + const _pfk = (_pfh && slave.fetishKnown === 1) || slave.sexualFlaw === "breeder"; + let _coop = true; + let _enjoy = true; + const _superfetation = (slave.geneticQuirks.superfetation === 2 && slave.pregKnown === 1) ? 1 : 0; + + if (slave.fetish === "mindbroken") { + } else { + if (slave.devotion <= 20) { + if (slave.devotion < -20) { + r.push(`${slave.slaveName}`); + r.push(`despises you, and tends to resent everything you do on principle,`); + } else if (slave.devotion <= 20) { + r.push(`${slave.slaveName}`); + r.push(`dislikes you,`); + } + if (slave.sexualFlaw === "breeder" || (_pfh && slave.fetishStrength > 90)) { + r.push(`but the idea of simultaneously impregnating and being impregnated is <span class="hotpink">so tempting</span> that ${he}'s <span class="mediumaquamarine">grateful</span> to you despite ${himself}.`); + slave.devotion += 2; + slave.trust += 1; + } else if (_pfk) { + r.push(`but ${his} obvious predilection for being pregnant significantly lessens the <span class="mediumorchid">indignity</span> of the situation.`); + _coop = false; + slave.devotion -= 2; + } else if (_pfh) { + r.push(`but, despite the <span class="mediumorchid">indignity</span> of the situation, ${his} resistance seems strangely muted. It's fairly obvious that something about the idea of being impregnated is <span class="hotpink">strangely appealing</span> to ${him}.`); + _coop = false; + slave.devotion -= 4; + } else { + if (isAmputee(slave)) { + r.push(`and this <span class="gold">uniquely degrading</span> violation of ${his} person only reinforces ${his} <span class="mediumorchid">hatred</span> towards you. The fact that ${he} is <span class="gold">utterly immobile</span> makes a terrifying situation <span class="mediumorchid">even worse.</span>`); + slave.devotion -= 1; + slave.trust -= 1; + } else { + r.push(`and this <span class="gold">uniquely degrading</span> violation of ${his} person only reinforces ${his} <span class="mediumorchid">hatred</span> towards you. ${He} resists so violently that you must <span class="health.dec">physically coerce ${him}</span> into cooperating with the procedure.`); + } + _coop = false; + _enjoy = false; + slave.devotion -= 5; + slave.trust -= 6; + } + } else if (_pfk) { + r.push(`${slave.slaveName}`); + r.push(`<span class="hotpink">genuinely enjoys</span> impregnation and pregnancy, so ${he} is <span class="mediumaquamarine">grateful</span> that you're giving ${him} a chance to become so intimately acquainted with both aspects of ${his} fetish at the same time.`); + slave.devotion += 4; + slave.trust += 2; + if (slave.devotion > 50 && V.arcologies[0].FSRepopulationFocus > 10) { + r.push(`${He} also feels <span class="hotpink">proud</span> that ${he} can be a <span class="mediumaquamarine">self-sustaining</span> source of offspring to support your vision of the future.`); + slave.devotion += 1; + slave.trust += 1; + } + } else { + if (_pfh) { + r.push(`Even though you aren't aware of any special fondness for pregnancy, ${slave.slaveName} seems <span class="hotpink">oddly eager</span> to cooperate with you. It quickly becomes obvious that ${he} is <span class="lightcoral">fascinated with pregnancy</span> and you've <span class="mediumaquamarine">helped ${him} discover this</span> about ${himself}.`); + slave.devotion += 1; + slave.trust += 1; + slave.fetishKnown = 1; + } else if (slave.sexualQuirk === "perverted") { + r.push(`Despite having no particular interest in pregnancy, the <span class="hotpink">sheer perversity</span> of impregnating ${himself} is palpably arousing to ${slave.slaveName}.`); + slave.trust += 1; + } else if (slave.energy > 90) { + r.push(`Despite having no particular interest in pregnancy, ${slave.slaveName}'s overwhelming sex drive causes ${him} to be aroused at the prospect of any sex, even if it happens to be with ${himself}.`); + } else if (slave.devotion > 50) { + r.push(`Despite having no particular interest in pregnancy, ${slave.slaveName} is eager to <span class="hotpink">submit to your vision</span> of ${him}.`); + slave.trust += 1; + if (slave.devotion > 50 && V.arcologies[0].FSRepopulationFocus > 10) { + r.push(`${He} also feels <span class="hotpink">proud</span> that ${he} can be a <span class="mediumaquamarine">self-sustaining</span> source of offspring to support your vision of the future.`); + slave.devotion += 1; + slave.trust += 1; + } + _enjoy = false; + } else { + r.push(`${slave.slaveName}`); + r.push(`cooperates without any protest. ${He} may not particularly enjoy pregnancy or impregnation, but ${he}'s too well-broken to resist or speak against you.`); + _enjoy = false; + } + } + } + + if (slave.fetish === "mindbroken") { + r.push(`${slave.slaveName} is dully cooperative as you ensure ${he} is positioned conveniently on a bench to give you access to both aspects of ${his} genitalia. A quick dose of vasodilators ensures that ${he} is ready to perform, even if ${he} is unable to fully comprehend what is about to happen. Once ${he} is fully erect, your personal assistant uses a mechanical toy to efficiently stimulate ${him} to climax, while you hold a small container in place to collect ${his} emission. Moments later, you've loaded ${slave.slaveName}'s seed into a syringe and dispensed the contents deep within ${his}`); + if (slave.mpreg === 1) { + r.push(`ass.`); + } else { + r.push(`vagina.`); + } + } else if (isAmputee(slave)) { + if (_coop && _enjoy) { + r.push(`Although ${slave.slaveName} is unable to do much to help, ${his} expression is visibly excited as you place ${him} on a bench, and produce a sample container and syringe.`); + } else if (_enjoy) { + r.push(`A maelstrom of emotions fill ${slave.slaveName}'s face as you carry ${him} to a bench, and produce a sample cup and syringe.`); + + if (slave.dick > 6) { + r.push(`You can't tell if ${he}'s relieved or disappointed when ${his} excessive size interferes, as usual, with ${his} erection, but an injection of vasodilators quickly makes the question moot.`); + } + r.push(`At your instruction, your personal assistant descends with a selection of toys to ensure quick ejaculation. Pleasure, lust, terror, and loathing play across ${slave.slaveName}'s face as ${his} arousal mounts and ${his} hips begin to buck. By the time ${he} begins to ejaculate, pleasure and lust have won out and ${he} throws ${his} head back in abandon as ${his} emission fills the cup in your hands.`); + if (!canSee(slave)) { + r.push(`Although ${he} cannot see what you are doing, ${his} expression is rapt, almost dreamlike,`); + } else { + r.push(`${He} watches with rapt fascination`); + } + r.push(`as you load the syringe with ${his} sperm, slide it into ${his}`); + if (slave.mpreg === 1) { + r.push(`ass,`); + } else { + r.push(`vagina,`); + } + r.push(`and shoot the contents home, deep against ${his} waiting cervix.`); + } else if (_coop) { + r.push(`${slave.slaveName} is calm and docile as you place ${him} on a bench, and produce a sample container and syringe. With no other option, ${he} throws back ${his} head and enjoys the stimulation as your personal assistant, at your instruction, begins stimulating ${him} to orgasm. When ${he} ejaculates, you carefully catch every drop in the sample cup, load the syringe, and inject the contents directly against ${his} cervix.`); + } else { + r.push(`Although ${slave.slaveName} frantically squirms in a futile attempt to resist as you place ${him} on a bench, and produce a sample cup and syringe. Without limbs to aid ${his} escape, ${he} can only`); + if (!canSee(slave)) { + r.push(`blindly wait`); + } else { + r.push(`watch`); + } + r.push(`in helpless horror as the vasodilators you inject bring ${his} manhood to complete erectness and your personal assistant, at your instruction, begins stimulating ${him}. ${He} sobs in helpless despair as ${his} rigid shaft begins to throb, filling the cup with a terribly potent load of ${his} seed; ${he} frantically shakes ${his} head, face streaked with tears, as you dip the syringe into the cup, withdraw the plunger, insert it into ${his} exposed`); + if (slave.mpreg === 1) { + r.push(`ass,`); + } else { + r.push(`vagina,`); + } + r.push(`and shoot the contents directly against the opening to ${his} womb.`); + } + } else if (_coop) { + if (_enjoy) { + if (slave.dick > 6 && slave.balls <= 4) { + r.push(`Although ${he} is aroused by the idea of impregnating ${himself}, ${slave.slaveName}'s cock is simply too large to easily become erect. A quick injection of vasodilators later, and ${he}'s ready to go. Because ${he}'s so eager, you simply stand back and let the magic happen.`); + if ( + (slave.vagina === 0 && slave.mpreg !== 1) || + (slave.anus === 0 && slave.mpreg === 1) + ) { + r.push(`As ways to lose one's virginity go, this is one hell of a way to do it. Without needing any instruction, ${slave.slaveName} grasps ${his} massive shaft`); + if (hasBothArms(slave)) { + r.push(`in both hands`); + } else if (!hasAnyArms(slave)) { + r.push(`as best ${he} can with the stumps of ${his} arms`); + } else { + r.push(`with ${his} hand`); + } + r.push(`and feeds it around so the head is`); + if (slave.mpreg === 1) { + r.push(`kissing ${his} anus.`); + } else { + r.push(`nestled between ${his} own labia.`); + } + r.push(`${He} shows only the tiniest hesitation before easing ${his} cock inside ${his} own body, <span class="lime">`); + if (slave.mpreg === 1) { + r.push(`through ${his} virgin backdoor,</span> `); + } else { + r.push(`past ${his} maidenhead,</span> `); + } + r.push(`until you can tell the head is nestled snugly against ${his} own cervix.`); + if (slave.mpreg === 1) { + slave.anus = 1; + } else { + slave.vagina = 1; + } + } else { + r.push(`Without needing any instruction, ${slave.slaveName} grasps ${his} massive shaft`); + if (hasBothArms(slave)) { + r.push(`in both hands`); + } else if (!hasAnyArms(slave)) { + r.push(`as best ${he} can with the stumps of ${his} arms`); + } else { + r.push(`with ${his} hand`); + } + r.push(`and feeds it around so the head is`); + if (slave.mpreg === 1) { + r.push(`kissing ${his} anus.`); + } else { + r.push(`nestled between ${his} own labia.`); + } + r.push(`${He} works it up and down for a second, relishing the sensation, and then plunges ${his} cock into ${his} own body until you can tell the tip is wedged against ${his} own cervix.`); + } + r.push(`Without another partner to rut against, ${slave.slaveName} has to rely on`); + if (hasBothArms(slave)) { + r.push(`${his} own hands,`); + } else { + r.push(`the floor tiles${hasAnyArms(slave) ? ` and ${his} hand` : ``},`); + } + r.push(`bucking ${his} hips up against them to drive the impressively curved shaft into ${his} own body with increasing desperation until ${his} whole body shudders; ${his} cock throbs as ${his}`); + if (slave.mpreg === 1) { + r.push(`ass`); + } else { + r.push(`vagina`); + } + r.push(`eagerly drinks up ${his} own seed.`); + } else { + if (slave.trust < -20) { + r.push(`Although ${he} is aroused by the idea of impregnating ${himself}, ${slave.slaveName} is too terrified to achieve an erection without assistance. It takes an injection of vasodilators to overcome ${his} nerves and restore ${his} manhood to proper functioning.`); + } else { + r.push(`Merely thinking about what you're about to do has ${slave.slaveName} fully erect, with a small bead of precum running down ${his} shaft and blending with the`); + if (slave.mpreg === 1) { + r.push(`lubricant dripping from between ${his} cheeks.`); + } else { + r.push(`feminine wetness dripping from`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs.`); + } else { + r.push(`${his} crotch.`); + } + } + } + // todo: if slave has lover/wife, let them "do the honors" + if (slave.balls > 4) { + r.push(`Since ${his} balls are too large to permit any other options, you produce a special toy for ${slave.slaveName} — an onahole attached by a flexible tube to a dildo, with an embedded micro-pump to ensure any fluid in the onahole makes its way out of the dildo.`); + } else { + r.push(`Since ${he}'s not large enough to simply fuck ${himself}, you produce a special toy for ${slave.slaveName} — an onahole attached by a flexible tube to a dildo, with an embedded micro-pump to ensure any fluid in the onahole makes its way out of the dildo.`); + } + if ((slave.vagina === 0 && slave.mpreg !== 1) || (slave.anus === 0 && slave.mpreg === 1)) { + r.push(`As ways to lose one's virginity go, this is one hell of a way to do it. ${slave.slaveName} trembles with excitement as ${he} brings the synthetic shaft`); + if (hasBothLegs(slave)) { + r.push(`between ${his} legs`); + } else { + r.push(`to ${his} groin`); + } + r.push(`and slowly works it <span class="lime">into ${his} virgin`); + if (slave.mpreg === 1) { + r.push(`anus.</span>`); + } else { + r.push(`pussy.</span>`); + } + if (slave.mpreg === 1) { + slave.anus = 1; + } else { + slave.vagina = 1; + } + } else { + r.push(`${slave.slaveName} eagerly rams the synthetic shaft as deeply into ${his}`); + if (slave.mpreg === 1) { + r.push(`ass`); + } else { + r.push(`pussy`); + } + r.push(`as it will go, obviously fantasizing that ${he}'s driving ${his} own dick into ${his}`); + if (slave.mpreg === 1) { + r.push(`winking anus.`); + } else { + r.push(`dripping pussy.`); + } + } + r.push(`You help ${him} keep the dildo in place while ${he} works the onahole onto ${his} cock and begins stroking up and down. The stimulation of being filled and having ${his} dick stroked doesn't give ${him} much time to enjoy what ${he}'s doing before ${his} hips buck wildly and you see semen traveling from the pump, along the clear plastic tube, and into the base of the dildo embedded deeply in ${slave.slaveName}'s throbbing`); + if (slave.mpreg === 1) { + r.push(`asshole.`); + } else { + r.push(`vagina.`); + } + } + } else { + if (slave.devotion > 50) { + if (slave.dick > 6) { + r.push(`No matter how hard ${he} tries, ${slave.slaveName}'s dick is simply too large for ${him} to achieve erection on ${his} own. You're about to inject ${him} with a vasodilator to remedy the problem, when ${he} tries to take the syringe from your hand. Normally such impudence would be a grave violation, but it's obvious that ${his} actions are only motivated by loyalty — ${he} wants to fix this problem ${himself} so ${he} can feel like ${he} isn't failing you because of a physical inadequacy that is, admittedly, not ${his} fault. You relinquish the syringe and watch as ${he} injects ${himself} with the drugs necessary to achieve a full erection.`); + } else { + r.push(`Despite a complete lack of sexual interest in the procedure, ${slave.slaveName} is able to quickly bring ${himself} to full erectness without any help.`); + } + } else { + if (slave.dick > 6) { + r.push(`${slave.slaveName}`); + r.push(`doesn't try all that hard to achieve erection, but it's obvious that the sheer size of ${his} cock would make it impossible anyway. ${He} silently cooperates as you inject ${him} with vasodilators to forcibly make ${him} erect.`); + } else { + r.push(`Despite a complete lack of sexual interest in the procedure, ${slave.slaveName} is able to eventually bring ${himself} to full erectness without any help.`); + } + } + // todo: if slave has lover/wife, let them "do the honors" + r.push(`You produce a sample container and syringe; ${slave.slaveName} gets the idea and immediately begins jacking off. When ${he} ejaculates, ${he} carefully holds the cup`); + if (hasBothArms(slave)) { + r.push(`with one hand`); + } else { + r.push(`in front of ${him}`); + } + r.push(`to catch every drop of ${his} virile seed. A moment later ${he} dips the syringe into the container and withdraws the plunger.`); + if (slave.devotion > 50) { + r.push(`${He} blushes a bit, hands you the syringe, and lies back on the bench,`); + if (hasBothLegs(slave)) { + r.push(`spreading ${his} legs invitingly.`); + } else { + r.push(`presenting ${himself}.`); + } + r.push(`You insert the syringe carefully into ${his}`); + if (slave.mpreg === 1) { + r.push(`ass`); + } else { + r.push(`vagina`); + } + r.push(`as far as it will go, and spray ${his} sperm directly against ${his} waiting cervix.`); + } else { + r.push(`You take the syringe from ${him} and gesture for ${him} to lie back; once ${he}'s in position, you insert the syringe carefully into ${his}`); + if (slave.mpreg === 1) { + r.push(`ass`); + } else { + r.push(`vagina`); + } + r.push(`and spray ${his} sperm directly against ${his} waiting cervix.`); + } + } + } else { + if (_enjoy) { + r.push(`Although ${slave.slaveName} is anything but eager to cooperate, you don't have to drag ${him}. It's obvious that ${his} resistance is conflicting with the raw desire to fill ${himself} with ${his} own seed.`); + if (slave.dick > 6 && slave.balls <= 4) { + r.push(`While the size of ${his} cock makes it necessary for you to inject ${him} with vasodilators for ${him} to become properly erect, ${his} resistance is minimal.`); + if (slave.vagina === 0) { + r.push(`You instruct ${him} to fuck ${himself}; by this point, ${he}'s too far gone to object, even though obeying will rob ${him} of ${his} virginity. ${His}`); + if (hasBothArms(slave)) { + r.push(`hands shake`); + } else { + r.push(`lip quivers`); + } + r.push(`with roiling emotions as ${he} lines ${his} cock up with ${his} own opening and gingerly works it into ${his} <span class="lime">virgin`); + if (slave.mpreg === 1) { + r.push(`anus.</span>`); + } else { + r.push(`pussy.</span>`); + } + if (slave.mpreg === 1) { + slave.anus = 1; + } else { + slave.vagina = 1; + } + } else { + r.push(`You instruct ${him} to fuck ${himself}; by this point, ${he}'s too far gone to object. ${His}`); + if (hasBothArms(slave)) { + r.push(`hands shake`); + } else { + r.push(`lip quivers`); + } + r.push(`as ${he} lines ${his} cock up with ${his} own opening; ${he} lets out a sound halfway between a sob and a moan as ${he} penetrates ${himself}.`); + } + r.push(`Without another partner to thrust against, ${slave.slaveName} has to use ${his} remarkable shaft like a dildo, sliding it in and out of ${his} increasingly dripping sex. The potent mix of shame and arousal drives ${him} to orgasm quickly, and only a couple of minutes pass before you see ${his} shaft throbbing as ${he} fucks a baby into ${his} own belly.`); + } else { + if (slave.dick > 6) { + r.push(`${slave.slaveName}'s balls are too large to make any other options possible, but ${he} is still too large to achieve erection easily. You can't tell if ${he} is disappointed, or relieved, by this fact, but a quick injection of vasodilators makes the question moot either way.`); + } else { + r.push(`${His} cock is rigidly erect almost immediately, a fact which brings a confusing mixture of shame and arousal to ${his} face.`); + } + r.push(`You produce a sample container and syringe; ${slave.slaveName} gets the idea and reluctantly begins jacking off. When ${he} ejaculates, ${he} carefully holds the cup with one hand to catch every drop of ${his} seed. A moment later ${he} dips the syringe into the container and withdraws the plunger. ${He} hesitates, likely because the release has restored some of ${his} self control to ${him}, but before ${he} can do anything to escape, you press ${him} down with one hand and feed the syringe into ${his}`); + if (slave.mpreg === 1) { + r.push(`anus,`); + } else { + r.push(`pussy,`); + } + r.push(`depressing the plunger as soon as it's deeply inside ${him}.`); + // possible todo: allow Head Girl to do this part? + } + } else { + r.push(`The repulsion ${slave.slaveName} feels toward both you and what you're about to force ${him} to do make ${his} cooperation entirely out of the question. You are forced to restrain ${him} with straps, kicking and sobbing; the sobbing only gets louder when ${he} feels the prick of a needle shooting vasodilators into ${his} crotch. Moments later, despite ${his} best efforts, ${he} is painfully erect and ready for you to proceed. Since ${he}'s guaranteed to make this as difficult as possible, you opt for the simplest solution: you take a condom and apply it to ${his} penis; once ${he}'s sheathed, you instruct your personal assistant, using toys, to forcibly stimulate ${him} until ${he} ejaculates and remove the condom. Loading the contents into a syringe and injecting them into ${his}`); + if (slave.mpreg === 1) { + r.push(`ass`); + } else { + r.push(`vagina`); + } + r.push(`is a simple matter, because of the straps, and moments later ${he} sobs in despair as ${his} sperm begins racing into ${his} waiting womb.`); + } + } + + const _actCount = random(2, 8)+1; + slave.counter.penetrative += _actCount; + V.penetrativeTotal += _actCount; + if (slave.mpreg === 1) { + slave.counter.anal += _actCount; + V.analTotal += _actCount; + } else { + slave.counter.vaginal += _actCount; + V.vaginalTotal += _actCount; + } + + r.push(`You repeat this ritual throughout the week, ensuring that ${slave.slaveName}`); + + if (_superfetation === 1) { + r.push(`has <span class="lime">added another child</span> to ${his} pregnancy.`); + } else { + r.push(`is <span class="lime">carrying ${his} own child.</span>`); + } + + knockMeUp(slave, 100, 2, V.AS); + + if (V.arcologies[0].FSRestart !== "unset") { + if ((slave.breedingMark !== 1 || V.propOutcome === 0) && V.eugenicsFullControl !== 1) { + r.push(`Rumors spread about you having your slaves breed; the Societal Elite are <span class="red"> very displeased</span> by these rumors.`); + V.failedElite += 5; + } + } + + if (V.arcologies[0].FSRepopulationFocus !== "unset" && (V.arcologies[0].FSGenderFundamentalist === "unset" || V.arcologies[0].FSRepopulationFocus >= V.arcologies[0].FSGenderFundamentalist)) { + // seems logical that repop would trump anything else if it's equal-or-more advanced than fundamentalism. + const _delt = (V.arcologies[0].FSGenderFundamentalist !== "unset") ? + V.arcologies[0].FSRepopulationFocus - V.arcologies[0].FSGenderFundamentalist : + V.arcologies[0].FSRepopulationFocus; + + if (_delt > 0) { + r.push(`Society is <span class="green">pleased</span> by the addition of a new slave, no matter the means by which it was produced.`); + repX(V.FSSingleSlaveRep*(V.arcologies[0].FSRepopulationFocus/V.FSLockinLevel), "futureSocieties", slave); + } else { + r.push(`The traditional elements of your society disapprove of this degenerate form of reproduction, but their complaints are countered by those who believe producing more slaves by any means necessary.`); + } + } else if (V.arcologies[0].FSGenderFundamentalist !== "unset") { + r.push(`Society <span class="red">is disgusted</span> by this degenerate form of reproduction.`); + repX(forceNeg(V.FSSingleSlaveRep*(V.arcologies[0].FSGenderFundamentalist/V.FSLockinLevel)), "futureSocieties", slave); + V.arcologies[0].FSGenderFundamentalist -= 0.05*V.FSSingleSlaveRep; + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fSlaveSelfImpreg.tw b/src/npc/interaction/fSlaveSelfImpreg.tw deleted file mode 100644 index 649f87ea8025b2ea3247d05ab7fce75d95357d7c..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fSlaveSelfImpreg.tw +++ /dev/null @@ -1,219 +0,0 @@ -:: FSlaveSelfImpreg [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> - -<<set _pfh = (getSlave($AS).fetish == "pregnancy" && getSlave($AS).fetishStrength > 50)>> -<<set _pfk = (_pfh && getSlave($AS).fetishKnown == 1) || getSlave($AS).sexualFlaw == "breeder">> -<<set _coop = true, _enjoy = true>> -<<set _superfetation = (getSlave($AS).geneticQuirks.superfetation == 2 && getSlave($AS).pregKnown == 1) ? 1 : 0>> - -<<if (getSlave($AS).fetish == "mindbroken")>> -<<else>> - <<if (getSlave($AS).devotion <= 20)>> - <<if (getSlave($AS).devotion < -20)>> - <<= getSlave($AS).slaveName>> despises you, and tends to resent everything you do on principle, - <<elseif (getSlave($AS).devotion <= 20)>> - <<= getSlave($AS).slaveName>> dislikes you, - <</if>> - <<if (getSlave($AS).sexualFlaw == "breeder" || (_pfh && getSlave($AS).fetishStrength > 90))>> - but the idea of simultaneously impregnating and being impregnated is @@.hotpink;so tempting@@ that $he's @@.mediumaquamarine;grateful@@ to you despite $himself. - <<set getSlave($AS).devotion += 2, getSlave($AS).trust += 1>> - <<elseif (_pfk)>> - but $his obvious predilection for being pregnant significantly lessens the @@.mediumorchid;indignity@@ of the situation. - <<set _coop = false>> - <<set getSlave($AS).devotion -= 2>> - <<elseif (_pfh)>> - but, despite the @@.mediumorchid;indignity@@ of the situation, $his resistance seems strangely muted. It's fairly obvious that something about the idea of being impregnated is @@.hotpink;strangely appealing@@ to $him. - <<set _coop = false>> - <<set getSlave($AS).devotion -= 4>> - <<else>> - <<if (isAmputee(getSlave($AS)))>> - and this @@.gold;uniquely degrading@@ violation of $his person only reinforces $his @@.mediumorchid;hatred@@ towards you. The fact that $he is @@.gold;utterly immobile@@ makes a terrifying situation @@.mediumorchid;even worse.@@ - <<set getSlave($AS).devotion -= 1, getSlave($AS).trust -= 1>> - <<else>> - and this @@.gold;uniquely degrading@@ violation of $his person only reinforces $his @@.mediumorchid;hatred@@ towards you. $He resists so violently that you must @@.health.dec;physically coerce $him@@ into cooperating with the procedure. - <</if>> - <<set _coop = false, _enjoy = false>> - <<set getSlave($AS).devotion -= 5, getSlave($AS).trust -= 6>> - <</if>> - <<elseif (_pfk)>> - <<= getSlave($AS).slaveName>> @@.hotpink;genuinely enjoys@@ impregnation and pregnancy, so $he is @@.mediumaquamarine;grateful@@ that you're giving $him a chance to become so intimately acquainted with both aspects of $his fetish at the same time. - <<set getSlave($AS).devotion += 4, getSlave($AS).trust += 2>> - <<if (getSlave($AS).devotion > 50 && $arcologies[0].FSRepopulationFocus > 10)>> - $He also feels @@.hotpink;proud@@ that $he can be a @@.mediumaquamarine;self-sustaining@@ source of offspring to support your vision of the future. - <<set getSlave($AS).devotion += 1, getSlave($AS).trust += 1>> - <</if>> - <<else>> - <<if (_pfh)>> - Even though you aren't aware of any special fondness for pregnancy, <<= getSlave($AS).slaveName>> seems @@.hotpink;oddly eager@@ to cooperate with you. It quickly becomes obvious that $he is @@.lightcoral;fascinated with pregnancy@@ and you've @@.mediumaquamarine;helped $him discover this@@ about $himself. - <<set getSlave($AS).devotion += 1, getSlave($AS).trust += 1, getSlave($AS).fetishKnown = 1>> - <<elseif (getSlave($AS).behavioralQuirk == "perverted")>> - Despite having no particular interest in pregnancy, the @@.hotpink;sheer perversity@@ of impregnating $himself is palpably arousing to <<= getSlave($AS).slaveName>>. - <<set getSlave($AS).trust += 1>> - <<elseif (getSlave($AS).energy > 90)>> - Despite having no particular interest in pregnancy, <<= getSlave($AS).slaveName>>'s overwhelming sex drive causes $him to be aroused at the prospect of any sex, even if it happens to be with $himself. - <<elseif (getSlave($AS).devotion > 50)>> - Despite having no particular interest in pregnancy, <<= getSlave($AS).slaveName>> is eager to @@.hotpink;submit to your vision@@ of $him. - <<set getSlave($AS).trust += 1>> - <<if (getSlave($AS).devotion > 50 && $arcologies[0].FSRepopulationFocus > 10)>> - $He also feels @@.hotpink;proud@@ that $he can be a @@.mediumaquamarine;self-sustaining@@ source of offspring to support your vision of the future. - <<set getSlave($AS).devotion += 1, getSlave($AS).trust += 1>> - <</if>> - <<set _enjoy = false>> - <<else>> - <<= getSlave($AS).slaveName>> cooperates without any protest. $He may not particularly enjoy pregnancy or impregnation, but $he's too well-broken to resist or speak against you. - <<set _enjoy = false>> - <</if>> - <</if>> -<</if>> - -<<if (getSlave($AS).fetish == "mindbroken")>> - <<= getSlave($AS).slaveName>> is dully cooperative as you ensure $he is positioned conveniently on a bench to give you access to both aspects of $his genitalia. A quick dose of vasodilators ensures that $he is ready to perform, even if $he is unable to fully comprehend what is about to happen. Once $he is fully erect, your personal assistant uses a mechanical toy to efficiently stimulate $him to climax, while you hold a small container in place to collect $his emission. Moments later, you've loaded <<= getSlave($AS).slaveName>>'s seed into a syringe and dispensed the contents deep within $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>>. -<<elseif (isAmputee(getSlave($AS)))>> - <<if (_coop && _enjoy)>> - Although <<= getSlave($AS).slaveName>> is unable to do much to help, $his expression is visibly excited as you place $him on a bench, and produce a sample container and syringe. - <<elseif (_enjoy)>> - A maelstrom of emotions fill <<= getSlave($AS).slaveName>>'s face as you carry $him to a bench, and produce a sample cup and syringe. - <<if (getSlave($AS).dick > 6)>> - You can't tell if $he's relieved or disappointed when $his excessive size interferes, as usual, with $his erection, but an injection of vasodilators quickly makes the question moot. - <</if>> - At your instruction, your personal assistant descends with a selection of toys to ensure quick ejaculation. Pleasure, lust, terror, and loathing play across <<= getSlave($AS).slaveName>>'s face as $his arousal mounts and $his hips begin to buck. By the time $he begins to ejaculate, pleasure and lust have won out and $he throws $his head back in abandon as $his emission fills the cup in your hands. <<if !canSee(getSlave($AS))>>Although $he cannot see what you are doing, $his expression is rapt, almost dreamlike,<<else>>$He watches with rapt fascination<</if>> as you load the syringe with $his sperm, slide it into $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>>, and shoot the contents home, deep against $his waiting cervix. - <<elseif (_coop)>> - <<= getSlave($AS).slaveName>> is calm and docile as you place $him on a bench, and produce a sample container and syringe. With no other option, $he throws back $his head and enjoys the stimulation as your personal assistant, at your instruction, begins stimulating $him to orgasm. When $he ejaculates, you carefully catch every drop in the sample cup, load the syringe, and inject the contents directly against $his cervix. - <<else>> - Although <<= getSlave($AS).slaveName>> frantically squirms in a futile attempt to resist as you place $him on a bench, and produce a sample cup and syringe. Without limbs to aid $his escape, $he can only <<if !canSee(getSlave($AS))>>blindly wait<<else>>watch<</if>> in helpless horror as the vasodilators you inject bring $his manhood to complete erectness and your personal assistant, at your instruction, begins stimulating $him. $He sobs in helpless despair as $his rigid shaft begins to throb, filling the cup with a terribly potent load of $his seed; $he frantically shakes $his head, face streaked with tears, as you dip the syringe into the cup, withdraw the plunger, insert it into $his exposed <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>>, and shoot the contents directly against the opening to $his womb. - <</if>> -<<elseif (_coop)>> - <<if (_enjoy)>> - <<if (getSlave($AS).dick > 6 && getSlave($AS).balls <= 4)>> - Although $he is aroused by the idea of impregnating $himself, <<= getSlave($AS).slaveName>>'s cock is simply too large to easily become erect. A quick injection of vasodilators later, and $he's ready to go. Because $he's so eager, you simply stand back and let the magic happen. - <<if (getSlave($AS).vagina == 0 && getSlave($AS).mpreg != 1) || (getSlave($AS).anus == 0 && getSlave($AS).mpreg == 1)>> - As ways to lose one's virginity go, this is one hell of a way to do it. Without needing any instruction, <<= getSlave($AS).slaveName>> grasps $his massive shaft <<if hasBothArms(getSlave($AS))>>in both hands<<elseif !hasAnyArms(getSlave($AS))>>as best $he can with the stumps of $his arms<<else>>with $his hand<</if>> and feeds it around so the head is <<if getSlave($AS).mpreg == 1>>kissing $his anus<<else>>nestled between $his own labia<</if>>. $He shows only the tiniest hesitation before easing $his cock inside $his own body, @@.lime;<<if getSlave($AS).mpreg == 1>>through $his virgin backdoor<<else>>past $his maidenhead<</if>>,@@ until you can tell the head is nestled snugly against $his own cervix. - <<if getSlave($AS).mpreg == 1>> - <<set getSlave($AS).anus = 1>> - <<else>> - <<set getSlave($AS).vagina = 1>> - <</if>> - <<else>> - Without needing any instruction, <<= getSlave($AS).slaveName>> grasps $his massive shaft <<if hasBothArms(getSlave($AS))>>in both hands<<elseif !hasAnyArms(getSlave($AS))>>as best $he can with the stumps of $his arms<<else>>with $his hand<</if>> and feeds it around so the head is <<if getSlave($AS).mpreg == 1>>kissing $his anus<<else>>nestled between $his own labia<</if>>. $He works it up and down for a second, relishing the sensation, and then plunges $his cock into $his own body until you can tell the tip is wedged against $his own cervix. - <</if>> - Without another partner to rut against, <<= getSlave($AS).slaveName>> has to rely on <<if hasBothArms(getSlave($AS))>>$his own hands<<else>>the floor tiles<<if hasAnyArms(getSlave($AS))>> and $his hand<</if>><</if>>, bucking $his hips up against them to drive the impressively curved shaft into $his own body with increasing desperation until $his whole body shudders; $his cock throbs as $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>> eagerly drinks up $his own seed. - <<else>> - <<if (getSlave($AS).trust < -20)>> - Although $he is aroused by the idea of impregnating $himself, <<= getSlave($AS).slaveName>> is too terrified to achieve an erection without assistance. It takes an injection of vasodilators to overcome $his nerves and restore $his manhood to proper functioning. - <<else>> - Merely thinking about what you're about to do has <<= getSlave($AS).slaveName>> fully erect, with a small bead of precum running down $his shaft and blending with the <<if getSlave($AS).mpreg == 1>>lubricant dripping from between $his cheeks<<else>>feminine wetness dripping from <<if hasBothLegs(getSlave($AS))>>between $his legs<<else>>$his crotch<</if>><</if>>. - <</if>> - <!-- todo: if slave has lover/wife, let them "do the honors" --> - <<if (getSlave($AS).balls > 4)>> - Since $his balls are too large to permit any other options, you produce a special toy for <<= getSlave($AS).slaveName>> — an onahole attached by a flexible tube to a dildo, with an embedded micro-pump to ensure any fluid in the onahole makes its way out of the dildo. - <<else>> - Since $he's not large enough to simply fuck $himself, you produce a special toy for <<= getSlave($AS).slaveName>> — an onahole attached by a flexible tube to a dildo, with an embedded micro-pump to ensure any fluid in the onahole makes its way out of the dildo. - <</if>> - <<if (getSlave($AS).vagina == 0 && getSlave($AS).mpreg != 1) || (getSlave($AS).anus == 0 && getSlave($AS).mpreg == 1)>> - As ways to lose one's virginity go, this is one hell of a way to do it. <<= getSlave($AS).slaveName>> trembles with excitement as $he brings the synthetic shaft <<if hasBothLegs(getSlave($AS))>>between $his legs<<else>>to $his groin<</if>> and slowly works it @@.lime;into $his virgin <<if getSlave($AS).mpreg == 1>>anus<<else>>pussy<</if>>.@@ - <<if getSlave($AS).mpreg == 1>> - <<set getSlave($AS).anus = 1>> - <<else>> - <<set getSlave($AS).vagina = 1>> - <</if>> - <<else>> - <<= getSlave($AS).slaveName>> eagerly rams the synthetic shaft as deeply into $his <<if getSlave($AS).mpreg == 1>>ass<<else>>pussy<</if>> as it will go, obviously fantasizing that $he's driving $his own dick into $his <<if getSlave($AS).mpreg == 1>>winking anus<<else>>dripping pussy<</if>>. - <</if>> - You help $him keep the dildo in place while $he works the onahole onto $his cock and begins stroking up and down. The stimulation of being filled and having $his dick stroked doesn't give $him much time to enjoy what $he's doing before $his hips buck wildly and you see semen traveling from the pump, along the clear plastic tube, and into the base of the dildo embedded deeply in <<= getSlave($AS).slaveName>>'s throbbing <<if getSlave($AS).mpreg == 1>>asshole<<else>>vagina<</if>>. - <</if>> - <<else>> - <<if (getSlave($AS).devotion > 50)>> - <<if (getSlave($AS).dick > 6)>> - No matter how hard $he tries, <<= getSlave($AS).slaveName>>'s dick is simply too large for $him to achieve erection on $his own. You're about to inject $him with a vasodilator to remedy the problem, when $he tries to take the syringe from your hand. Normally such impudence would be a grave violation, but it's obvious that $his actions are only motivated by loyalty — $he wants to fix this problem $himself so $he can feel like $he isn't failing you because of a physical inadequacy that is, admittedly, not $his fault. You relinquish the syringe and watch as $he injects $himself with the drugs necessary to achieve a full erection. - <<else>> - Despite a complete lack of sexual interest in the procedure, <<= getSlave($AS).slaveName>> is able to quickly bring $himself to full erectness without any help. - <</if>> - <<else>> - <<if (getSlave($AS).dick > 6)>> - <<= getSlave($AS).slaveName>> doesn't try all that hard to achieve erection, but it's obvious that the sheer size of $his cock would make it impossible anyway. $He silently cooperates as you inject $him with vasodilators to forcibly make $him erect. - <<else>> - Despite a complete lack of sexual interest in the procedure, <<= getSlave($AS).slaveName>> is able to eventually bring $himself to full erectness without any help. - <</if>> - <</if>> - <!-- todo: if slave has lover/wife, let them "do the honors" --> - You produce a sample container and syringe; <<= getSlave($AS).slaveName>> gets the idea and immediately begins jacking off. When $he ejaculates, $he carefully holds the cup <<if hasBothArms(getSlave($AS))>>with one hand<<else>>in front of $him<</if>> to catch every drop of $his virile seed. A moment later $he dips the syringe into the container and withdraws the plunger. - <<if (getSlave($AS).devotion > 50)>> - $He blushes a bit, hands you the syringe, and lies back on the bench, <<if hasBothLegs(getSlave($AS))>>spreading $his legs invitingly<<else>>presenting $himself<</if>>. You insert the syringe carefully into $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>> as far as it will go, and spray $his sperm directly against $his waiting cervix. - <<else>> - You take the syringe from $him and gesture for $him to lie back; once $he's in position, you insert the syringe carefully into $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>> and spray $his sperm directly against $his waiting cervix. - <</if>> - <</if>> -<<else>> - <<if (_enjoy)>> - Although <<= getSlave($AS).slaveName>> is anything but eager to cooperate, you don't have to drag $him. It's obvious that $his resistance is conflicting with the raw desire to fill $himself with $his own seed. - <<if (getSlave($AS).dick > 6 && getSlave($AS).balls <= 4)>> - While the size of $his cock makes it necessary for you to inject $him with vasodilators for $him to become properly erect, $his resistance is minimal. - <<if getSlave($AS).vagina == 0>> - You instruct $him to fuck $himself; by this point, $he's too far gone to object, even though obeying will rob $him of $his virginity. $His <<if hasBothArms(getSlave($AS))>>hands shake<<else>>lip quivers<</if>> with roiling emotions as $he lines $his cock up with $his own opening and gingerly works it into $his @@.lime;virgin <<if getSlave($AS).mpreg == 1>>anus<<else>>pussy<</if>>.@@ - <<if getSlave($AS).mpreg == 1>> - <<set getSlave($AS).anus = 1>> - <<else>> - <<set getSlave($AS).vagina = 1>> - <</if>> - <<else>> - You instruct $him to fuck $himself; by this point, $he's too far gone to object. $His <<if hasBothArms(getSlave($AS))>>hands shake<<else>>lip quivers<</if>> as $he lines $his cock up with $his own opening; $he lets out a sound halfway between a sob and a moan as $he penetrates $himself. - <</if>> - Without another partner to thrust against, <<= getSlave($AS).slaveName>> has to use $his remarkable shaft like a dildo, sliding it in and out of $his increasingly dripping sex. The potent mix of shame and arousal drives $him to orgasm quickly, and only a couple of minutes pass before you see $his shaft throbbing as $he fucks a baby into $his own belly. - <<else>> - <<if (getSlave($AS).dick > 6)>> - <<= getSlave($AS).slaveName>>'s balls are too large to make any other options possible, but $he is still too large to achieve erection easily. You can't tell if $he is disappointed, or relieved, by this fact, but a quick injection of vasodilators makes the question moot either way. - <<else>> - $His cock is rigidly erect almost immediately, a fact which brings a confusing mixture of shame and arousal to $his face. - <</if>> - You produce a sample container and syringe; <<= getSlave($AS).slaveName>> gets the idea and reluctantly begins jacking off. When $he ejaculates, $he carefully holds the cup with one hand to catch every drop of $his seed. A moment later $he dips the syringe into the container and withdraws the plunger. $He hesitates, likely because the release has restored some of $his self control to $him, but before $he can do anything to escape, you press $him down with one hand and feed the syringe into $his <<if getSlave($AS).mpreg == 1>>anus<<else>>pussy<</if>>, depressing the plunger as soon as it's deeply inside $him. - <!-- possible todo: allow Head Girl to do this part?--> - <</if>> - <<else>> - The repulsion <<= getSlave($AS).slaveName>> feels toward both you and what you're about to force $him to do make $his cooperation entirely out of the question. You are forced to restrain $him with straps, kicking and sobbing; the sobbing only gets louder when $he feels the prick of a needle shooting vasodilators into $his crotch. Moments later, despite $his best efforts, $he is painfully erect and ready for you to proceed. Since $he's guaranteed to make this as difficult as possible, you opt for the simplest solution: you take a condom and apply it to $his penis; once $he's sheathed, you instruct your personal assistant, using toys, to forcibly stimulate $him until $he ejaculates and remove the condom. Loading the contents into a syringe and injecting them into $his <<if getSlave($AS).mpreg == 1>>ass<<else>>vagina<</if>> is a simple matter, because of the straps, and moments later $he sobs in despair as $his sperm begins racing into $his waiting womb. - <</if>> -<</if>> - -<<set _actCount = random(2,8)+1>> -<<set getSlave($AS).counter.penetrative += _actCount, $penetrativeTotal += _actCount>> -<<if getSlave($AS).mpreg == 1>> - <<set getSlave($AS).counter.anal += _actCount, $analTotal += _actCount>> -<<else>> - <<set getSlave($AS).counter.vaginal += _actCount, $vaginalTotal += _actCount>> -<</if>> - -You repeat this ritual throughout the week, ensuring that <<= getSlave($AS).slaveName>> -<<if _superfetation == 1>> - has @@.lime;added another child@@ to $his pregnancy. -<<else>> - is @@.lime;carrying $his own child.@@ -<</if>> - -<<= knockMeUp(getSlave($AS), 100, 2, $AS, 1)>> - -<<if $arcologies[0].FSRestart != "unset">> - <<if (getSlave($AS).breedingMark != 1 || $propOutcome == 0) && $eugenicsFullControl != 1>> - Rumors spread about you having your slaves breed; the Societal Elite are @@.red; very displeased@@ by these rumors. - <<set $failedElite += 5>> - <</if>> -<</if>> - -<<if ($arcologies[0].FSRepopulationFocus != "unset" && ($arcologies[0].FSGenderFundamentalist == "unset" || $arcologies[0].FSRepopulationFocus >= $arcologies[0].FSGenderFundamentalist))>> - <!-- seems logical that repop would trump anything else if it's equal-or-more advanced than fundamentalism.--> - <<if $arcologies[0].FSGenderFundamentalist != "unset">> - <<set _delt = $arcologies[0].FSRepopulationFocus - $arcologies[0].FSGenderFundamentalist>> - <<else>> - <<set _delt = $arcologies[0].FSRepopulationFocus>> - <</if>> - <<if _delt > 0>> - Society is @@.green;pleased@@ by the addition of a new slave, no matter the means by which it was produced. - <<run repX($FSSingleSlaveRep*($arcologies[0].FSRepopulationFocus/$FSLockinLevel), "futureSocieties", getSlave($AS))>> - <<else>> - The traditional elements of your society disapprove of this degenerate form of reproduction, but their complaints are countered by those who believe producing more slaves by any means necessary. - <</if>> -<<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - Society @@.red;is disgusted@@ by this degenerate form of reproduction. - <<run repX(forceNeg($FSSingleSlaveRep*($arcologies[0].FSGenderFundamentalist/$FSLockinLevel)), "futureSocieties", getSlave($AS))>> - <<set $arcologies[0].FSGenderFundamentalist -= 0.05*$FSSingleSlaveRep>> -<</if>> diff --git a/src/npc/interaction/fSlaveSlaveVagConsummate.tw b/src/npc/interaction/fSlaveSlaveVagConsummate.tw deleted file mode 100644 index b32688395e31da4f377485b10b55c5a16afe291b..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fSlaveSlaveVagConsummate.tw +++ /dev/null @@ -1,250 +0,0 @@ -:: FSlaveSlaveVag Consummate [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> -<<setLocalPronouns $slaverapistx 2>> - -<<set getSlave($AS).counter.vaginal += 1>> -<<set $vaginalTotal += 1>> -<<set $slaverapistx.counter.penetrative++, $penetrativeTotal++>> - -<<if $slaverapistx.dick == 1>> - <<set _dickSize = "pathetic">> -<<elseif ($slaverapistx.dick == 2)>> - <<set _dickSize = "tiny">> -<<elseif ($slaverapistx.dick == 3)>> - <<set _dickSize = "average">> -<<elseif ($slaverapistx.dick == 4)>> - <<set _dickSize = "big">> -<<elseif ($slaverapistx.dick == 5)>> - <<set _dickSize = "huge">> -<<elseif ($slaverapistx.dick == 6)>> - <<set _dickSize = "gigantic">> -<<elseif ($slaverapistx.dick == 7)>> - <<set _dickSize = "titanic">> -<<elseif ($slaverapistx.dick == 8)>> - <<set _dickSize = "absurd">> -<<elseif ($slaverapistx.dick == 9)>> - <<set _dickSize = "inhuman">> -<<else>> - <<set _dickSize = "obscene">> -<</if>> - -<<if areRelated(getSlave($AS), $slaverapistx)>> - <<set _isIncest = 1>> -<</if>> - -You take a look at the slave you selected. - -<<if ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion >= -20)>> - Since $slaverapistx.slaveName loves to dominate others it's not hard to get _his2 <<if $slaverapistx.dick > 0>>_dickSize dick<<else>>massive clit<</if>> ready. - <<if ($slaverapistx.attrXX > 65)>> - With _his2 love of pussy, _he2 becomes aroused indecently fast. - <<else>> - _His2 <<if $slaverapistx.dick > 0>>_dickSize cock<<else>>massive clit<</if>> quickly swells to a throbbing erection at the prospect of forcing _himself2 on another slave. - <</if>> -<<elseif ($slaverapistx.fetish == "sadist") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion >= -20)>> - With the prospect of torturing another slave <<if $slaverapistx.dick > 0>>_his2 _dickSize cock swells to a throbbing erection in seconds<<else>>_his2 huge clit becomes fully engorged in seconds<</if>>. -<<elseif ($slaverapistx.fetish == "pregnancy") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion >= -20) && $slaverapistx.dick > 0>> - With the prospect of raping another slave bareback, _his2 _dickSize cock swells to a throbbing erection in seconds. -<<elseif ($slaverapistx.attrXX > 65) && ($slaverapistx.devotion >= -20)>> - Since $slaverapistx.slaveName likes sticking _his2 <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> in girls, _he2 doesn't take much convincing. -<<elseif ($slaverapistx.devotion > 50)>> - Since $slaverapistx.slaveName is devoted to you, _he2'll eagerly fuck anything you tell _him2 to fuck. -<<elseif ($slaverapistx.devotion > 20)>> - Since $slaverapistx.slaveName is obedient, _he2'll fuck anything you tell _him2 to fuck. -<<elseif ($slaverapistx.devotion >= -20)>> - Since $slaverapistx.slaveName does not resist your will, _he2 should comply reasonably well. _He2 has to work to get _his2 <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> hard despite _his2 doubts, visibly disturbed that you are ordering _him2 to fuck someone for your entertainment. -<<else>> - Since $slaverapistx.slaveName is unlikely to comply willingly, you simply restrain _him2 and administer a massive dose of vasodilators, directly where they will do the most good. $slaverapistx.slaveName writhes with the pain of the injection, which is compounded as _his2 <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> quickly reaches an agonizingly full erection. -<</if>> - -<<if _isIncest == 1>> - $slaverapistx.slaveName is well aware that _he2 is about to rape - <<if $slaverapistx.father == $AS && $slaverapistx.mother == $AS>> - the slave that is both _his2 mother and _his2 father, - <<elseif getSlave($AS).mother == $slaverapistx.ID || getSlave($AS).father == $slaverapistx.ID>> - _his2 own <<print relativeTerm($slaverapistx, getSlave($AS))>>, - <<elseif $slaverapistx.mother == $AS>> - _his2 own mother, - <<elseif $slaverapistx.mother == $AS>> - the slave that fathered _him2, - <<else>> - _his2 <<print relativeTerm($slaverapistx, getSlave($AS))>>, - <</if>> - <<if ($slaverapistx.sexualQuirk == "perverted") || ($slaverapistx.sexualQuirk == "sinful")>> - <<if ($slaverapistx.energy > 60)>> - and seems quite aroused at just how <<if ($slaverapistx.sexualQuirk == "perverted")>>perverted<<else>>sinful<</if>> that is. <<if canSee($slaverapistx)>>$slaverapistx.slaveName's eyes seemed locked on <<= getSlave($AS).slaveName>>'s inviting pussy, thoroughly aroused and waiting for your order.<</if>> - <<else>> - but despite _his2 conflicted feelings _his2 arousal is clear. - <</if>> - <<set _incestMood = "Top">> - <<elseif ($slaverapistx.relationshipTarget == $AS) && ($slaverapistx.relationship > 2)>> - but since _he2's already in a sexual relationship with $him, it's only special because _his2 <<= getWrittenTitle($slaverapistx)>> is watching. - <<set _incestMood = "Top">> - <<else>> - <<if $slaverapistx.devotion > 95>> - but _his2 deep acceptance of slavery means _he2 can't help but be eager to please everyone involved with _his2 performance. - <<set _incestMood = "Top">> - <<elseif $slaverapistx.devotion > 60>> - but _his2 experience as a slave means _he2 can mostly ignore it and focus on sex. - <<else>> - and is understandably disturbed. - <</if>> - <</if>> -<</if>> - -<br><br> - -Next, you see to <<= getSlave($AS).slaveName>>. - -<<if _isIncest == 1>> - <<= getSlave($AS).slaveName>> is fully naked and <<if canSee(getSlave($AS))>>looking up at<<else>>waiting in front of<</if>> - <<if getSlave($AS).father == $slaverapistx.ID && getSlave($AS).mother == $slaverapistx.ID>> - the slave that is both $his mother and $his father, - <<elseif $slaverapistx.mother == $AS || $slaverapistx.father == $AS>> - $his own <<print relativeTerm(getSlave($AS), $slaverapistx)>>, - <<elseif getSlave($AS).mother == $slaverapistx.ID>> - $his own mother, - <<elseif getSlave($AS).father == $slaverapistx.ID>> - the slave that fathered $him, - <<else>> - $his <<print relativeTerm(getSlave($AS), $slaverapistx)>>, - <</if>> - <<if (getSlave($AS).sexualQuirk == "perverted") || (getSlave($AS).sexualQuirk == "sinful")>> - <<if (getSlave($AS).energy > 60)>> - whose <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> is standing firm above $him. $He seems indecently aroused, flushed and shivering in anticipation. - <<else>> - but despite $his conflicted feelings $his growing arousal is clear as $he <<if canSee(getSlave($AS))>>stares at<<else>>imagines<</if>> the <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> that's soon going inside $him. - <</if>> - <<if _incestMood == "Top">> - <<set _incestMood = "Both">> - <<else>> - <<set _incestMood = "Bottom">> - <</if>> - <<elseif (getSlave($AS).relationshipTarget == $slaverapistx.ID) && (getSlave($AS).relationship > 2)>> - and seems calm and inviting to $his - <<if getSlave($AS).relationship == 3>> - sex friend's - <<elseif getSlave($AS).relationship == 4>> - lover's - <<else>> - slave _wife2's - <</if>> - <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> that will be penetrating $him. - <<if _incestMood == "Top">> - <<set _incestMood = "Both">> - <<else>> - <<set _incestMood = "Bottom">> - <</if>> - <<else>> - <<if getSlave($AS).devotion > 95>> - and $his deep acceptance of $his status as a slave has $him staring <<if canSee(getSlave($AS))>>at<<else>>blindly towards<</if>> the <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> above $him with a lusty smile. - <<if _incestMood == "Top">> - <<set _incestMood = "Both">> - <<else>> - <<set _incestMood = "Bottom">> - <</if>> - <<elseif getSlave($AS).devotion > 60>> - and if $he focuses, $he can forget the <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> standing erect in front of $him belongs to someone related to $him. - <<else>> - and is understandably disturbed, <<if canSee(getSlave($AS))>>eyes glued to the <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> throbbing before $him.<<elseif canHear(getSlave($AS))>>listening to the heavy breathing of $his relative whose <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> will be entering $him soon.<<else>>imagining how the <<if $slaverapistx.dick > 0>>_dickSize penis<<else>>massive clit<</if>> of $his relative will feel inside $him<</if>> - <</if>> - <</if>> -<</if>> - -<<if (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).vagina == 0)>> - $He presents $his virgin pussy to $slaverapistx.slaveName without protest. This act @@.lime; breaks in $his pussy,@@ and @@.hotpink;reminds $him@@ of $his status as a submissive slave. - <<set getSlave($AS).vagina = 1>> - <<set getSlave($AS).devotion += 4>> - <<set getSlave($AS).fetishStrength += 1>> -<<elseif (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He smiles as $he lays back and presents $his pussy to $slaverapistx.slaveName. $He openly enjoys submitting $himself for others to make use of. -<<elseif (getSlave($AS).devotion > 20) && (getSlave($AS).vagina == 0) >> - $He accepts your orders without comment and presents $his virgin pussy to $slaverapistx.slaveName. $He gasps in shock when $he feels the <<if $slaverapistx.dick > 0>>_dickSize dick<<else>>massive clit<</if>> enter $him. @@.hotpink;$He is broken to slavery@@ by this application of $his body, which naturally @@.lime;will break in $his pussy.@@ - <<set getSlave($AS).vagina = 1>> - <<set getSlave($AS).devotion += 10>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).vagina == 0)>> - $He is clearly unhappy at the idea of losing $his pearl of great price to $slaverapistx.slaveName; this probably isn't what $he imagined $his first real sexual encounter would be like. Nevertheless, $he is @@.hotpink;broken to slavery@@ by this application of $his body, which naturally @@.lime;will break in $his pussy.@@ - <<set getSlave($AS).vagina = 1>> - <<set getSlave($AS).devotion += 4>> -<<elseif (getSlave($AS).vagina == 0)>> - As you anticipated, $he refuses to give $slaverapistx.slaveName $his virginity. Since $he is restrained, $his @@.mediumorchid;horrified tears@@ and @@.gold;frightened begging@@ are $his only signs on rebellion. Naturally, this cruel act @@.lime;will break in $his pussy.@@ - <<set getSlave($AS).devotion -= 5>> - <<set getSlave($AS).trust -= 5>> - <<set getSlave($AS).vagina = 1>> -<</if>> - -<<if isAmputee(getSlave($AS))>> - You set $his limbless torso up for $slaverapistx.slaveName. -<<elseif tooBigBreasts(getSlave($AS))>> - You set $him up for $slaverapistx.slaveName, face-down so the weight of $his tits pins $him helplessly in place. -<<elseif tooBigButt(getSlave($AS))>> - You set $him up for $slaverapistx.slaveName, face-down so the weight of $his giant ass pins $him helplessly in place and gives $slaverapistx.slaveName a lovely cushion to thrust against. -<<elseif tooBigDick(getSlave($AS))>> - You set $him up for $slaverapistx.slaveName, face-up so $he is pinned under the weight of $his giant cock. -<<elseif tooBigBalls(getSlave($AS))>> - You set $him up for $slaverapistx.slaveName, face-down so the weight of $his giant balls anchor $him helplessly in place. -<<elseif getSlave($AS).devotion < -20>> - $He tries to refuse, so you restrain $him despite $his resistance to the idea of being raped by another slave. -<<elseif getSlave($AS).devotion <= 20>> - $He obeys your orders reluctantly, arranging $himself for vaginal sex despite $his obvious hesitation to be raped by another slave. -<<elseif getSlave($AS).devotion < 10>> - $He obeys your orders, arranging $himself for vaginal sex despite $his slight hesitation at the idea of being another's slave sex toy. -<<else>> - $He happily obeys your orders, getting ready to serve another slave. -<</if>> - -<br><br> - -<<if (getSlave($AS).devotion < -20) && ($slaverapistx.devotion < -20)>> - Since you have two restrained slaves, it's up to you to do all the work. <<= getSlave($AS).slaveName>> is tied up on the bed with $his pussy available, so you maneuver $slaverapistx.slaveName's <<if $slaverapistx.dick > 0>>_dickSize dick<<else>>strap-on<</if>> into place. The two slaves make no further moves until you deal $slaverapistx.slaveName a terrific swat across the ass and promise to give _him2 more of the same until _he2 gets going. $slaverapistx.slaveName starts moving very slowly, barely prodding. After watching them mechanically go at it for a while, you use your leg to suddenly push _him2 deep into <<= getSlave($AS).slaveName>>, fully hilting _him2 in one motion. You occasionally prod them with an electrical jolt to keep them going at a faster pace. Both slaves resent what you made them do for you and fear you'll make them do it again. - -<<elseif ($slaverapistx.devotion < -20)>> - Since your dick slave is restrained, you order <<= getSlave($AS).slaveName>> to present $himself on the bed, and then maneuver $slaverapistx.slaveName's <<if $slaverapistx.dick > 0>>_dickSize dick<<else>>strap-on<</if>> into place. <<= getSlave($AS).slaveName>> does $his best to hump $himself against the unwilling cock until you deal $slaverapistx.slaveName a terrific swat across the ass and promise to give _him2 more of the same until _he2 gets going. _He2 is still unenthusiastic, so you have _him2 lie down and have <<= getSlave($AS).slaveName>> ride $himself to orgasm. _He2 resents what you made _him2 do and fears you'll force _him2 to do it again. Though <<= getSlave($AS).slaveName>> accepts the situation, $he looks into $slaverapistx.slaveName's eyes with obvious apology. - -<<elseif ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion > 20)>> - <<= getSlave($AS).slaveName>> is tied and placed on the bed with $his pussy defenseless and available, and then you tell the randy $slaverapistx.slaveName that it's all _hers2. The slave life has so affected $slaverapistx.slaveName that _he2 is quite eager to rape another slave for _his2 pleasure. _He2 penetrates _him2 immediately, fondling, pinching and licking while pistoning away, fully enjoying _his2 dominant role, edging _his2 poor toy again and again and making _him2 beg for release. - <<if (getSlave($AS).fetish == "dom")>> - <<if (getSlave($AS).devotion < -20)>> - By the end of the day <<= getSlave($AS).slaveName>>'s abused cunt is <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>, leaving $him horrified and disgusted at $his lack of control. - <<else>> - By the end of the day <<= getSlave($AS).slaveName>>'s abused cunt is <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>, leaving $him annoyed at $his lack of control, though $he still somewhat enjoyed $himself. - <</if>> - <<elseif (getSlave($AS).fetish == "submissive")>> - <<if (getSlave($AS).devotion < -20)>> - By the end of the day <<= getSlave($AS).slaveName>>'s abused cunt is <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>, leaving the submissive slave horrified that $he found the experience sexually satisfying. - <<else>> - By the end of the day <<= getSlave($AS).slaveName>>'s abused cunt is <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>. This sexual encounter is everything $he dreamed of, leaving $him utterly satisfied. - <</if>> - <</if>> - $slaverapistx.slaveName is lying next to $him on the bed in a state of obvious satiation and bliss. - - -<<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20) && (getSlave($AS).devotion < -20)>> - <<= getSlave($AS).slaveName>> is tied and placed on the bed with $his pussy defenseless and available, and then you tell the randy $slaverapistx.slaveName that it's all _hers2. The slave life has so affected $slaverapistx.slaveName that _he2 is quite eager to rape another slave, just for the perverted novelty of the act. $His high libido keeps $him going for a long time, bringing the helpless toy to one forced orgasm after another. By the end of the day <<= getSlave($AS).slaveName>> is lying on the bed, all worn out, $his cunt <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>> to $his horror and resentment, while $slaverapistx.slaveName is sleeping next to $him in a state of obvious satiation and bliss. - -<<elseif (getSlave($AS).devotion <= 20) || ($slaverapistx.devotion <= 20)>> - You order <<= getSlave($AS).slaveName>> onto the couch and tell $slaverapistx.slaveName to get on with it. They fuck mechanically, gazing with roiling emotions into each others' eyes. They do seem to come to some sort of a non-verbal understanding on the necessity of getting it done, and there is no real unhappiness in either of them when they finish and disentangle themselves. As they clean themselves and exit, you notice $slaverapistx.slaveName's <<if canSee($slaverapistx)>>looking a little more longingly at<<else>>acting a bit more softly with<</if>> <<= getSlave($AS).slaveName>>. - -<<elseif (getSlave($AS).devotion <= 50) || ($slaverapistx.devotion <= 50)>> - You order <<= getSlave($AS).slaveName>> and $slaverapistx.slaveName to get on with it. They fuck mechanically at first, gazing with roiling emotions into each others' eyes. Eventually, they begin to enjoy the intimacy of the act, finding the shared pleasure between them comforting. They finish and resume life as slaves, the light of this intimacy diminishing, softening with $slaverapistx.slaveName's dick and dripping away with the contents of <<= getSlave($AS).slaveName>>'s cum-filled pussy. - -<<else>> - The two slaves happily and eagerly get down to business. They take their time with foreplay, humping slowly and gazing into each others' eyes, exchanging kisses almost constantly. After a little while, <<= getSlave($AS).slaveName>> looks over $slaverapistx.slaveName's shoulder to where you're sitting, the invitation clear in $his eyes. As soon as you stand to come over, they roll over without being ordered to - <<if canDoAnal(getSlave($AS)) && getSlave($AS).anus > 0>> - present <<= getSlave($AS).slaveName>>'s butthole. - <<set getSlave($AS).counter.anal++, $analTotal++>> - <<else>> - invite you into <<= getSlave($AS).slaveName>>'s crowded pussy. - <<set getSlave($AS).counter.vaginal++, $vaginalTotal++>> - <</if>> - You take up the offer and penetrate <<= getSlave($AS).slaveName>> with your <<if $PC.dick > 0>>dick<<else>>strap-on<</if>>. With the added stimulus of penetrating a tight hole alongside _his2 dear <<= getWrittenTitle($slaverapistx)>>, $slaverapistx.slaveName comes indecently hard, but no where near as hard as the completely overloaded <<= getSlave($AS).slaveName>>. All of you collapse into an exhausted, happy pile of flesh. - -<</if>> - -<<if canImpreg(getSlave($AS), $slaverapistx)>> - <<= knockMeUp(getSlave($AS), 25, 0, $slaverapistx.ID)>> -<</if>> - -<<set $slaves[$slaveIndices[$slaverapistx.ID]] = $slaverapistx>> diff --git a/src/npc/interaction/fillUpFace.js b/src/npc/interaction/fillUpFace.js new file mode 100644 index 0000000000000000000000000000000000000000..62ce48dec28af5f4e211fbc21d74bc0ea0e1fb3a --- /dev/null +++ b/src/npc/interaction/fillUpFace.js @@ -0,0 +1,355 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fillUpFace = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself + } = getPronouns(slave); + + slave.bellyAccessory = "none"; + let pregDiscovery = 0; + const belly = bellyAdjective(slave); + r.push(`You attach a hose to ${V.dairyName} tap with the pipes set to pump ${slave.inflationType} and affix a special nozzle to it, one with straps useful for anchoring it to resisting slaves, before calling ${him} over so you can feel ${him} up while you force-feed ${him} ${slave.inflationType}.`); + + if (slave.inflation > 1 && slave.preg > 1) { + r.push(`${He} looks uneasy at the prospect of taking in that much, far more than could be considered normal.`); + pregDiscovery = 1; + } else { + if (slave.fetish === "submissive" && slave.devotion >= -20) { + r.push(`${He} blushes at the thought of being forcibly fed.`); + } else if (slave.fetish === "cumslut" && slave.devotion >= -20 && slave.inflationType === "cum") { + r.push(`${He}'s pleased at the idea of turning into a cum balloon.`); + } + if (slave.devotion >= -20 && (slave.inflationType === "cum" || slave.inflationType === "milk")) { + if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He}'s thrilled that you are going to give ${him} such a filling meal.`); + } else if (slave.behavioralFlaw === "anorexic") { + r.push(`${He}'s hesitant about whether or not you are trying to make ${him} gain weight.`); + } + } + } + + if (pregDiscovery === 1) { + r.push(`Not wanting to risk such a mess, you send ${him} for a medical examination. While most of the tests come back normal, one in particular catches your eye; <span class="lime">${He} is pregnant${(slave.preg > slave.pregData.normalBirth/4) ? `` : ` and surprisingly far along`}.</span> ${He} should be able to still handle at least two liters of ${slave.inflationType}, however.`); + deflate(slave); + slave.pregKnown = 1; + } else if (slave.fetish === "mindbroken") { + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open ${his} mouth wide for the hose, but ${he} remains still and unresponsive. Talking to a broken mind is pointless.`); + } + r.push(`You reach out and wrap your arms around ${his}`); + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.inflation === 2) { + r.push(`sloshing, ${slave.inflationType}-filled`); + } else if (slave.belly >= 1500) { + r.push(belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.inflation === 1) { + r.push(`${slave.inflationType}-bloated`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + r.push(`belly, pulling ${him} into your lap. You force the hose down ${his} throat, strapping it to ${his} head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to ${his} gurgling stomach.`); + if (slave.inflation === 2) { + r.push(`You can feel ${his} ${slave.skin} belly growing taut with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give the firm orb of ${his} belly a slap, eliciting a large belch from the broken slave and no motion at all from ${his} gut. You order ${him} to keep ${himself} filled with two gallons of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the groaning ${slave.slaveName} ready to be moved.`); + } else if (slave.inflation === 1) { + r.push(`You can feel ${his} ${slave.skin} belly growing larger with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give the jiggling orb of ${his} belly a slap, eliciting a burp from the broken slave and tons of motion from ${his} gut. You order ${him} to keep ${himself} filled with four liters of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the groaning ${slave.slaveName} ready to be moved.`); + } else { + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give ${his} bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from ${his} gut. You order ${him} to keep ${himself} filled with two liters of ${slave.inflationType} until you say otherwise, before helping ${his} sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the hiccupping ${slave.slaveName} ready to be moved.`); + } + } else if (slave.devotion < -20) { + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open ${his} mouth wide for the hose. Opposed to the thought of being filled `); + if (slave.inflation > 0) { + r.push(`more `); + } + r.push(`with ${slave.inflationType}, ${he} tries to `); + if (canWalk(slave)) { + r.push(`step back,`); + } else { + r.push(`crawl away,`); + } + r.push(`but you catch ${him} and pull ${him} into your lap, wrapping your arms around ${his}`); + } else if (hasAnyLimbs(slave)) { + r.push(`You inform ${him} ${he}'ll be taking a seat on your lap, opening ${his} mouth wide for the hose, and drinking until you tell ${him} ${he} is full enough. ${He}'s opposed to the thought of being filled with`); + if (slave.inflation > 0) { + r.push(` more`); + } + r.push(` ${slave.inflationType}, but since ${he} is immobile, ${he} can't escape. You heft ${him} onto your lap, wrapping your arms around ${his}`); + } else { + r.push(`${He}'s opposed to the thought of being filled with `); + if (slave.inflation > 0) { + r.push(`more `); + } + r.push(`${slave.inflationType}, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping your arms around ${him}`); + } + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.inflation === 2) { + r.push(`sloshing, ${slave.inflationType}-filled`); + } else if (slave.belly >= 1500) { + r.push(belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.inflation === 1) { + r.push(`${slave.inflationType}-bloated`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + r.push(`belly. You force the hose down ${his} throat, strapping it to ${his} head to prevent ${him} from removing it, and turn the flow to low. With everything in place, you return your hands to ${his} gurgling stomach.`); + if (slave.inflation === 2) { + r.push(`You can feel ${his} ${slave.skin} belly growing taut with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give the firm orb of ${his} belly a slap, eliciting gagging from the overfilled slave and no motion at all from ${his} gut. ${He} `); + if (canSee(slave)) { + r.push(`looks in your eyes,`); + } else { + r.push(`faces you,`); + } + r.push(`as though almost demanding answers. ${He} looks apprehensive about what you will do next. You order ${him} to keep ${himself} filled with two gallons of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the groaning ${slave.slaveName} ready to be moved.`); + } else if (slave.inflation === 1) { + r.push(`You can feel ${his} ${slave.skin} belly growing larger with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give the jiggling orb of ${his} belly a slap, eliciting a burp from the full slave and tons of motion from ${his} gut. ${He} `); + if (canSee(slave)) { + r.push(`looks in your eyes,`); + } else { + r.push(`faces you,`); + } + r.push(`as though almost demanding answers. ${He} looks apprehensive about what you will do next. You order ${him} to keep ${himself} filled with four liters of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the groaning ${slave.slaveName} ready to be moved.`); + } else { + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hands. Once you have given ${him} ${his} fill, you give ${his} bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from ${his} gut. ${He} `); + if (canSee(slave)) { + r.push(`looks in your eyes,`); + } else { + r.push(`faces you,`); + } + r.push(`as though almost demanding answers. ${He} looks apprehensive about what you will do next. You order ${him} to keep ${himself} filled with two liters of ${slave.inflationType} until you say otherwise, before helping ${his} sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up, is the hiccupping ${slave.slaveName} ready to be moved.`); + } + } else if (slave.devotion <= 20) { + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open ${his} mouth wide for the hose. ${He} complies without comment and settles ${himself} onto your lap, shuddering slightly as you wrap your arms around ${his}`); + } else if (hasAnyLimbs(slave)) { + r.push(`You inform ${him} ${he}'ll be taking a seat on your lap, opening ${his} mouth wide for the hose, and drinking until you tell ${him} ${he} is full enough. ${He} complies without comment. You heft ${him} onto your lap, wrapping your arms around ${his}`); + } else { + r.push(`${He}'s hesitant of being filled with `); + if (slave.inflation > 0) { + r.push(`more `); + } + r.push(`${slave.inflationType}, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping your arms around ${his}`); + } + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.inflation === 2) { + r.push(`sloshing, ${slave.inflationType}-filled`); + } else if (slave.belly >= 1500) { + r.push(belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.inflation === 1) { + r.push(`${slave.inflationType}-bloated`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + r.push(`belly. You insert the hose down ${his} throat, choosing to hold it place instead of strapping it to ${him}, and turn the flow to low. With everything in place, you place your free hand on ${his} gurgling stomach.`); + if (slave.inflation === 2) { + r.push(`You can feel ${his} ${slave.skin} belly growing taut with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the firm orb of ${his} belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from ${his} gut. ${He} looks up at you quizzically, unsure about what you will do next. You order ${him} to keep ${himself} filled with two gallons of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover. ${His} meal attempts to come back up on ${his} several times, but ${he} holds it down for fear of punishment should ${he} vomit. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else if (slave.inflation === 1) { + r.push(`You can feel ${his} ${slave.skin} belly growing larger with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the jiggling orb of ${his} belly a slap, eliciting a strained burp from the full slave and tons of motion from ${his} gut. ${He} looks up at you quizzically, unsure about what you will do next. You order ${him} to keep ${himself} filled with four liters of ${slave.inflationType} until you say otherwise, before helping ${his} hiccupping bulk onto the couch to recover. ${His} meal attempts to come back up on ${his} several times, but ${he} holds it down for fear of punishment should ${he} vomit. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else { + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give ${his} bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from ${his} gut. ${He} looks up at you quizzically, unsure about what you will do next. You order ${him} to keep ${himself} filled with two liters of ${slave.inflationType} until you say otherwise, before helping ${his} sloshing bulk onto the couch to recover. ${His} meal attempts to come back up on ${his} several times, but ${he} holds it down for fear of punishment should ${he} vomit. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } + } else if (slave.devotion <= 50) { + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open ${his} mouth wide for the hose. ${He} hesitates but eventually settles ${himself} onto your lap as you wrap your arms around ${his}`); + } else if (hasAnyLimbs(slave)) { + r.push(`You inform ${him} ${he}'ll be taking a seat on your lap, opening ${his} mouth wide for the hose, and drinking until you tell ${him} ${he} is full enough. ${He} hesitates for a moment, before demonstrating acceptance. You heft ${him} onto your lap, wrapping your arms around ${his}`); + } else { + r.push(`${He}'s mildly hesitant of being filled with `); + if (slave.inflation > 0) { + r.push(`more `); + } + r.push(`${slave.inflationType}, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping your arms around ${his}`); + } + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.inflation === 2) { + r.push(`sloshing, ${slave.inflationType}-filled`); + } else if (slave.belly >= 1500) { + r.push(belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.inflation === 1) { + r.push(`${slave.inflationType}-bloated`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + r.push(`belly. You `); + if (hasAnyArms(slave)) { + r.push(`hand ${him} the hose,`); + } else { + r.push(`place the hose in ${his} mouth,`); + } + r.push(`allowing ${him} to drink from it at ${his} own pace, as you keep a hand on the tap to control the flow. With everything in place, you place your free hand on ${his} gurgling stomach.`); + if (slave.inflation === 2) { + r.push(`You can feel ${his} ${slave.skin} belly growing taut with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the firm orb of ${his} belly a couple gentle pats, eliciting a small hiccup, that ${he} immediately apologizes for, from the overfilled slave and no motion at all from ${his} gut. ${He} sighs contently, hoping you'll give ${him} more attention. You order ${him} to keep ${himself} filled with two gallons of ${slave.inflationType} until you say otherwise, before helping ${his} heavy body onto the couch to recover. ${His} meal attempts to come back up on ${his} several times, but ${he} dutifully holds it down. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else if (slave.inflation === 1) { + r.push(`You can feel ${his} ${slave.skin} belly growing larger with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the jiggling orb of ${his} belly a couple pats, eliciting a small hiccup, that ${he} immediately apologizes for, from the full slave and tons of motion from ${his} gut. ${He} sighs contently, hoping you'll give ${him} more attention. You order ${him} to keep ${himself} filled with four liters of ${slave.inflationType} until you say otherwise, before helping ${his} heavy body onto the couch to recover. ${His} meal attempts to come back up on ${him} several times, but ${he} dutifully holds it down. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else { + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give ${his} bloated belly a couple pats, eliciting a small hiccup, that ${he} immediately apologizes for, from the bloated slave and a little jiggle from ${his} gut. ${He} sighs contently, hoping you'll give ${him} more attention. You order ${him} to keep ${himself} filled with two liters of ${slave.inflationType} until you say otherwise, before helping ${his} sloshing body onto the couch to recover. ${His} meal attempts to come back up on ${his} several times, but ${he} dutifully holds it down. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } + } else { + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open ${his} mouth wide for the hose. ${He} eagerly settles ${himself} onto your lap as you wrap your arms around ${his}`); + } else if (hasAnyLimbs(slave)) { + r.push(`You inform ${him} ${he}'ll be taking a seat on your lap, opening ${his} mouth wide for the hose, and drinking until you tell ${him} ${he} is full enough. ${He} squirms with excitement as you heft ${him} onto your lap, wrapping your arms around ${his}`); + } else { + r.push(`${He}'s devotedly `); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`smiles`); + } + r.push(` at you as you heft ${him} onto your lap, wrapping your arms around ${his}`); + } + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.inflation === 2) { + r.push(`sloshing, ${slave.inflationType}-filled`); + } else if (slave.belly >= 1500) { + r.push(belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.inflation === 1) { + r.push(`${slave.inflationType}-bloated`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + r.push(`belly. You `); + if (hasAnyArms(slave)) { + r.push(`hand ${him} the hose,`); + } else { + r.push(`place the hose in ${his} mouth,`); + } + r.push(`allowing ${him} to drink from it at ${his} own pace, as you keep a hand on the tap to control the flow. With everything in place, you place your free hand on ${his} gurgling stomach.`); + if (slave.inflation === 2) { + r.push(`You can feel ${his} ${slave.skin} belly growing taut with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the firm orb of ${his} belly a couple gentle pats, eliciting a cute burp followed by ${his} tongue running over ${his} lips, from the overfilled slave and no motion at all from ${his} gut. ${He} sighs contently, before eagerly begging for more. You tell ${him} to keep ${himself} filled with two gallons of ${slave.inflationType} until you say otherwise, before helping ${his} heavy body onto the couch to recover. Apart from a few hiccups, ${he} spends ${his} time settling ${his} stomach and teasing ${his} near-bursting belly. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else if (slave.inflation === 1) { + r.push(`You can feel ${his} ${slave.skin} belly growing larger with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give the jiggling orb of ${his} belly a couple pats, eliciting a cute burp followed by ${his} tongue running over ${his} lips, from the full slave and tons of motion from ${his} gut. ${He} sighs contently, before eagerly begging for more. You tell ${him} to keep ${himself} filled with four liters of ${slave.inflationType} until you say otherwise, before helping ${his} heavy body onto the couch to recover. Apart from a few hiccups, ${he} spends ${his} time settling ${his} stomach and teasing ${his} overfilled belly. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } else { + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hand. Once you have given ${him} ${his} fill, you give ${his} bloated belly a couple pats, eliciting a cute burp followed by ${his} tongue running over ${his} lips, from the bloated slave and a little jiggle from ${his} gut. ${He} sighs contently, before eagerly begging for more. You tell ${him} to keep ${himself} filled with two liters of ${slave.inflationType} until you say otherwise, before helping ${his} sloshing body onto the couch to recover. Apart from a few hiccups, ${he} spends ${his} time settling ${his} stomach and teasing ${his} bloated belly. Only after a few minutes of rest is the groaning ${slave.slaveName} ready to be moved.`); + } + } + + if (pregDiscovery === 0) { + slave.inflation += 1; + if (slave.inflation === 3) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} over-stuffed belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles heavily as ${he} is helped from your office.`); + } + r.push(`Being filled so full <span class="health dec">surely had negative effects</span> on ${his} health.`); + healthDamage(slave, 10); + } else if (slave.inflation === 2) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} stuffed belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles heavily as ${he} is helped from your office.`); + } + } else if (slave.inflation === 1) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} distended belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles as ${he} is helped from your office.`); + } + } + SetBellySize(slave); + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fillUpFace.tw b/src/npc/interaction/fillUpFace.tw deleted file mode 100644 index 090b91f86f5e48c644978a59c2dce32a9c269e2c..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fillUpFace.tw +++ /dev/null @@ -1,229 +0,0 @@ -:: FillUpFace [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<set getSlave($AS).bellyAccessory = "none">> -<<set _pregDiscovery = 0>> -<<set _belly = bellyAdjective(getSlave($AS))>> -You attach a hose to $dairyName tap with the pipes set to pump <<= getSlave($AS).inflationType>> and affix a special nozzle to it, one with straps useful for anchoring it to resisting slaves, before calling $him over so you can feel $him up while you force-feed $him <<= getSlave($AS).inflationType>>. - -<<if getSlave($AS).inflation > 1 && getSlave($AS).preg > 1>> - $He looks uneasy at the prospect of taking in that much, far more than could be considered normal. - <<set _pregDiscovery = 1>> -<<else>> - <<if (getSlave($AS).fetish == "submissive") && (getSlave($AS).devotion >= -20)>> - $He blushes at the thought of being forcibly fed. - <<elseif (getSlave($AS).fetish == "cumslut") && (getSlave($AS).devotion >= -20) && (getSlave($AS).inflationType == "cum")>> - $He's pleased at the idea of turning into a cum balloon. - <</if>> - <<if (getSlave($AS).behavioralFlaw == "gluttonous") && (getSlave($AS).devotion >= -20) && ((getSlave($AS).inflationType == "cum") || (getSlave($AS).inflationType == "milk"))>> - $He's thrilled that you are going to give $him such a filling meal. - <<elseif (getSlave($AS).behavioralFlaw == "anorexic") && (getSlave($AS).devotion >= -20) && ((getSlave($AS).inflationType == "cum") || (getSlave($AS).inflationType == "milk"))>> - $He's hesitant about whether or not you are trying to make $him gain weight. - <</if>> -<</if>> - -<<if _pregDiscovery == 1>> - Not wanting to risk such a mess, you send $him for a medical examination. While most of the tests come back normal, one in particular catches your eye; @@.lime;$He is pregnant<<if getSlave($AS).preg > getSlave($AS).pregData.normalBirth/4>> and surprisingly far along<</if>>.@@ $He should be able to still handle at least two liters of <<= getSlave($AS).inflationType>>, however. - <<run deflate(getSlave($AS))>> - <<set getSlave($AS).pregKnown = 1>> -<<elseif getSlave($AS).fetish == "mindbroken">> - <<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open $his mouth wide for the hose, but $he remains still and unresponsive. Talking to a broken mind is pointless. - <</if>> - You reach out and wrap your arms around $his - <<if getSlave($AS).weight > 190>> - immensely soft - <<elseif getSlave($AS).belly >= 150000>> - _belly - <<elseif getSlave($AS).weight > 160>> - massive soft - <<elseif getSlave($AS).weight > 130>> - giant soft - <<elseif getSlave($AS).inflation == 2>> - sloshing, <<print getSlave($AS).inflationType>>-filled - <<elseif getSlave($AS).belly >= 1500>> - _belly - <<elseif getSlave($AS).weight > 95>> - huge soft - <<elseif getSlave($AS).inflation == 1>> - <<print getSlave($AS).inflationType>>-bloated - <<elseif getSlave($AS).weight > 30>> - big soft - <<elseif getSlave($AS).weight > 10>> - soft - <<elseif getSlave($AS).muscles > 95>> - chiseled - <<elseif getSlave($AS).muscles > 30>> - muscular - <<elseif getSlave($AS).muscles > 5>> - firm, ripped - <<else>> - firm, flat - <</if>> - belly, pulling $him into your lap. You force the hose down $his throat, strapping it to $his head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if getSlave($AS).inflation == 2>>You can feel $his <<= getSlave($AS).skin>> belly growing taut with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a large belch from the broken slave and no motion at all from $his gut. You order $him to keep $himself filled with two gallons of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<elseif getSlave($AS).inflation == 1>>You can feel $his <<= getSlave($AS).skin>> belly growing larger with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the broken slave and tons of motion from $his gut. You order $him to keep $himself filled with four liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<else>>You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from $his gut. You order $him to keep $himself filled with two liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping <<= getSlave($AS).slaveName>> ready to be moved<</if>>. -<<elseif getSlave($AS).devotion < -20>> - <<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open $his mouth wide for the hose. Opposed to the thought of being filled <<if getSlave($AS).inflation > 0>>more <</if>>with <<= getSlave($AS).inflationType>>, $he tries to <<if canWalk(getSlave($AS))>>step back<<else>>crawl away<</if>>, but you catch $him and pull $him into your lap, wrapping your arms around $his - <<elseif (hasAnyLimbs(getSlave($AS)))>> - You inform $him $he'll be taking a seat on your lap, opening $his mouth wide for the hose, and drinking until you tell $him $he is full enough. $He's opposed to the thought of being filled with<<if getSlave($AS).inflation > 0>> more<</if>> <<= getSlave($AS).inflationType>>, but since $he is immobile, $he can't escape. You heft $him onto your lap, wrapping your arms around $his - <<else>> - $He's opposed to the thought of being filled with <<if getSlave($AS).inflation > 0>>more <</if>><<= getSlave($AS).inflationType>>, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping your arms around $him - <</if>> - <<if getSlave($AS).weight > 190>> - immensely soft - <<elseif getSlave($AS).belly >= 150000>> - _belly - <<elseif getSlave($AS).weight > 160>> - massive soft - <<elseif getSlave($AS).weight > 130>> - giant soft - <<elseif getSlave($AS).inflation == 2>> - sloshing, <<print getSlave($AS).inflationType>>-filled - <<elseif getSlave($AS).belly >= 1500>> - _belly - <<elseif getSlave($AS).weight > 95>> - huge soft - <<elseif getSlave($AS).inflation == 1>> - <<print getSlave($AS).inflationType>>-bloated - <<elseif getSlave($AS).weight > 30>> - big soft - <<elseif getSlave($AS).weight > 10>> - soft - <<elseif getSlave($AS).muscles > 95>> - chiseled - <<elseif getSlave($AS).muscles > 30>> - muscular - <<elseif getSlave($AS).muscles > 5>> - firm, ripped - <<else>> - firm, flat - <</if>> - belly. You force the hose down $his throat, strapping it to $his head to prevent $him from removing it, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if getSlave($AS).inflation == 2>>You can feel $his <<= getSlave($AS).skin>> belly growing taut with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting gagging from the overfilled slave and no motion at all from $his gut. $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two gallons of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<elseif getSlave($AS).inflation == 1>>You can feel $his <<= getSlave($AS).skin>> belly growing larger with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the full slave and tons of motion from $his gut. $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with four liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<else>>You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from $his gut. $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping <<= getSlave($AS).slaveName>> ready to be moved<</if>>. -<<elseif getSlave($AS).devotion <= 20>> - <<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open $his mouth wide for the hose. $He complies without comment and settles $himself onto your lap, shuddering slightly as you wrap your arms around $his - <<elseif (hasAnyLimbs(getSlave($AS)))>> - You inform $him $he'll be taking a seat on your lap, opening $his mouth wide for the hose, and drinking until you tell $him $he is full enough. $He complies without comment. You heft $him onto your lap, wrapping your arms around $his - <<else>> - $He's hesitant of being filled with <<if getSlave($AS).inflation > 0>>more <</if>><<= getSlave($AS).inflationType>>, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping your arms around $his - <</if>> - <<if getSlave($AS).weight > 190>> - immensely soft - <<elseif getSlave($AS).belly >= 150000>> - _belly - <<elseif getSlave($AS).weight > 160>> - massive soft - <<elseif getSlave($AS).weight > 130>> - giant soft - <<elseif getSlave($AS).inflation == 2>> - sloshing, <<print getSlave($AS).inflationType>>-filled - <<elseif getSlave($AS).belly >= 1500>> - _belly - <<elseif getSlave($AS).weight > 95>> - huge soft - <<elseif getSlave($AS).inflation == 1>> - <<print getSlave($AS).inflationType>>-bloated - <<elseif getSlave($AS).weight > 30>> - big soft - <<elseif getSlave($AS).weight > 10>> - soft - <<elseif getSlave($AS).muscles > 95>> - chiseled - <<elseif getSlave($AS).muscles > 30>> - muscular - <<elseif getSlave($AS).muscles > 5>> - firm, ripped - <<else>> - firm, flat - <</if>> - belly. You insert the hose down $his throat, choosing to hold it place instead of strapping it to $him, and turn the flow to low. With everything in place, you place your free hand on $his gurgling stomach.<<if getSlave($AS).inflation == 2>>You can feel $his <<= getSlave($AS).skin>> belly growing taut with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two gallons of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<elseif getSlave($AS).inflation == 1>>You can feel $his <<= getSlave($AS).skin>> belly growing larger with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a strained burp from the full slave and tons of motion from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with four liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<else>>You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his sloshing bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<</if>>. -<<elseif getSlave($AS).devotion <= 50>> - <<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open $his mouth wide for the hose. $He hesitates but eventually settles $himself onto your lap as you wrap your arms around $his - <<elseif (hasAnyLimbs(getSlave($AS)))>> - You inform $him $he'll be taking a seat on your lap, opening $his mouth wide for the hose, and drinking until you tell $him $he is full enough. $He hesitates for a moment, before demonstrating acceptance. You heft $him onto your lap, wrapping your arms around $his - <<else>> - $He's mildly hesitant of being filled with <<if getSlave($AS).inflation > 0>>more <</if>><<= getSlave($AS).inflationType>>, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping your arms around $his - <</if>> - <<if getSlave($AS).weight > 190>> - immensely soft - <<elseif getSlave($AS).belly >= 150000>> - _belly - <<elseif getSlave($AS).weight > 160>> - massive soft - <<elseif getSlave($AS).weight > 130>> - giant soft - <<elseif getSlave($AS).inflation == 2>> - sloshing, <<print getSlave($AS).inflationType>>-filled - <<elseif getSlave($AS).belly >= 1500>> - _belly - <<elseif getSlave($AS).weight > 95>> - huge soft - <<elseif getSlave($AS).inflation == 1>> - <<print getSlave($AS).inflationType>>-bloated - <<elseif getSlave($AS).weight > 30>> - big soft - <<elseif getSlave($AS).weight > 10>> - soft - <<elseif getSlave($AS).muscles > 95>> - chiseled - <<elseif getSlave($AS).muscles > 30>> - muscular - <<elseif getSlave($AS).muscles > 5>> - firm, ripped - <<else>> - firm, flat - <</if>> - belly. You <<if hasAnyArms(getSlave($AS))>>hand $him the hose<<else>>place the hose in $his mouth<</if>>, allowing $him to drink from it at $his own pace, as you keep a hand on the tap to control the flow. With everything in place, you place your free hand on $his gurgling stomach.<<if getSlave($AS).inflation == 2>>You can feel $his <<= getSlave($AS).skin>> belly growing taut with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a couple gentle pats, eliciting a small hiccup, that $he immediately apologizes for, from the overfilled slave and no motion at all from $his gut. $He sighs contently, hoping you'll give $him more attention. You order $him to keep $himself filled with two gallons of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his heavy body onto the couch to recover. $His meal attempts to come back up on $his several times, but $he dutifully holds it down. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<elseif getSlave($AS).inflation == 1>>You can feel $his <<= getSlave($AS).skin>> belly growing larger with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a couple pats, eliciting a small hiccup, that $he immediately apologizes for, from the full slave and tons of motion from $his gut. $He sighs contently, hoping you'll give $him more attention. You order $him to keep $himself filled with four liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his heavy body onto the couch to recover. $His meal attempts to come back up on $him several times, but $he dutifully holds it down. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<else>>You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a couple pats, eliciting a small hiccup, that $he immediately apologizes for, from the bloated slave and a little jiggle from $his gut. $He sighs contently, hoping you'll give $him more attention. You order $him to keep $himself filled with two liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his sloshing body onto the couch to recover. $His meal attempts to come back up on $his several times, but $he dutifully holds it down. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<</if>>. -<<else>> - <<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open $his mouth wide for the hose. $He eagerly settles $himself onto your lap as you wrap your arms around $his - <<elseif (hasAnyLimbs(getSlave($AS)))>> - You inform $him $he'll be taking a seat on your lap, opening $his mouth wide for the hose, and drinking until you tell $him $he is full enough. $He squirms with excitement as you heft $him onto your lap, wrapping your arms around $his - <<else>> - $He's devotedly <<if canSee(getSlave($AS))>>looks<<else>>smiles<</if>> at you as you heft $him onto your lap, wrapping your arms around $his - <</if>> - <<if getSlave($AS).weight > 190>> - immensely soft - <<elseif getSlave($AS).belly >= 150000>> - _belly - <<elseif getSlave($AS).weight > 160>> - massive soft - <<elseif getSlave($AS).weight > 130>> - giant soft - <<elseif getSlave($AS).inflation == 2>> - sloshing, <<print getSlave($AS).inflationType>>-filled - <<elseif getSlave($AS).belly >= 1500>> - _belly - <<elseif getSlave($AS).weight > 95>> - huge soft - <<elseif getSlave($AS).inflation == 1>> - <<print getSlave($AS).inflationType>>-bloated - <<elseif getSlave($AS).weight > 30>> - big soft - <<elseif getSlave($AS).weight > 10>> - soft - <<elseif getSlave($AS).muscles > 95>> - chiseled - <<elseif getSlave($AS).muscles > 30>> - muscular - <<elseif getSlave($AS).muscles > 5>> - firm, ripped - <<else>> - firm, flat - <</if>> - belly. You <<if hasAnyArms(getSlave($AS))>>hand $him the hose<<else>>place the hose in $his mouth<</if>>, allowing $him to drink from it at $his own pace, as you keep a hand on the tap to control the flow. With everything in place, you place your free hand on $his gurgling stomach.<<if getSlave($AS).inflation == 2>>You can feel $his <<= getSlave($AS).skin>> belly growing taut with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a couple gentle pats, eliciting a cute burp followed by $his tongue running over $his lips, from the overfilled slave and no motion at all from $his gut. $He sighs contently, before eagerly begging for more. You tell $him to keep $himself filled with two gallons of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his heavy body onto the couch to recover. Apart from a few hiccups, $he spends $his time settling $his stomach and teasing $his near-bursting belly. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<elseif getSlave($AS).inflation == 1>>You can feel $his <<= getSlave($AS).skin>> belly growing larger with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a couple pats, eliciting a cute burp followed by $his tongue running over $his lips, from the full slave and tons of motion from $his gut. $He sighs contently, before eagerly begging for more. You tell $him to keep $himself filled with four liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his heavy body onto the couch to recover. Apart from a few hiccups, $he spends $his time settling $his stomach and teasing $his overfilled belly. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<<else>>You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a couple pats, eliciting a cute burp followed by $his tongue running over $his lips, from the bloated slave and a little jiggle from $his gut. $He sighs contently, before eagerly begging for more. You tell $him to keep $himself filled with two liters of <<= getSlave($AS).inflationType>> until you say otherwise, before helping $his sloshing body onto the couch to recover. Apart from a few hiccups, $he spends $his time settling $his stomach and teasing $his bloated belly. Only after a few minutes of rest is the groaning <<= getSlave($AS).slaveName>> ready to be moved<</if>>. -<</if>> - -<<if _pregDiscovery == 0>> - <<set getSlave($AS).inflation += 1>> - <<if getSlave($AS).inflation == 3>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>>$He gingerly leaves your office, massaging $his over-stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. Being filled so full @@.health.dec;surely had negative effects@@ on $his health. - <<run healthDamage(getSlave($AS), 10)>> - <<elseif getSlave($AS).inflation == 2>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>>$He gingerly leaves your office, massaging $his stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. - <<elseif getSlave($AS).inflation == 1>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>>$He gingerly leaves your office, massaging $his distended belly as $he goes<<else>>$His belly wobbles as $he is helped from your office<</if>>. - <</if>> - <<run SetBellySize(getSlave($AS))>> -<</if>> diff --git a/src/npc/interaction/fondleBoobs.js b/src/npc/interaction/fondleBoobs.js new file mode 100644 index 0000000000000000000000000000000000000000..cb63b1051d66269c5d878e0af6820a1c635ceab3 --- /dev/null +++ b/src/npc/interaction/fondleBoobs.js @@ -0,0 +1,685 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fondleBoobs = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, hers, him, himself, woman, girl + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + r.push(`You call ${him} over so you can fondle ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits.`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits.`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits.`); + } else if (slave.boobs >= 1000) { + r.push(`huge tits.`); + } else if (slave.boobsImplant > 250) { + r.push(`fake tits.`); + } else if (slave.boobs >= 650) { + r.push(`big tits.`); + } else if (slave.boobs >= 300) { + r.push(`small tits.`); + } else { + r.push(`flat tits.`); + } + + if (slave.nipples === "huge") { + r.push(`${His} nipples are so large they give ${his} breasts an unavoidably lewd appeal as they jut outward.`); + } else if (slave.nipples === "puffy") { + r.push(`${His} puffy nipples beg to be sucked.`); + } else if (slave.nipples === "flat") { + r.push(`${His} nipples form lewd little circles amid ${his} areolae.`); + } else if (slave.nipples === "partially inverted" && slave.nipplesPiercing === 0) { + r.push(`${His} partially inverted nipples should protrude at the slightest stimulation.`); + } else if (slave.nipples === "inverted" && slave.nipplesPiercing === 0) { + r.push(`${His} inverted nipples form lewd little creases across ${his} areolae.`); + } else if (slave.nipples === "fuckable") { + if (slave.lactation) { + r.push(`${His} nipplecunts are leaking milk and begging to be penetrated.`); + } else { + r.push(`${His} nipplecunts form lewd little slits across ${his} areolae.`); + } + } else { + r.push(`${His} erect nipples point enticingly outwards.`); + } + + if (slave.boobsTat === "tribal patterns") { + r.push(`The tattoos on ${his} breasts certainly draw attention to ${his} nipples.`); + } + + if (slave.nipplesPiercing > 1 && !hasAnyLegs(slave)) { + r.push(`You play with the chain between ${his} nipples.`); + } else if (slave.nipplesPiercing > 1) { + r.push(`You pull ${him} over by the chain between ${his} nipples.`); + } else if (slave.nipplesPiercing === 1) { + r.push(`${His} nipple piercings glint enticingly.`); + } + + if (isAmputee(slave)) { + r.push(`${His} limbless`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`torso is a sight to behold. You place your hands on ${his} breasts and you gently massage`); + if (slave.boobs >= 20000) { + r.push(`${his} colossal tits, doing your best to not miss`); + if (V.showInches === 2) { + r.push(`an inch`); + } else { + r.push(`a centimeter`); + } + r.push(`of their immense size,`); + } else if (slave.boobs >= 10000) { + r.push(`${his} massive tits, your hands sinking deep into their soft flesh,`); + } else if (slave.boobs >= 5000) { + r.push(`${his} monster tits, bouncing their weighty mass in your hands,`); + } else if (slave.boobs > 1000) { + r.push(`${his} huge tits, bouncing them up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`rubbing ${his} ${slave.nipples} nipples with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`${his} large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`${his} cute breasts, cupping them and gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`${his} flat breasts, gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and pulling them gently towards you. Moving your head close to ${his} breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue.`); + if (slave.nipples !== "fuckable") { + r.push(`Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions.`); + } else { + r.push(`Then you alternate, gently probing the depths of the other nipple. You dig deep into both ${his} breasts, teasing what was once the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your fingers before vigorously fingering ${his} tits.`); + } + r.push(`${He} starts to pant heavily while ${he} lies helpless at your playing with ${his} breasts and ${he} cannot do anything against the relentless fondling. ${He} wriggles and squirms at the continued stimulation, getting aroused at the expert way you move around ${his} tits and nipples.`); + } else if (slave.fetish === "boobs" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} comes over excitedly at the thought of ${his} breasts getting touched. ${He} stands in between you and your desk, already presenting ${his} breasts for you. You place your hands on ${his} breasts and you gently massage`); + if (slave.boobs >= 20000) { + r.push(`${his} colossal tits, before sinking your body into their immense softness,`); + } else if (slave.boobs >= 10000) { + r.push(`${his} massive tits, before sinking your arms into their soft mass,`); + } else if (slave.boobs >= 5000) { + r.push(`${his} monster tits, bouncing their weighty mass in your hands,`); + } else if (slave.boobs > 1000) { + r.push(`${his} huge tits, bouncing them up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`rubbing ${his} ${slave.nipples} nipples with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`${his} large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`${his} cute breasts, cupping them and gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`${his} flat breasts gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} engorged ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} hard, erect nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and pulling them gently towards you. Moving your head close to ${his} breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue.`); + if (slave.nipples !== "fuckable") { + r.push(`Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions. ${He} moans at your playing with ${his} breasts, ${He} rubs ${himself} while you do, getting intensely aroused at the expert way you move around ${his} tits and nipples. You continue, rolling ${his} ${slave.nipples} nipples between your fingers and thumbs while ${he} gets increasingly frenzied at the continued stimulation. When it seems like ${he}'s close, you give them a hard pull, sending ${him} gasping over the edge of ecstasy.`); + } else { + r.push(`Then you alternate, gently probing the depths of the other nipple. You dig deep into both ${his} breasts, teasing what was once the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your fingers before vigorously fingering ${his} tits. ${He} moans at your playing with ${his} breasts, ${He} rubs ${himself} while you do, getting intensely aroused at the expert way you move around ${his} tits and nipples. You continue, adding more fingers into ${his} ${slave.nipples} nipples while ${he} gets increasingly frenzied at the continued stimulation. When it seems like ${he}'s close, you cram your whole fist in, sending ${him} gasping over the edge of ecstasy.`); + } + } else if (slave.devotion > 50 && slave.fetish === "dom" && slave.fetishKnown === 1 && slave.fetishStrength > 60) { + r.push(`${He} eagerly comes over to you, puffing ${his} chest out at you. When you place your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits,`); + } else if (slave.boobs >= 1000) { + r.push(`huge tits,`); + } else if (slave.boobsImplant > 250) { + r.push(`fake tits,`); + } else if (slave.boobs >= 650) { + r.push(`big tits,`); + } else if (slave.boobs >= 300) { + r.push(`cute breasts,`); + } else { + r.push(`flat breasts,`); + } + if (hasAnyArms(slave)) { + r.push(`${he} places ${his} hand`); + if (hasBothArms(slave)) { + r.push(`s`); + } + r.push(`on your`); + if (V.PC.boobs >= 300) { + r.push(`bosom`); + } else if (V.PC.title === 0) { + r.push(`flat chest`); + } else { + r.push(`manly chest`); + } + r.push(`in turn, ${his} tendency towards sexual dominance encouraging ${him} to compete with you in fondling each other.`); + } + r.push(`You both alternate between taking your mouth to ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples and ${hers} to yours, gently nuzzling and nibbling while simultaneously fondling each other all the while. Both of you continue to passionately lick, nibble, stroke and fondle one other until tiredly, ${he} slows down. When you eventually stop, ${he} looks up at you happily.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate excitement with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`face,`); + } + r.push(`since ${he} does not speak ${V.language} well enough to express ${himself}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate excitement with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`face.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} liked that.`); + } else { + r.push(Spoken(slave, `"That was fun, ${Master},"`)); + r.push(`${he} ${say}s cheerfully.`); + } + if (canSee(slave)) { + r.push(`${He} looks at you with ${his} ${App.Desc.eyesColor(slave)}, smiling.`); + } else { + r.push(`${He} smiles at you.`); + } + } else if (slave.fetish === "submissive" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} eagerly comes over to you, to stand between you and your desk. You lean over while ${he} submissively lies down upon it, face-up, with ${his} breasts pointed to the air. You place your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits, before sinking your body into their immense softness,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits, before sinking your arms into their soft mass,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits, bouncing their weighty mass in your hands,`); + } else if (slave.boobs > 1000) { + r.push(`huge tits, bouncing them up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`rubbing ${his} ${slave.nipples} nipples with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts, cupping them and gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`flat breasts, gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} engorged ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} hard, erect nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and pulling them gently towards you. Moving your head close to ${his} breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue.`); + if (slave.nipples !== "fuckable") { + r.push(`Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions.`); + } else { + r.push(`Then you alternate, gently probing the depths of the other nipple. You dig deep into both ${his} breasts, teasing what was once the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your fingers before vigorously fingering ${his} tits.`); + } + r.push(`${He} moans passionately at the continued stimulation of ${his} breasts and nipples. When you finally stop, ${he} reaches up to your face with ${his} hand and lovingly strokes it, a blissful look on ${his} ${slave.skin} face.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`face,`); + } + r.push(`since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`face.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(Spoken(slave, `"Please don't stop, ${Master},"`)); + r.push(`${he} ${say}s quietly.`); + } + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you longingly, eager for more.`); + } else if (slave.fetish === "masochist" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} hurriedly comes over to you, to stand between you and your desk. You lean over while ${he} lies down upon it, face-up, with ${his} breasts pointed to the air. ${He} gasps as you slap your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits, before sinking your body into their immense softness before pulling back and struggling to grasp both nipples at once,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits, using your entire arms to roughly jiggle them before pulling back to maul ${his} nipples,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits, bouncing their weighty mass roughly with all your might before sliding your hands to ${his} nipples,`); + } else if (slave.boobs > 1000) { + r.push(`huge tits, bouncing them roughly up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`shoving your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`flicking ${his} nipples hard with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts, cupping them and roughly`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`flat breasts, roughly`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} engorged ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} hard, erect nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and firmly pulling them in all directions.`); + if (slave.nipples !== "fuckable") { + r.push(`Moving your head close to ${his} breasts, you put your lips on a nipple and close your lips firmly around it to pull strongly on it. Then you alternate, bite hard with your teeth on the other. You firmly squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you push ${his} nipples with your thumbs, flicking them hard in different directions.`); + } else { + r.push(`Moving your head close to ${his} breasts, you put your lips over a nipple and close your lips firmly over the slit to suck strongly on it. Then you alternate, bite hard with your teeth on the other. You firmly push the tips of your fingers down into the depths of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples to tweak what was once their tip.`); + } + r.push(`${He} moans passionately at the continued punishment of ${his} breasts and nipples. Your rough play leaves red marks on ${his} breasts and nipples and ${he} becomes even more aroused. When you finally stop ${he} rubs the marks on ${his} breasts with ${his} hands, an ecstatic look on ${his} ${slave.skin} face.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate pleasure with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`face,`); + } + r.push(`since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate ${his} pleasure with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`face.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves it.`); + } else { + r.push(Spoken(slave, `"Please punish me more, ${Master},"`)); + r.push(`${he} ${say}s quietly.`); + } + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you longingly, hungry for more.`); + } else if (slave.devotion > 50) { + r.push(`${He} devotedly comes over to you, to stand between you and your desk. ${His} doting`); + r.push(App.Desc.eyesColor(slave)); + r.push(`looking in yours. You place your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits, before sinking your body into their immense softness,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits, before sinking into your arms around their soft mass,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits, bouncing their weighty mass in your hands,`); + } else if (slave.boobs > 1000) { + r.push(`huge tits, bouncing them up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`rubbing ${his} ${slave.nipples} nipples with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts, cupping them and gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`flat breasts, gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} engorged ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} hard, erect nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and pulling them gently towards you.`); + if (slave.nipples !== "fuckable") { + r.push(`Moving your head close to ${his} breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions.`); + } else { + r.push(`Moving your head close to ${his} breasts, you nuzzle on a nipple slit with your lips and even lick it delicately with your tongue. Then you alternate, gently probing the depths of the other nipple. You dig deep into both ${his} breasts, teasing what was once the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your fingers before vigorously fingering ${his} tits.`); + } + r.push(`${He} moans passionately at the continued stimulation of ${his} breasts and nipples. When you finally stop, ${he} reaches up to your face with ${his} hand and lovingly strokes it, a blissful look on ${his} ${slave.skin} face.`); + if (slave.accent >= 3) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)},`); + } else { + r.push(`face,`); + } + r.push(`since ${he}'s not confident in ${his} ability to express it in ${V.language}.`); + } else if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate devotion with ${his}`); + if (canSee(slave)) { + r.push(`${App.Desc.eyesColor(slave)}.`); + } else { + r.push(`face.`); + } + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push(Spoken(slave, `"I love you, ${Master},"`)); + r.push(`${he} ${say}s euphorically.`); + } + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`gazes`); + } + r.push(`at you longingly, eager for more.`); + } else if (slave.devotion > 20) { + r.push(`${He} willingly gives ${himself} up to you. You place your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits, before sinking your body into their immense softness,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits, before sinking into your arms around their soft mass,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits, bouncing their weighty mass in your hands,`); + } else if (slave.boobs > 1000) { + r.push(`huge tits, bouncing them up and down in your hands, while simultaneously`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`rubbing ${his} ${slave.nipples} nipples with your fingers and thumbs,`); + } + } else if (slave.boobs > 650) { + r.push(`large tits, jiggling them enticingly with your hands,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts, cupping them and gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} nipples between your fingers and thumbs,`); + } + } else { + r.push(`flat breasts, gently`); + if (slave.nipples === "fuckable") { + r.push(`slipping your fingers in and out of ${his} engorged ${slave.nipples} nipples,`); + } else { + r.push(`playing with ${his} hard, erect nipples between your fingers and thumbs,`); + } + } + r.push(`teasing them and pulling them towards you.`); + if (slave.nipples !== "fuckable") { + r.push(`Moving your head close to ${his} breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions.`); + } else { + r.push(`Moving your head close to ${his} breasts, you nuzzle on a nipple slit with your lips and even lick it delicately with your tongue. Then you alternate, gently probing the depths of the other nipple. You dig deep into both ${his} breasts, teasing what was once the tips of ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`nipples with your fingers before vigorously fingering ${his} tits.`); + } + r.push(`You sense considerable uneasiness in the`); + if (slave.physicalAge > 30) { + r.push(`${woman};`); + } else { + r.push(`${girl};`); + } + r.push(`${he}'s doing ${his} duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of ${his} mind by your hands on ${his} breasts. ${He} gradually loses ${himself} in the feeling of your gentle hands. When you finally stop, ${his}`); + if (canSee(slave)) { + r.push(App.Desc.eyesColor(slave)); + r.push(`gaze`); + } else { + r.push(`face gazes`); + } + r.push(`puzzlingly at you. Even though ${he} has accepted life as a sex slave, ${he} looks as though ${he} is unsure of what to make of this.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${His}`); + if (canSee(slave)) { + r.push(`eyes beg`); + } else { + r.push(`expression begs`); + } + r.push(`for an answer: is that it?`); + } else if (!canTalk(slave)) { + r.push(`${He} signs hesitantly, asking if that's it.`); + } else { + r.push(`${He} asks hesitantly, "I-is that it, ${Master}?"`); + } + } else if (slave.devotion >= -20 && slave.trust < -20) { + r.push(`${He} shakes at your touch fearfully. As you softly place your hands on ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits,`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits,`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits,`); + } else if (slave.boobs >= 1000) { + r.push(`huge tits,`); + } else if (slave.boobs > 650) { + r.push(`large tits,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts,`); + } else { + r.push(`flat breasts,`); + } + r.push(`${his} eagerness to avoid punishment leads ${him} to stiffen as you start to massage them. ${He} finally starts to relax as you continue to massage ${his} breasts with your`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`hands,`); + if (slave.nipples !== "fuckable") { + r.push(`playing with ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of ${his} nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions. When you firmly pull ${his} nipples`); + if (slave.lactation > 0) { + r.push(`milk streams out of them and`); + } + r.push(`${he} lets out a gasp.`); + } else { + r.push(`playing with ${his}`); + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they become sodden with fluid around your fingers. You plunge the depths of ${his} nipple cunts and vigorously work the unusual orifice. When you finally withdraw from ${his} nipples,`); + if (slave.lactation > 0) { + r.push(`a stream of pent-up milk flows out after you and`); + } + r.push(`${he} lets out a gasp.`); + } + r.push(`${His} body softens as`); + if (canSee(slave)) { + r.push(`${his} ${App.Desc.eyesColor(slave)} dart up to your face, before visibly catching ${himself} with a reminder`); + } else { + r.push(`${he} remembers`); + } + r.push(`that ${he}'s a slave and you're ${his} owner. When you finally stop, ${he} shivers but says nothing, uneasy at what you are going to do next.`); + } else if (slave.trust < -50) { + r.push(`${He} is nearly frozen with fear, and does not resist as you start to massage ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits.`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits.`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits.`); + } else if (slave.boobs >= 1000) { + r.push(`huge tits.`); + } else if (slave.boobs > 650) { + r.push(`large tits.`); + } else if (slave.boobs > 300) { + r.push(`cute breasts.`); + } else { + r.push(`flat breasts.`); + } + r.push(`In fact, ${he} barely reacts at all. ${He}`); + if (canSee(slave)) { + r.push(`stares`); + } else { + r.push(`glowers`); + } + r.push(`at you, but ${he} remains motionless. ${He} is so filled with terror that ${he} remains stiff even as it becomes clear to ${him} you're not going to hurt ${him}. ${He} trembles as you continue to massage ${his} breasts with your`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`hands, playing with ${his}`); + if (slave.nipples !== "fuckable") { + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of ${his} nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions. When you firmly pull ${his} nipples,`); + if (slave.lactation > 0) { + r.push(`milk streams out of them and`); + } + r.push(`${he} gasps audibly, unable to contain ${himself} at your relentless assault upon ${his} areola. When you put your mouth on ${his} breasts to nibble on ${his} nipples, ${he} bites ${his} lip, desperately trying to hide ${his} arousal at ${his} stimulated nipples.`); + } else { + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they tighten around your fingers. You push deeper in, rubbing their sides gently before forcing the entirety of your hands into ${his} breasts. When you cease fisting ${his} nipples and pull out${(slave.lactation > 0) ? `alongside a stream of backed up milk` : ``}, ${he} gasps audibly, unable to contain ${himself} at your relentless assault upon ${his} boobs. When you put your mouth on ${his} breasts to lick ${his} slit, ${he} bites ${his} lip, desperately trying to hide ${his} arousal at ${his} stimulated nipples.`); + } + r.push(`When you finally stop, ${he} shakes uncontrollably but says nothing, apprehensive at what you are going to do next.`); + } else { + r.push(`${He} tries to refuse you, so you push ${him} down on top of your desk and squeeze ${his} ${slave.skin} breasts in your`); + if (V.PC.title === 1) { + r.push(`manly`); + } else { + r.push(`feminine`); + } + r.push(`hands. ${He} tries to push you off ${his}`); + if (slave.boobs >= 20000) { + r.push(`colossal tits.`); + } else if (slave.boobs >= 10000) { + r.push(`massive tits.`); + } else if (slave.boobs >= 5000) { + r.push(`monster tits.`); + } else if (slave.boobs >= 1000) { + r.push(`huge tits,`); + } else if (slave.boobs > 650) { + r.push(`large tits,`); + } else if (slave.boobs > 300) { + r.push(`cute breasts,`); + } else { + r.push(`flat breasts,`); + } + r.push(`but you continue to massage them, playing with ${his}`); + if (slave.nipples !== "fuckable") { + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of ${his} nipples with your thumbs and fingers and tweak them in your fingertips, then you dab ${his} nipples with your thumbs, flicking them in different directions. When you firmly pull ${his} nipples,`); + if (slave.lactation > 0) { + r.push(`milk streams out of them and`); + } + r.push(`${he} gasps audibly, unable to contain ${himself} at your relentless assault upon ${his} areola. When you put your mouth on ${his} breasts to nibble on ${his} nipples, ${he} bites ${his} lip, desperately trying to hide ${his} arousal at ${his} stimulated nipples.`); + } else { + if (slave.lactation > 0) { + r.push(`milky`); + } + r.push(`${slave.nipples} nipples so that they tighten around your fingers. You push deeper in, rubbing their sides gently before forcing the entirety of your hands into ${his} breasts. When you cease fisting ${his} nipples and pull out${(slave.lactation > 0) ? `alongside a stream of backed up milk` : ``}, ${he} gasps audibly, unable to contain ${himself} at your relentless assault upon ${his} boobs. When you put your mouth on ${his} breasts to lick ${his} slit, ${he} bites ${his} lip, desperately trying to hide ${his} arousal at ${his} stimulated nipples.`); + } + r.push(`When you finally stop, ${he} shakes uncontrollably, apprehensive at what you are going to do next.`); + } + + if (slave.lactation > 0) { + slave.lactationDuration = 2; + slave.boobs -= slave.boobsMilk; + slave.boobsMilk = 0; + } else { + r.push(induceLactation(slave)); + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fondleBoobs.tw b/src/npc/interaction/fondleBoobs.tw deleted file mode 100644 index 5b8512a2cfcaabda5a81e19c30c1b3b069b38293..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fondleBoobs.tw +++ /dev/null @@ -1,440 +0,0 @@ -:: FondleBoobs [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You call $him over so you can fondle $his -<<if (getSlave($AS).boobs >= 20000)>> - colossal tits. -<<elseif (getSlave($AS).boobs >= 10000)>> - massive tits. -<<elseif (getSlave($AS).boobs >= 5000)>> - monster tits. -<<elseif (getSlave($AS).boobs >= 1000)>> - huge tits. -<<elseif (getSlave($AS).boobsImplant > 250)>> - fake tits. -<<elseif (getSlave($AS).boobs >= 650)>> - big tits. -<<elseif (getSlave($AS).boobs >= 300)>> - small tits. -<<else>> - flat tits. -<</if>> - -<<if (getSlave($AS).nipples == "huge")>> - $His nipples are so large they give $his breasts an unavoidably lewd appeal as they jut outward. -<<elseif (getSlave($AS).nipples == "puffy")>> - $His puffy nipples beg to be sucked. -<<elseif (getSlave($AS).nipples == "flat")>> - $His nipples form lewd little circles amid $his areolae. -<<elseif (getSlave($AS).nipples == "partially inverted") && (getSlave($AS).nipplesPiercing == 0)>> - $His partially inverted nipples should protrude at the slightest stimulation. -<<elseif (getSlave($AS).nipples == "inverted") && (getSlave($AS).nipplesPiercing == 0)>> - $His inverted nipples form lewd little creases across $his areolae. -<<elseif getSlave($AS).nipples == "fuckable">> - <<if getSlave($AS).lactation>> - $His nipplecunts are leaking milk and begging to be penetrated. - <<else>> - $His nipplecunts form lewd little slits across $his areolae. - <</if>> -<<else>> - $His erect nipples point enticingly outwards. -<</if>> - -<<if (getSlave($AS).boobsTat == "tribal patterns")>> - The tattoos on $his breasts certainly draw attention to $his nipples. -<</if>> - -<<if (getSlave($AS).nipplesPiercing > 1) && !hasAnyLegs(getSlave($AS))>> - You play with the chain between $his nipples. -<<elseif (getSlave($AS).nipplesPiercing > 1)>> - You pull $him over by the chain between $his nipples. -<<elseif (getSlave($AS).nipplesPiercing == 1)>> - $His nipple piercings glint enticingly. -<</if>> - -<<if isAmputee(getSlave($AS))>> - $His limbless <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>>torso is a sight to behold. You place your hands on $his breasts and you gently massage - <<if (getSlave($AS).boobs >= 20000)>> - $his colossal tits, doing your best to not miss <<if $showInches == 2>>an inch<<else>>a centimeter<</if>> of their immense size, - <<elseif (getSlave($AS).boobs >= 10000)>> - $his massive tits, your hands sinking deep into their soft flesh, - <<elseif (getSlave($AS).boobs >= 5000)>> - $his monster tits, bouncing their weighty mass in your hands, - <<elseif (getSlave($AS).boobs > 1000)>> - $his huge tits, bouncing them up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - rubbing $his <<= getSlave($AS).nipples>> nipples with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - $his large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - $his cute breasts, cupping them and gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - $his flat breasts, gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and pulling them gently towards you. Moving your head close to $his breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. - <<if getSlave($AS).nipples != "fuckable">> - Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. - <<else>> - Then you alternate, gently probing the depths of the other nipple. You dig deep into both $his breasts, teasing what was once the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your fingers before vigorously fingering $his tits. - <</if>> - $He starts to pant heavily while $he lies helpless at your playing with $his breasts and $he cannot do anything against the relentless fondling. $He wriggles and squirms at the continued stimulation, getting aroused at the expert way you move around $his tits and nipples. -<<elseif (getSlave($AS).fetish == "boobs") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He comes over excitedly at the thought of $his breasts getting touched. $He stands in between you and your desk, already presenting $his breasts for you. You place your hands on $his breasts and you gently massage - <<if (getSlave($AS).boobs >= 20000)>> - $his colossal tits, before sinking your body into their immense softness, - <<elseif (getSlave($AS).boobs >= 10000)>> - $his massive tits, before sinking your arms into their soft mass, - <<elseif (getSlave($AS).boobs >= 5000)>> - $his monster tits, bouncing their weighty mass in your hands, - <<elseif (getSlave($AS).boobs > 1000)>> - $his huge tits, bouncing them up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - rubbing $his <<= getSlave($AS).nipples>> nipples with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - $his large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - $his cute breasts, cupping them and gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - $his flat breasts gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his engorged <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his hard, erect nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and pulling them gently towards you. Moving your head close to $his breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. - <<if getSlave($AS).nipples != "fuckable">> - Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. $He moans at your playing with $his breasts, $He rubs $himself while you do, getting intensely aroused at the expert way you move around $his tits and nipples. You continue, rolling $his <<= getSlave($AS).nipples>> nipples between your fingers and thumbs while $he gets increasingly frenzied at the continued stimulation. When it seems like $he's close, you give them a hard pull, sending $him gasping over the edge of ecstasy. - <<else>> - Then you alternate, gently probing the depths of the other nipple. You dig deep into both $his breasts, teasing what was once the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your fingers before vigorously fingering $his tits. $He moans at your playing with $his breasts, $He rubs $himself while you do, getting intensely aroused at the expert way you move around $his tits and nipples. You continue, adding more fingers into $his <<= getSlave($AS).nipples>> nipples while $he gets increasingly frenzied at the continued stimulation. When it seems like $he's close, you cram your whole fist in, sending $him gasping over the edge of ecstasy. - <</if>> -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).fetish == "dom") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60)>> - $He eagerly comes over to you, puffing $his chest out at you. When you place your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, - <<elseif (getSlave($AS).boobs >= 1000)>> - huge tits, - <<elseif (getSlave($AS).boobsImplant > 250)>> - fake tits, - <<elseif (getSlave($AS).boobs >= 650)>> - big tits, - <<elseif (getSlave($AS).boobs >= 300)>> - cute breasts, - <<else>> - flat breasts, - <</if>> - <<if (hasAnyArms(getSlave($AS)))>> - $he places $his hand<<if (hasBothArms(getSlave($AS)))>>s<</if>> on your <<if $PC.boobs >= 300>>bosom<<elseif $PC.title == 0>>flat chest<<else>>manly chest<</if>> in turn, $his tendency towards sexual dominance encouraging $him to compete with you in fondling each other. - <</if>> - You both alternate between taking your mouth to $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples and $hers to yours, gently nuzzling and nibbling while simultaneously fondling each other all the while. Both of you continue to passionately lick, nibble, stroke and fondle one other until tiredly, $he slows down. When you eventually stop, $he looks up at you happily. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate excitement with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>, since $he does not speak $language well enough to express $himself. - <<elseif (!hasAnyArms(getSlave($AS))) && (!canTalk(getSlave($AS)))>> - $He does $his best to communicate excitement with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he liked that. - <<else>> - "That wa<<s>> fun, <<Master>>," $he <<say>>s cheerfully. - <</if>> - <<if canSee(getSlave($AS))>> - $He looks at you with $his <<= App.Desc.eyesColor(getSlave($AS))>>, smiling. - <<else>> - $He smiles at you. - <</if>> -<<elseif (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He eagerly comes over to you, to stand between you and your desk. You lean over while $he submissively lies down upon it, face-up, with $his breasts pointed to the air. You place your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, before sinking your body into their immense softness, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, before sinking your arms into their soft mass, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, bouncing their weighty mass in your hands, - <<elseif (getSlave($AS).boobs > 1000)>> - huge tits, bouncing them up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - rubbing $his <<= getSlave($AS).nipples>> nipples with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, cupping them and gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - flat breasts, gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his engorged <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his hard, erect nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and pulling them gently towards you. Moving your head close to $his breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. - <<if getSlave($AS).nipples != "fuckable">> - Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. - <<else>> - Then you alternate, gently probing the depths of the other nipple. You dig deep into both $his breasts, teasing what was once the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your fingers before vigorously fingering $his tits. - <</if>> - $He moans passionately at the continued stimulation of $his breasts and nipples. When you finally stop, $he reaches up to your face with $his hand and lovingly strokes it, a blissful look on $his <<= getSlave($AS).skin>> face. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>, since $he's not confident in $his ability to express it in $language. - <<elseif (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "Plea<<s>>e don't <<s>>top, <<Master>>," $he <<say>>s quietly. - <</if>> - $He <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you longingly, eager for more. -<<elseif (getSlave($AS).fetish == "masochist") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He hurriedly comes over to you, to stand between you and your desk. You lean over while $he lies down upon it, face-up, with $his breasts pointed to the air. $He gasps as you slap your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, before sinking your body into their immense softness before pulling back and struggling to grasp both nipples at once, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, using your entire arms to roughly jiggle them before pulling back to maul $his nipples, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, bouncing their weighty mass roughly with all your might before sliding your hands to $his nipples, - <<elseif (getSlave($AS).boobs > 1000)>> - huge tits, bouncing them roughly up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - shoving your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - flicking $his nipples hard with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, cupping them and roughly - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - flat breasts, roughly - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his engorged <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his hard, erect nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and firmly pulling them in all directions. - <<if getSlave($AS).nipples != "fuckable">> - Moving your head close to $his breasts, you put your lips on a nipple and close your lips firmly around it to pull strongly on it. Then you alternate, bite hard with your teeth on the other. You firmly squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you push $his nipples with your thumbs, flicking them hard in different directions. - <<else>> - Moving your head close to $his breasts, you put your lips over a nipple and close your lips firmly over the slit to suck strongly on it. Then you alternate, bite hard with your teeth on the other. You firmly push the tips of your fingers down into the depths of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples to tweak what was once their tip. - <</if>> - $He moans passionately at the continued punishment of $his breasts and nipples. Your rough play leaves red marks on $his breasts and nipples and $he becomes even more aroused. When you finally stop $he rubs the marks on $his breasts with $his hands, an ecstatic look on $his <<= getSlave($AS).skin>> face. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate pleasure with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>, since $he's not confident in $his ability to express it in $language. - <<elseif (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He does $his best to communicate $his pleasure with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves it. - <<else>> - "Plea<<s>>e puni<<sh>> me more, <<Master>>," $he <<say>>s quietly. - <</if>> - $He <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you longingly, hungry for more. -<<elseif (getSlave($AS).devotion > 50)>> - $He devotedly comes over to you, to stand between you and your desk. $His doting <<= App.Desc.eyesColor(getSlave($AS))>> looking in yours. You place your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, before sinking your body into their immense softness, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, before sinking into your arms around their soft mass, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, bouncing their weighty mass in your hands, - <<elseif (getSlave($AS).boobs > 1000)>> - huge tits, bouncing them up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - rubbing $his <<= getSlave($AS).nipples>> nipples with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, cupping them and gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - flat breasts, gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his engorged <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his hard, erect nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and pulling them gently towards you. - <<if getSlave($AS).nipples != "fuckable">> - Moving your head close to $his breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. - <<else>> - Moving your head close to $his breasts, you nuzzle on a nipple slit with your lips and even lick it delicately with your tongue. Then you alternate, gently probing the depths of the other nipple. You dig deep into both $his breasts, teasing what was once the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your fingers before vigorously fingering $his tits. - <</if>> - $He moans passionately at the continued stimulation of $his breasts and nipples. When you finally stop, $he reaches up to your face with $his hand and lovingly strokes it, a blissful look on $his <<= getSlave($AS).skin>> face. - <<if (getSlave($AS).accent >= 3)>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>, since $he's not confident in $his ability to express it in $language. - <<elseif (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He does $his best to communicate devotion with $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>><<else>>face<</if>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you.<<else>>"I love you, <<Master>>," $he <<say>>s euphorically. - <</if>> - $He <<if canSee(getSlave($AS))>>looks<<else>>gazes<</if>> at you longingly, eager for more. -<<elseif (getSlave($AS).devotion > 20)>> - $He willingly gives $himself up to you. You place your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, before sinking your body into their immense softness, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, before sinking into your arms around their soft mass, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, bouncing their weighty mass in your hands, - <<elseif (getSlave($AS).boobs > 1000)>> - huge tits, bouncing them up and down in your hands, while simultaneously - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - rubbing $his <<= getSlave($AS).nipples>> nipples with your fingers and thumbs, - <</if>> - <<elseif (getSlave($AS).boobs > 650)>> - large tits, jiggling them enticingly with your hands, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, cupping them and gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his nipples between your fingers and thumbs, - <</if>> - <<else>> - flat breasts, gently - <<if getSlave($AS).nipples == "fuckable">> - slipping your fingers in and out of $his engorged <<= getSlave($AS).nipples>> nipples, - <<else>> - playing with $his hard, erect nipples between your fingers and thumbs, - <</if>> - <</if>> - teasing them and pulling them towards you. - <<if getSlave($AS).nipples != "fuckable">> - Moving your head close to $his breasts, you nuzzle on a nipple with your lips and even lick it delicately with your tongue. Then you alternate, gently nibbling with your teeth on the other nipple. You squeeze the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. - <<else>> - Moving your head close to $his breasts, you nuzzle on a nipple slit with your lips and even lick it delicately with your tongue. Then you alternate, gently probing the depths of the other nipple. You dig deep into both $his breasts, teasing what was once the tips of $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> nipples with your fingers before vigorously fingering $his tits. - <</if>> - You sense considerable uneasiness in the <<if (getSlave($AS).physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your hands on $his breasts. $He gradually loses $himself in the feeling of your gentle hands. When you finally stop, $his <<if canSee(getSlave($AS))>><<= App.Desc.eyesColor(getSlave($AS))>> gaze<<else>>face gazes<</if>> puzzlingly at you. Even though $he has accepted life as a sex slave, $he looks as though $he is unsure of what to make of this. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $His <<if canSee(getSlave($AS))>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? - <<elseif !canTalk(getSlave($AS))>> - $He signs hesitantly, asking if that's it. - <<else>> - $He asks hesitantly, "I-i<<s>> that it, <<Master>>?" - <</if>> -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).trust < -20)>> - $He shakes at your touch fearfully. As you softly place your hands on $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits, - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits, - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits, - <<elseif (getSlave($AS).boobs >= 1000)>> - huge tits, - <<elseif (getSlave($AS).boobs > 650)>> - large tits, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, - <<else>> - flat breasts, - <</if>> - $his eagerness to avoid punishment leads $him to stiffen as you start to massage them. $He finally starts to relax as you continue to massage $his breasts with your <<if $PC.title == 1>>manly<<else>>feminine<</if>> hands, - <<if getSlave($AS).nipples != "fuckable">> - playing with $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of $his nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. When you firmly pull $his nipples<<if (getSlave($AS).lactation > 0)>> milk streams out of them and<</if>> $he lets out a gasp. - <<else>> - playing with $his<<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they become sodden with fluid around your fingers. You plunge the depths of $his nipple cunts and vigorously work the unusual orifice. When you finally withdraw from $his nipples<<if (getSlave($AS).lactation > 0)>>, a stream of pent-up milk flows out after you and<<else>>,<</if>> $he lets out a gasp. - <</if>> - $His body softens as <<if canSee(getSlave($AS))>>$his <<= App.Desc.eyesColor(getSlave($AS))>> dart up to your face, before visibly catching $himself with a reminder<<else>>$he remembers<</if>> that $he's a slave and you're $his owner. When you finally stop, $he shivers but says nothing, uneasy at what you are going to do next. -<<elseif (getSlave($AS).trust < -50)>> - $He is nearly frozen with fear, and does not resist as you start to massage $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits. - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits. - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits. - <<elseif (getSlave($AS).boobs >= 1000)>> - huge tits. - <<elseif (getSlave($AS).boobs > 650)>> - large tits. - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts. - <<else>> - flat breasts. - <</if>> - In fact, $he barely reacts at all. $He <<if canSee(getSlave($AS))>>stares<<else>>glowers<</if>> at you, but $he remains motionless. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. $He trembles as you continue to massage $his breasts with your <<if $PC.title == 1>>manly<<else>>feminine<</if>> hands, playing with $his - <<if getSlave($AS).nipples != "fuckable">> - <<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of $his nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. When you firmly pull $his nipples,<<if (getSlave($AS).lactation > 0)>> milk streams out of them and<</if>> $he gasps audibly, unable to contain $himself at your relentless assault upon $his areola. When you put your mouth on $his breasts to nibble on $his nipples, $he bites $his lip, desperately trying to hide $his arousal at $his stimulated nipples. - <<else>> - <<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they tighten around your fingers. You push deeper in, rubbing their sides gently before forcing the entirety of your hands into $his breasts. When you cease fisting $his nipples and pull out<<if (getSlave($AS).lactation > 0)>> alongside a stream of backed up milk<</if>>, $he gasps audibly, unable to contain $himself at your relentless assault upon $his boobs. When you put your mouth on $his breasts to lick $his slit, $he bites $his lip, desperately trying to hide $his arousal at $his stimulated nipples. - <</if>> - When you finally stop, $he shakes uncontrollably but says nothing, apprehensive at what you are going to do next. -<<else>> - $He tries to refuse you, so you push $him down on top of your desk and squeeze $his <<= getSlave($AS).skin>> breasts in your <<if $PC.title == 1>>manly<<else>>feminine<</if>> hands. $He tries to push you off $his - <<if (getSlave($AS).boobs >= 20000)>> - colossal tits. - <<elseif (getSlave($AS).boobs >= 10000)>> - massive tits. - <<elseif (getSlave($AS).boobs >= 5000)>> - monster tits. - <<elseif (getSlave($AS).boobs >= 1000)>> - huge tits, - <<elseif (getSlave($AS).boobs > 650)>> - large tits, - <<elseif (getSlave($AS).boobs > 300)>> - cute breasts, - <<else>> - flat breasts, - <</if>> - but you continue to massage them, playing with $his - <<if getSlave($AS).nipples != "fuckable">> - <<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of $his nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. When you firmly pull $his nipples,<<if (getSlave($AS).lactation > 0)>> milk streams out of them and<</if>> $he gasps audibly, unable to contain $himself at your relentless assault upon $his areola. When you put your mouth on $his breasts to nibble on $his nipples, $he bites $his lip, desperately trying to hide $his arousal at $his stimulated nipples. - <<else>> - <<if (getSlave($AS).lactation > 0)>> milky<</if>> <<= getSlave($AS).nipples>> nipples so that they tighten around your fingers. You push deeper in, rubbing their sides gently before forcing the entirety of your hands into $his breasts. When you cease fisting $his nipples and pull out<<if (getSlave($AS).lactation > 0)>> alongside a stream of backed up milk<</if>>, $he gasps audibly, unable to contain $himself at your relentless assault upon $his boobs. When you put your mouth on $his breasts to lick $his slit, $he bites $his lip, desperately trying to hide $his arousal at $his stimulated nipples. - <</if>> - When you finally stop, $he shakes uncontrollably, apprehensive at what you are going to do next. -<</if>> - -<<if getSlave($AS).lactation > 0>> - <<set getSlave($AS).lactationDuration = 2>> - <<set getSlave($AS).boobs -= getSlave($AS).boobsMilk, getSlave($AS).boobsMilk = 0>> -<<else>> - <<= induceLactation(getSlave($AS))>> -<</if>> diff --git a/src/npc/interaction/fondleButt.js b/src/npc/interaction/fondleButt.js new file mode 100644 index 0000000000000000000000000000000000000000..1962ccbbd356e39cab382cbe8d02586c14beef1f --- /dev/null +++ b/src/npc/interaction/fondleButt.js @@ -0,0 +1,679 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fondleButt = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, + } = getPronouns(slave); + + const {title: Master} = getEnunciation(slave); + + r.push(`You call ${him} over so you can fondle ${his}`); + if (slave.butt < 2) { + r.push(`flat, tight ass`); + } else if (slave.butt <= 2) { + r.push(`cute bottom`); + } else if (slave.butt <= 3) { + r.push(`round, firm rump`); + } else if (slave.butt <= 4) { + r.push(`curvy, enticing butt`); + } else if (slave.butt <= 5) { + r.push(`huge rear end`); + } else if (slave.butt <= 6) { + r.push(`massive, alluring rump`); + } else if (slave.butt <= 7) { + r.push(`enormous, hypnotic ass`); + } else if (slave.butt <= 10) { + r.push(`gigantic, jiggly rear`); + } else if (slave.butt <= 14) { + r.push(`inhuman, cushiony butt cheeks`); + } else if (slave.butt <= 20) { + r.push(`couch-like, super jiggly ass cheeks`); + } + r.push(`as well as ${his}`); + if (slave.anus > 3) { + r.push(`gaping anus.`); + } else if (slave.anus === 3) { + r.push(`loose anus.`); + } else if (slave.anus === 2) { + r.push(`well-used asshole.`); + } else if (slave.anus === 1) { + r.push(`tight butthole.`); + } else if (slave.anus === 0) { + r.push(`virgin butthole.`); + } + + if (slave.fetish === "buttslut" && slave.devotion >= -20) { + r.push(`${He}'s pleased at the prospect of you touching ${his} favorite body part.`); + } + + if (slave.fetish === "masochist" && slave.fetishStrength > 60 && slave.fetishKnown === 1 && slave.anus === 0 && slave.devotion >= -20) { + if (canWalk(slave)) { + r.push(`${He} approaches you eagerly and waves ${his} butt, then presents ${his} virgin anus in front of you, spreading ${his} butt cheeks towards you with ${his} hands before turning to face you.`); + } + r.push(`You reach around and firmly grab ${his} buttocks with both hands. ${He} gasps as you smack both of ${his} cheeks, you feel the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeeze hard. ${He} moans with arousal as you spank ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks. ${He} looks longingly into your eyes as you continue to move around ${his} posterior, pinching with your fingers and slapping with your palms before reaching to touch your fingertips against ${his} sphincter. ${He} moans and quivers slightly when you rub your fingers around ${his} virgin anus. ${He} starts to wiggle ${his} ass while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You keep squeezing ${his} buttocks firmly — first one, then the other and then finally both. ${He} can't resist gyrating ${his} hips in arousal while in your grasp.`); + if (canStand(slave)) { + r.push(`You strongly pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down to bend ${him} over your desk.`); + } else { + r.push(`You move closer towards ${him}, turn ${him} around and firmly hold ${him} down on desk, face-down so that ${his} butt is facing you up into the air.`); + } + r.push(`${He} pretends to be unwilling but cannot disguise ${his} obvious joy. You see that ${his} rear has reddened in your rough play and you continue to squeeze ${his} cheeks hard and spank them with your firm hands. ${He} moans harder at you squeezing along the contours of ${his} posterior with both your hands and at ${his} virgin butthole as you push against it with your fingers and thumb. Eventually you decide to stop and ${he} squeals with delight after you give ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks a few hard smacks for good measure. ${His} face is in ecstasy as ${he} stands and turns to face you, gently rubbing the red spots on ${his} buttocks and`); + if (canSee(slave)) { + r.push(`looking at`); + } else { + r.push(`facing`); + } + r.push(`you hungrily as if ${he} wants more.`); + } else if (slave.devotion > 50 && slave.anus === 0) { + if (canStand(slave)) { + r.push(`${He} accepts your orders happily and waves ${his} virgin anus to you, spreading ${his} butt cheeks in front of you with ${his} hands before turning to face you.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks with both hands before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} looks passionately into your eyes as you continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} sighs as you rub your fingertips around ${his} virgin anus. ${He} starts to wiggle ${his} ass while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You keep squeezing ${his} buttocks tenderly — first one, then the other and then both and ${he} can't resist gyrating ${his} hips enticingly while in your grasp.`); + if (canStand(slave)) { + r.push(`You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and bend ${him} over your desk.`); + } else { + r.push(`You move closer towards ${him}, turn ${him} around and push ${him} down on desk, face-down so that ${his} butt is facing you up into the air.`); + } + r.push(`You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You explore the contours of ${his} posterior with both your eyes and hands, then look at ${his} virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and ${he} squeals with delight after you give ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks a gentle smack. ${He} turns to face you, kissing you, but`); + if (canSee(slave)) { + r.push(`looking at`); + } else { + r.push(`facing`); + } + r.push(`you longingly as if ${he} wants more.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else if (SlaveStatsChecker.checkForLisp(slave)) { + r.push(Spoken(slave, `"I love you, ${Master},"`)); + r.push(`${he} lisps happily.`); + } else { + r.push(Spoken(slave, `"I love you, ${Master},"`)); + r.push(`${he} says happily.`); + } + } else if (slave.devotion > 20 && slave.anus === 0) { + if (canStand(slave)) { + r.push(`${He} accepts your orders without comment and presents ${his} virgin anus to you before turning to face you.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks with both hands before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} gasps as you rub fingers around ${his} virgin anus. You watch ${his} face as you continue to move around ${his} posterior and ${he} clearly enjoys the contact on ${his} bare skin. You gently reach to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} starts to wiggle ${his} ass while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You keep squeezing ${his} buttocks tenderly — first one, then the other and then both and ${he} can't help but gyrate ${his} hips enticingly while in your grasp. You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and bend ${him} over your desk. You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You explore the contours of ${his} posterior with both your eyes and hands, then look at ${his} virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and ${he} squeals in surprise after you give ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks a gentle smack. You tell ${him} to stand as you are finished. ${He} stands and looks at you quizzically. Though ${he} has accepted life as a sex slave, ${he} cannot help but feel a conflicted mixture of enjoyment and mild embarrassment.`); + } else if (slave.devotion >= -20 && slave.anus === 0) { + r.push(`${He} obeys your harmless order but ${he} can't help but feel slight trepidation and trembles slightly at the thought of you groping ${his} butt.`); + if (hasAnyLegs(slave)) { + r.push(`${He} stands in front of you as you`); + } else { + r.push(`You`); + } + r.push(`reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} gasps as you rub fingers around ${his} virgin anus. You study ${his} face as you continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} starts to wiggle ${his} ass while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You keep squeezing ${his} buttocks tenderly — first one, then the other and then both and ${he} can't help but wiggle ${his} hips while in your grasp. You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and bend ${him} over your desk. You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You explore the contours of ${his} posterior with both your eyes and hands, then look at ${his} virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and ${he} squeals in surprise after you give ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks a gentle smack. You tell ${him} to stand as you are finished. ${He} stands and looks at you quizzically, ${his} eyes searching in yours for answers that ${he} cannot find.`); + } else if (slave.trust < -50 && slave.anus === 0) { + r.push(`${He} is nearly frozen with fear, and does not resist as you kiss ${him}. In fact, ${he} barely reacts at all. ${He} stands in front of you and visibly stiffens as you reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} gasps and shivers as you rub fingers around ${his} virgin anus. ${He} remains frozen as you continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} shudders more while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both. ${He} is so filled with terror that ${he} remains stiff while in your grasp, even as it becomes clear to ${him} you're not going to hurt ${him}. You pull ${his} quivering body closer towards you by ${his} buttocks, turn ${him} around, and bend ${him} over your desk. You look at ${his} quaking rear while you squeeze ${his} cheeks and rub them with your firm hands. You explore the contours of ${his} posterior with both your eyes and hands, then look at ${his} virgin butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. ${He} gradually stands and looks in your eyes with utter incomprehension, but ${he} is frightened about what you will do next.`); + } else if (slave.anus === 0) { + r.push(`While you grope ${his} butt, ${he} tries hard to resist. ${He}`); + if (hasAnyArms(slave)) { + r.push(`grabs`); + if (hasBothArms(slave)) { + r.push(`your wrists and tugs on your arms`); + } else { + r.push(`your wrist and tugs on your arm`); + } + } else { + r.push(`writhes under your fingers`); + } + r.push(`but stops, helpless, when you tell ${him} what the alternatives are. You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} tries to break out of your grasp as you rub fingers around ${his} virgin anus. ${He} writhes as you continue to move around ${his} posterior, gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} struggles to stay still while you circle around ${his} unbroken anus, not breaking contact with ${him} with your fingers. You look at ${his} face and ${he} has`); + if (!canSee(slave)) { + r.push(`reflexively`); + } + r.push(`shut ${his} eyes, trying not to think about what's happening to ${his} butt. This only encourages you to continue. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both and ${he} can't help but quiver while in your grasp. You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down, bending ${him} over your desk while ${he} tries to push away. You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You wander along the outline of ${his} posterior with both your eyes and hands, then look at ${his} virgin butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. ${He} slowly stands and looks in your eyes, as though almost demanding answers. ${He} looks apprehensive about what you will do next.`); + } else if (slave.fetish === "mindbroken") { + if (canMove(slave)) { + r.push(`You instruct ${him} to present ${his} buttocks and anus but ${he} remains still and unresponsive. Talking to a broken mind is pointless.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`buttocks before rubbing along them, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} reacts to your initial touch as you rub fingers around ${his}`); + if (slave.anus > 3) { + r.push(`gaping anus,`); + } else if (slave.anus === 3) { + r.push(`loose anus,`); + } else if (slave.anus === 2) { + r.push(`well-used asshole,`); + } else if (slave.anus === 1) { + r.push(`tight butthole,`); + } else if (slave.anus === 0) { + r.push(`virgin butthole,`); + } + r.push(`but you understand it is only physiological. You continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. You circle around ${his} anus but ${he} remains still. You keep squeezing ${his} buttocks tenderly — first one, then the other and then both but ${he} is like a doll in your grasp. You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and bend ${him} over your desk. You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You explore the contours of ${his} posterior with both your eyes and hands, then look at ${his}`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`well-used`); + } else if (slave.anus === 1) { + r.push(`tight`); + } else if (slave.anus === 0) { + r.push(`virgin`); + } + r.push(`butthole as you trace it with your fingers and thumb. Eventually, you decide to stop but ${he} remains in position over your desk until you stand ${him} up yourself.`); + } else if (slave.devotion < -20) { + if (!isAmputee(slave)) { + r.push(`You instruct ${him} to present ${his} buttocks and anus. Opposed to the thought of your hands groping ${him}, ${he} tries to`); + if (hasAnyLegs(slave)) { + r.push(`step`); + } else { + r.push(`move`); + } + r.push(`back, but you catch ${him} and pull ${him} closer to you as you reach around and grab ${his}`); + } else { + r.push(`${He}'s opposed to the thought of your hands groping ${him}, but as an amputee can do nothing about it. You reach around and grab ${his}`); + } + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`buttocks.`); + if (hasAnyArms(slave)) { + r.push(`${He} tries to grab your wrists to keep them away but ${he} cannot resist for long.`); + } + r.push(`You start rubbing along ${his} cheeks, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. ${He} tries to break out of your grasp as you rub fingers around ${his}`); + if (slave.anus > 3) { + r.push(`gaping anus.`); + } else if (slave.anus === 3) { + r.push(`loose anus.`); + } else if (slave.anus === 2) { + r.push(`well-used asshole.`); + } else if (slave.anus === 1) { + r.push(`tight butthole.`); + } else if (slave.anus === 0) { + r.push(`virgin butthole.`); + } + r.push(`${He} writhes as you continue to move around ${his} posterior, gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} struggles to stay still while you circle around ${his} anus, not breaking contact with ${him} with your fingers. You look at ${his} face and ${he} has`); + if (!canSee(slave)) { + r.push(`reflexively`); + } + r.push(`shut ${his} eyes, trying not to think about what's happening to ${his} butt. This only encourages you to continue. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both and ${he} can't help but quiver while in your grasp.`); + if (hasBothLegs(slave)) { + r.push(`You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down, bending ${him} over your desk while ${he} tries to push away.`); + } else { + r.push(`You move closer to ${him}, turn ${him} around and push ${him} down, face-down on your desk while ${he} tries to wriggle desperately.`); + } + r.push(`You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You wander along the outline of ${his} posterior with both your eyes and hands, then look at ${his}`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`well-used`); + } else if (slave.anus === 1) { + r.push(`tight`); + } else if (slave.anus === 0) { + r.push(`virgin`); + } + r.push(`butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. ${He} slowly stands and looks in your eyes, as though almost demanding answers. ${He} looks apprehensive about what you will do next.`); + } else if (slave.devotion <= 20 && slave.vagina < 0) { + if (!isAmputee(slave)) { + r.push(`You instruct ${him} to present ${his} anus. ${He} complies without comment, standing in front of you.`); + } else { + r.push(`${He}'s hesitant at the thought of your hands groping ${him}, but as an amputee can do nothing about it.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`buttocks. ${His} dick cannot stop twitching as you start rubbing along ${his} cheeks, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. You rub your fingers around ${his}`); + if (slave.anus > 3) { + r.push(`gaping anus.`); + } else if (slave.anus === 3) { + r.push(`loose anus.`); + } else if (slave.anus === 2) { + r.push(`well-used asshole.`); + } else if (slave.anus === 1) { + r.push(`tight butthole.`); + } else if (slave.anus === 0) { + r.push(`virgin butthole.`); + } + r.push(`${He} writhes as you continue to move around ${his} posterior, gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} struggles to stay still while you circle around ${his} anus with your fingers. You look at ${his} face and ${he} has`); + if (!canSee(slave)) { + r.push(`reflexively`); + } + r.push(`shut ${his} eyes, trying not to get aroused by your touch on ${his} butt. This only encourages you to continue. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both and ${he} can't help but quiver while in your grasp.`); + if (hasBothLegs(slave)) { + r.push(`You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down, bending ${him} over your desk.`); + } else { + r.push(`You move closer to ${him}, turn ${him} around and push ${him} down, face-down on your desk while ${he} wriggles.`); + } + r.push(`You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You wander along the outline of ${his} posterior with both your eyes and hands, then look at ${his}`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`well-used`); + } else if (slave.anus === 1) { + r.push(`tight`); + } else if (slave.anus === 0) { + r.push(`virgin`); + } + r.push(`butthole as you trace it with your fingers and thumb. Eventually, you decide to stop and ${he} looks up at you quizzically, unsure about what you will do next.`); + } else if (slave.devotion <= 50) { + if (!isAmputee(slave)) { + r.push(`You instruct ${him} to present ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`anus. ${He} hesitates but eventually stands in front of you showing ${his} buttocks before presenting ${his}`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`well-used`); + } else if (slave.anus === 1) { + r.push(`tight`); + } else if (slave.anus === 0) { + r.push(`virgin`); + } + r.push(`anus to you and turning to face you.`); + } else { + r.push(`${He}'s mildly hesitant at the thought of your hands groping ${him}, but as an amputee can do nothing about it.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks. You start rubbing along ${his} cheeks, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. As you rub your fingers around ${his} anus, ${he} starts to relax. ${He} quivers as you continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} purses ${his} lips while you circle around ${his} anus with your fingers. You look at ${his} face and ${he} is looking back at you doe-eyed, trying but failing not to get aroused by your soft touch on ${his} butt. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both and ${he} can't help but let out a moan while in your grasp.`); + if (hasBothLegs(slave)) { + r.push(`You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down, bending ${him} over your desk.`); + } else { + r.push(`You move closer to ${him}, turn ${him} around and push ${him} down, face-down on your desk while ${he} tries to wriggle desperately.`); + } + r.push(`You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You wander along the outline of ${his} posterior with both your eyes and hands, then look at ${his} butthole as you trace it with your fingers and thumb. Eventually, you decide to stop, and ${he}`); + if (canSee(slave)) { + r.push(`looks up into your eyes`); + } else { + r.push(`angles ${his} head to face you`); + } + r.push(`longingly, as if ${he} wants more.`); + } else { + if (!isAmputee(slave)) { + r.push(`You instruct ${him} to present ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`anus. ${He} eagerly stands in front of you showing ${his} buttocks before happily presenting ${his}`); + if (slave.anus > 3) { + r.push(`gaping`); + } else if (slave.anus === 3) { + r.push(`loose`); + } else if (slave.anus === 2) { + r.push(`well-used`); + } else if (slave.anus === 1) { + r.push(`tight`); + } else if (slave.anus === 0) { + r.push(`virgin`); + } + r.push(`anus to you, spreading ${his} butt cheeks and turning to face you.`); + } else { + r.push(`${He} devotedly looks at you, awaiting your touch on ${his} body.`); + } + r.push(`You reach around and grab ${his}`); + if (slave.butt < 2) { + r.push(`flat`); + } else if (slave.butt <= 2) { + r.push(`cute`); + } else if (slave.butt <= 3) { + r.push(`firm`); + } else if (slave.butt <= 4) { + r.push(`generous`); + } else if (slave.butt <= 5) { + r.push(`massive`); + } else if (slave.butt <= 7) { + r.push(`enormous`); + } else if (slave.butt <= 10) { + r.push(`gigantic`); + } else if (slave.butt <= 14) { + r.push(`inhuman`); + } else if (slave.butt <= 20) { + r.push(`couch-like`); + } + r.push(`buttocks. You start rubbing along ${his} cheeks, feeling the shape of ${his}`); + if (V.seeRace === 1) { + r.push(slave.race); + } + r.push(`ass with your fingers and squeezing gently. As you rub your fingers around ${his} anus, ${he} sighs audibly. ${He} moans as you continue to move around ${his} posterior gently reaching to touch your fingertips against ${his} sphincter while rubbing ${his} ass at the same time. ${He} quivers while you circle around ${his} anus with your fingers. You look at ${his} face and ${he} is looking back at you longingly, getting aroused by your continued touch on ${his} butt. You keep squeezing ${his} buttocks tenderly — first one, then the other and then finally both and ${he} can't help but let out a moan while in your grasp.`); + if (hasAnyLegs(slave)) { + r.push(`You pull ${his} body closer towards you by ${his} buttocks, turn ${him} around, and push ${him} down, bending ${him} over your desk.`); + } else { + r.push(`You move closer to ${him}, turn ${him} around and push ${him} down, face-down on your desk so that ${his} butt is up facing towards you.`); + } + r.push(`You look at ${his} rear while you squeeze ${his} cheeks and rub them with your firm hands. You wander along the outline of ${his} posterior with both your eyes and hands, then look at ${his} butthole as you trace it with your fingers and thumb. Eventually, you decide to stop, and ${he}`); + if (canSee(slave)) { + r.push(`looks up into your eyes`); + } else { + r.push(`angles ${his} head to face you`); + } + r.push(`ecstatically${hasAnyLegs(slave) ? `as ${he} stands up` : ``}, eager for more.`); + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fondleButt.tw b/src/npc/interaction/fondleButt.tw deleted file mode 100644 index 32089424763ce83d86bc4b2c482d01b0f0b1151f..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fondleButt.tw +++ /dev/null @@ -1,539 +0,0 @@ -:: FondleButt [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You call $him over so you can fondle $his -<<if getSlave($AS).butt < 2>> - flat, tight ass -<<elseif getSlave($AS).butt <= 2>> - cute bottom -<<elseif getSlave($AS).butt <= 3>> - round, firm rump -<<elseif getSlave($AS).butt <= 4>> - curvy, enticing butt -<<elseif getSlave($AS).butt <= 5>> - huge rear end -<<elseif getSlave($AS).butt <= 6>> - massive, alluring rump -<<elseif getSlave($AS).butt <= 7>> - enormous, hypnotic ass -<<elseif getSlave($AS).butt <= 10>> - gigantic, jiggly rear -<<elseif getSlave($AS).butt <= 14>> - inhuman, cushiony butt cheeks -<<elseif getSlave($AS).butt <= 20>> - couch-like, super jiggly ass cheeks -<</if>> -as well as $his -<<if (getSlave($AS).anus > 3)>> - gaping anus. -<<elseif (getSlave($AS).anus == 3)>> - loose anus. -<<elseif (getSlave($AS).anus == 2)>> - well-used asshole. -<<elseif (getSlave($AS).anus == 1)>> - tight butthole. -<<elseif (getSlave($AS).anus == 0)>> - virgin butthole. -<</if>> - -<<if (getSlave($AS).fetish == "buttslut") && (getSlave($AS).devotion >= -20)>> - $He's pleased at the prospect of you touching $his favorite body part. -<</if>> - -<<if (getSlave($AS).fetish == "masochist") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).anus == 0) && (getSlave($AS).devotion >= -20)>> - <<if canWalk(getSlave($AS))>> - $He approaches you eagerly and waves $his butt, then presents $his virgin anus in front of you, spreading $his butt cheeks towards you with $his hands before turning to face you. - <</if>> - You reach around and firmly grab $his buttocks with both hands. $He gasps as you smack both of $his cheeks, you feel the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeeze hard. $He moans with arousal as you spank $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks. $He looks longingly into your eyes as you continue to move around $his posterior, pinching with your fingers and slapping with your palms before reaching to touch your fingertips against $his sphincter. $He moans and quivers slightly when you rub your fingers around $his virgin anus. $He starts to wiggle $his ass while you circle around $his anus, not breaking contact with $him with your fingers. You keep squeezing $his buttocks firmly — first one, then the other and then finally both. $He can't resist gyrating $his hips in arousal while in your grasp. - <<if canStand(getSlave($AS))>> - You strongly pull $his body closer towards you by $his buttocks, turn $him around, and push $him down to bend $him over your desk. - <<else>> - You move closer towards $him, turn $him around and firmly hold $him down on desk, face-down so that $his butt is facing you up into the air. - <</if>> - $He pretends to be unwilling but cannot disguise $his obvious joy. You see that $his rear has reddened in your rough play and you continue to squeeze $his cheeks hard and spank them with your firm hands. $He moans harder at you squeezing along the contours of $his posterior with both your hands and at $his virgin butthole as you push against it with your fingers and thumb. Eventually you decide to stop and $he squeals with delight after you give $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks a few hard smacks for good measure. $His face is in ecstasy as $he stands and turns to face you, gently rubbing the red spots on $his buttocks and looking at you hungrily as if $he wants more. -<<elseif (getSlave($AS).devotion > 50) && (getSlave($AS).anus == 0)>> - <<if canStand(getSlave($AS))>> - $He accepts your orders happily and waves $his virgin anus to you, spreading $his butt cheeks in front of you with $his hands before turning to face you. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks with both hands before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He looks passionately into your eyes as you continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He sighs as you rub your fingertips around $his virgin anus. $He starts to wiggle $his ass while you circle around $his anus, not breaking contact with $him with your fingers. You keep squeezing $his buttocks tenderly — first one, then the other and then both and $he can't resist gyrating $his hips enticingly while in your grasp. - <<if canStand(getSlave($AS))>> - You pull $his body closer towards you by $his buttocks, turn $him around, and bend $him over your desk. - <<else>> - You move closer towards $him, turn $him around and push $him down on desk, face-down so that $his butt is facing you up into the air. - <</if>> - You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You explore the contours of $his posterior with both your eyes and hands, then look at $his virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and $he squeals with delight after you give $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks a gentle smack. $He turns to face you, kissing you, but looking at you longingly as if $he wants more. - <<if (!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS))>> - $He does $his best to communicate love with $his <<= App.Desc.eyesColor(getSlave($AS))>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<elseif SlaveStatsChecker.checkForLisp(getSlave($AS))>> "I love you, - <<Master>>," $he lisps happily. - <<else>> "I love you, - <<Master>>," $he says happily. - <</if>> -<<elseif (getSlave($AS).devotion > 20) && (getSlave($AS).anus == 0)>> - <<if canStand(getSlave($AS))>> - $He accepts your orders without comment and presents $his virgin anus to you before turning to face you. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks with both hands before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He gasps as you rub fingers around $his virgin anus. You watch $his face as you continue to move around $his posterior and $he clearly enjoys the contact on $his bare skin. You gently reach to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He starts to wiggle $his ass while you circle around $his anus, not breaking contact with $him with your fingers. You keep squeezing $his buttocks tenderly — first one, then the other and then both and $he can't help but gyrate $his hips enticingly while in your grasp. You pull $his body closer towards you by $his buttocks, turn $him around, and bend $him over your desk. You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You explore the contours of $his posterior with both your eyes and hands, then look at $his virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and $he squeals in surprise after you give $his <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks a gentle smack. You tell $him to stand as you are finished. $He stands and looks at you quizzically. Though $he has accepted life as a sex slave, $he cannot help but feel a conflicted mixture of enjoyment and mild embarrassment. -<<elseif (getSlave($AS).devotion >= -20) && (getSlave($AS).anus == 0)>> - $He obeys your harmless order but $he can't help but feel slight trepidation and trembles slightly at the thought of you groping $his butt. <<if (hasAnyLegs(getSlave($AS)))>>$He stands in front of you as you <<else>>You <</if>>reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He gasps as you rub fingers around $his virgin anus. You study $his face as you continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He starts to wiggle $his ass while you circle around $his anus, not breaking contact with $him with your fingers. You keep squeezing $his buttocks tenderly — first one, then the other and then both and $he can't help but wiggle $his hips while in your grasp. You pull $his body closer towards you by $his buttocks, turn $him around, and bend $him over your desk. You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You explore the contours of $his posterior with both your eyes and hands, then look at $his virgin butthole as you trace it with your fingers and thumb. Eventually you decide to stop and $he squeals in surprise after you give $his <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks a gentle smack. You tell $him to stand as you are finished. $He stands and looks at you quizzically, $his eyes searching in yours for answers that $he cannot find. -<<elseif (getSlave($AS).trust < -50) && (getSlave($AS).anus == 0)>> - $He is nearly frozen with fear, and does not resist as you kiss $him. In fact, $he barely reacts at all. $He stands in front of you and visibly stiffens as you reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He gasps and shivers as you rub fingers around $his virgin anus. $He remains frozen as you continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He shudders more while you circle around $his anus, not breaking contact with $him with your fingers. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both. $He is so filled with terror that $he remains stiff while in your grasp, even as it becomes clear to $him you're not going to hurt $him. You pull $his quivering body closer towards you by $his buttocks, turn $him around, and bend $him over your desk. You look at $his quaking rear while you squeeze $his cheeks and rub them with your firm hands. You explore the contours of $his posterior with both your eyes and hands, then look at $his virgin butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. $He gradually stands and looks in your eyes with utter incomprehension, but $he is frightened about what you will do next. -<<elseif (getSlave($AS).anus == 0)>> - While you grope $his butt, $he tries hard to resist. $He <<if hasAnyArms(getSlave($AS))>>grabs <<if (hasBothArms(getSlave($AS)))>>your wrists and tugs on your arms<<else>>your wrist and tugs on your arm<</if>><<else>>writhes under your fingers<</if>> but stops, helpless, when you tell $him what the alternatives are. You reach around and grab $his <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He tries to break out of your grasp as you rub fingers around $his virgin anus. $He writhes as you continue to move around $his posterior, gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He struggles to stay still while you circle around $his unbroken anus, not breaking contact with $him with your fingers. You look at $his face and $he has <<if !canSee(getSlave($AS))>>reflexively <</if>>shut $his eyes, trying not to think about what's happening to $his butt. This only encourages you to continue. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both and $he can't help but quiver while in your grasp. You pull $his body closer towards you by $his buttocks, turn $him around, and push $him down, bending $him over your desk while $he tries to push away. You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his virgin butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. $He slowly stands and looks in your eyes, as though almost demanding answers. $He looks apprehensive about what you will do next. -<<elseif getSlave($AS).fetish == "mindbroken">> - <<if canMove(getSlave($AS))>> - You instruct $him to present $his buttocks and anus but $he remains still and unresponsive. Talking to a broken mind is pointless. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>>buttocks before rubbing along them, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He reacts to your initial touch as you rub fingers around $his - <<if (getSlave($AS).anus > 3)>> - gaping anus, - <<elseif (getSlave($AS).anus == 3)>> - loose anus, - <<elseif (getSlave($AS).anus == 2)>> - well-used asshole, - <<elseif (getSlave($AS).anus == 1)>> - tight butthole, - <<elseif (getSlave($AS).anus == 0)>> - virgin butthole, - <</if>> - but you understand it is only physiological. You continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. You circle around $his anus but $he remains still. You keep squeezing $his buttocks tenderly — first one, then the other and then both but $he is like a doll in your grasp. You pull $his body closer towards you by $his buttocks, turn $him around, and bend $him over your desk. You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You explore the contours of $his posterior with both your eyes and hands, then look at $his - <<if (getSlave($AS).anus > 3)>> - gaping - <<elseif (getSlave($AS).anus == 3)>> - loose - <<elseif (getSlave($AS).anus == 2)>> - well-used - <<elseif (getSlave($AS).anus == 1)>> - tight - <<elseif (getSlave($AS).anus == 0)>> - virgin - <</if>> - butthole as you trace it with your fingers and thumb. Eventually, you decide to stop but $he remains in position over your desk until you stand $him up yourself. -<<elseif getSlave($AS).devotion < -20>> - <<if !isAmputee(getSlave($AS))>> - You instruct $him to present $his buttocks and anus. Opposed to the thought of your hands groping $him, $he tries to <<if (hasAnyLegs(getSlave($AS)))>>step<<else>>move<</if>> back, but you catch $him and pull $him closer to you as you reach around and grab $his - <<else>> - $He's opposed to the thought of your hands groping $him, but as an amputee can do nothing about it. You reach around and grab $his - <</if>> - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>> buttocks. - <<if hasAnyArms(getSlave($AS))>> - $He tries to grab your wrists to keep them away but $he cannot resist for long. - <</if>> - You start rubbing along $his cheeks, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. $He tries to break out of your grasp as you rub fingers around $his - <<if (getSlave($AS).anus > 3)>> - gaping anus. - <<elseif (getSlave($AS).anus == 3)>> - loose anus. - <<elseif (getSlave($AS).anus == 2)>> - well-used asshole. - <<elseif (getSlave($AS).anus == 1)>> - tight butthole. - <<elseif (getSlave($AS).anus == 0)>> - virgin butthole. - <</if>> - $He writhes as you continue to move around $his posterior, gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He struggles to stay still while you circle around $his anus, not breaking contact with $him with your fingers. You look at $his face and $he has <<if !canSee(getSlave($AS))>>reflexively <</if>>shut $his eyes, trying not to think about what's happening to $his butt. This only encourages you to continue. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both and $he can't help but quiver while in your grasp. - <<if hasBothLegs(getSlave($AS))>> - You pull $his body closer towards you by $his buttocks, turn $him around, and push $him down, bending $him over your desk while $he tries to push away. - <<else>> - You move closer to $him, turn $him around and push $him down, face-down on your desk while $he tries to wriggle desperately. - <</if>> - You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his - <<if (getSlave($AS).anus > 3)>> - gaping - <<elseif (getSlave($AS).anus == 3)>> - loose - <<elseif (getSlave($AS).anus == 2)>> - well-used - <<elseif (getSlave($AS).anus == 1)>> - tight - <<elseif (getSlave($AS).anus == 0)>> - virgin - <</if>> - butthole as you trace it with your fingers and thumb. Eventually, you decide to stop. $He slowly stands and looks in your eyes, as though almost demanding answers. $He looks apprehensive about what you will do next. -<<elseif (getSlave($AS).devotion <= 20) && (getSlave($AS).vagina < 0)>> - <<if !isAmputee(getSlave($AS))>> - You instruct $him to present $his anus. $He complies without comment, standing in front of you. - <<else>> - $He's hesitant at the thought of your hands groping $him, but as an amputee can do nothing about it. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>> buttocks. $His dick cannot stop twitching as you start rubbing along $his cheeks, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. You rub your fingers around $his - <<if (getSlave($AS).anus > 3)>> - gaping anus. - <<elseif (getSlave($AS).anus == 3)>> - loose anus. - <<elseif (getSlave($AS).anus == 2)>> - well-used asshole. - <<elseif (getSlave($AS).anus == 1)>> - tight butthole. - <<elseif (getSlave($AS).anus == 0)>> - virgin butthole. - <</if>> - $He writhes as you continue to move around $his posterior, gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He struggles to stay still while you circle around $his anus with your fingers. You look at $his face and $he has <<if !canSee(getSlave($AS))>>reflexively <</if>>shut $his eyes, trying not to get aroused by your touch on $his butt. This only encourages you to continue. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both and $he can't help but quiver while in your grasp. - <<if hasBothLegs(getSlave($AS))>> - You pull $his body closer towards you by $his buttocks, turn $him around, and push $him down, bending $him over your desk. - <<else>> - You move closer to $him, turn $him around and push $him down, face-down on your desk while $he wriggles. - <</if>> - You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his - <<if (getSlave($AS).anus > 3)>> - gaping - <<elseif (getSlave($AS).anus == 3)>> - loose - <<elseif (getSlave($AS).anus == 2)>> - well-used - <<elseif (getSlave($AS).anus == 1)>> - tight - <<elseif (getSlave($AS).anus == 0)>> - virgin - <</if>> - butthole as you trace it with your fingers and thumb. Eventually, you decide to stop and $he looks up at you quizzically, unsure about what you will do next. -<<elseif (getSlave($AS).devotion <= 50)>> - <<if !isAmputee(getSlave($AS))>> - You instruct $him to present $his <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>>anus. $He hesitates but eventually stands in front of you showing $his buttocks before presenting $his - <<if (getSlave($AS).anus > 3)>> - gaping - <<elseif (getSlave($AS).anus == 3)>> - loose - <<elseif (getSlave($AS).anus == 2)>> - well-used - <<elseif (getSlave($AS).anus == 1)>> - tight - <<elseif (getSlave($AS).anus == 0)>> - virgin - <</if>> - anus to you and turning to face you. - <<else>> - $He's mildly hesitant at the thought of your hands groping $him, but as an amputee can do nothing about it. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks. You start rubbing along $his cheeks, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. As you rub your fingers around $his anus, $he starts to relax. $He quivers as you continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He purses $his lips while you circle around $his anus with your fingers. You look at $his face and $he is looking back at you doe-eyed, trying but failing not to get aroused by your soft touch on $his butt. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both and $he can't help but let out a moan while in your grasp. - <<if hasBothLegs(getSlave($AS))>> - You pull $his body closer towards you by $his buttocks, turn $him around, and push $him down, bending $him over your desk. - <<else>> - You move closer to $him, turn $him around and push $him down, face-down on your desk while $he tries to wriggle desperately. - <</if>> - You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his butthole as you trace it with your fingers and thumb. Eventually, you decide to stop, and $he <<if canSee(getSlave($AS))>>looks up into your eyes<<else>>angles $his head to face you<</if>> longingly, as if $he wants more. -<<else>> - <<if !isAmputee(getSlave($AS))>> - You instruct $him to present $his <<if $seeRace == 1>><<= getSlave($AS).race>> <</if>>anus. $He eagerly stands in front of you showing $his buttocks before happily presenting $his - <<if (getSlave($AS).anus > 3)>> - gaping - <<elseif (getSlave($AS).anus == 3)>> - loose - <<elseif (getSlave($AS).anus == 2)>> - well-used - <<elseif (getSlave($AS).anus == 1)>> - tight - <<elseif (getSlave($AS).anus == 0)>> - virgin - <</if>> - anus to you, spreading $his butt cheeks and turning to face you. - <<else>> - $He devotedly looks at you, awaiting your touch on $his body. - <</if>> - You reach around and grab $his - <<if getSlave($AS).butt < 2>> - flat - <<elseif getSlave($AS).butt <= 2>> - cute - <<elseif getSlave($AS).butt <= 3>> - firm - <<elseif getSlave($AS).butt <= 4>> - generous - <<elseif getSlave($AS).butt <= 5>> - massive - <<elseif getSlave($AS).butt <= 7>> - enormous - <<elseif getSlave($AS).butt <= 10>> - gigantic - <<elseif getSlave($AS).butt <= 14>> - inhuman - <<elseif getSlave($AS).butt <= 20>> - couch-like - <</if>> - buttocks. You start rubbing along $his cheeks, feeling the shape of $his<<if $seeRace == 1>> <<= getSlave($AS).race>><</if>> ass with your fingers and squeezing gently. As you rub your fingers around $his anus, $he sighs audibly. $He moans as you continue to move around $his posterior gently reaching to touch your fingertips against $his sphincter while rubbing $his ass at the same time. $He quivers while you circle around $his anus with your fingers. You look at $his face and $he is looking back at you longingly, getting aroused by your continued touch on $his butt. You keep squeezing $his buttocks tenderly — first one, then the other and then finally both and $he can't help but let out a moan while in your grasp. - <<if (hasAnyLegs(getSlave($AS)))>> - You pull $his body closer towards you by $his buttocks, turn $him around, and push $him down, bending $him over your desk. - <<else>> - You move closer to $him, turn $him around and push $him down, face-down on your desk so that $his butt is up facing towards you. - <</if>> - You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his butthole as you trace it with your fingers and thumb. Eventually, you decide to stop, and $he <<if canSee(getSlave($AS))>>looks up into your eyes<<else>>angles $his head to face you<</if>> ecstatically<<if (hasAnyLegs(getSlave($AS)))>> as $he stands up<</if>>, eager for more. -<</if>> diff --git a/src/npc/interaction/fondleDick.js b/src/npc/interaction/fondleDick.js new file mode 100644 index 0000000000000000000000000000000000000000..ca650c236e975ccce03d167368dee6701c6ee772 --- /dev/null +++ b/src/npc/interaction/fondleDick.js @@ -0,0 +1,211 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fondleDick = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him + } = getPronouns(slave); + + + r.push(`You call ${him} over so you can fondle ${his}`); + if (slave.dick === 1) { + r.push(`tiny dick`); + } else if (slave.dick === 2) { + r.push(`cute dick`); + } else if (slave.dick === 3) { + r.push(`dick`); + } else if (slave.dick === 4) { + r.push(`big dick`); + } else if (slave.dick === 5) { + r.push(`impressive dick`); + } else if (slave.dick === 6) { + r.push(`huge dick`); + } else if (slave.dick === 7) { + r.push(`gigantic dick`); + } else if (slave.dick === 8) { + r.push(`titanic dick`); + } else if (slave.dick === 9) { + r.push(`absurd dick`); + } else if (slave.dick === 10) { + r.push(`inhuman dick`); + } else { + r.push(`hypertrophied dick`); + } + r.push(`and`); + if (slave.scrotum > 0) { + if (slave.balls === 0) { + r.push(`soft scrotum.`); + } else if (slave.balls === 1) { + r.push(`tiny balls.`); + } else if (slave.balls === 2) { + r.push(`cute balls.`); + } else if (slave.balls === 3) { + r.push(`balls.`); + } else if (slave.balls === 4) { + r.push(`large balls.`); + } else if (slave.balls === 5) { + r.push(`huge balls.`); + } else { + r.push(`monstrous balls.`); + } + } else { + r.push(`soft perineum.`); + } + + if (slave.vaginaTat === "tribal patterns") { + r.push(`The tattoos on ${his} abdomen certainly draw attention there.`); + } else if (slave.vaginaTat === "lewd crest") { + r.push(`The crest on ${his} abdomen invokes lewd thoughts, after all.`); + } + + if (slave.dick !== 0) { + if (slave.vaginaPiercing > 1) { + r.push(`Metal glints all up and down ${his} cock.`); + } else if (slave.vaginaPiercing === 1) { + r.push(`Metal glints at the head of ${his} cock.`); + } + } + + if (slave.fetish === "mindbroken") { + r.push(`Like a doll, ${he} dumbly remains still, watching your hands move towards ${him} without any real interest. You gently trace your fingers along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its`); + strokeAndSqueeze(); + if (!canAchieveErection(slave)) { + r.push(`${His} dick remains flaccid as it cannot get stiff and you continue tenderly stroking ${his} soft dick but, ${he} does not respond.`); + } else { + r.push(`${His} prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft but, except for the cockmilk leaking out of ${his} dick, ${he} does not respond.`); + } + r.push(`Since ${he} is mindbroken, ${his} responses to you are purely physiological and your actions have no affect on ${him} mentally. You leave your toy for one of your other slaves to clean and maintain.`); + } else if (isAmputee(slave)) { + r.push(`Since ${he}'s a quadruple amputee, ${he}'s yours to use as a human finger toy. While ${he}'s lying there helpless, you move your hands towards ${him}. You gently trace your fingers along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its`); + strokeAndSqueeze(); + if (!canAchieveErection(slave)) { + r.push(`${His} dick remains flaccid as it cannot get stiff and you continue tenderly stroking ${his} soft dick but, except for the cockmilk leaking out of ${his} dick, ${he} does not respond.`); + } else { + r.push(`${His} prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft but, except for the cockmilk leaking out of ${his} dick, ${he} does not respond.`); + } + r.push(`Soon, ${his} movements indicate that ${he} is orgasming. ${He} shudders and leaks ${his} cockmilk as ${he} orgasms in your hand,`); + if (canSee(slave)) { + r.push(`looking at`); + } else { + r.push(`facing`); + } + r.push(`you as you stop moving your hands. You leave your toy for one of your other slaves to clean and maintain.`); + } else if (slave.fetish === "submissive" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} comes submissively over, smiling a little submissive smile, and points ${his} dick towards you. You gently trace your fingers along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its`); + strokeAndSqueeze(); + standardStiffy(); + r.push(`Soon, ${his} movements indicate that ${he} is orgasming. ${He} shudders and leaks ${his} cockmilk as ${he} orgasms in your hands before submissively avoiding your gaze as you get cleaned up.`); + } else if (slave.devotion < -20) { + r.push(`${He} clearly dislikes the thought of getting ${his} dick fondled by you. ${His} lower lip quivers with trepidation as ${he} watches your hands move towards ${him}. ${He} has no choice but to obey if ${he} wants to avoid punishment. ${He} gasps and shakes as you gently trace along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its`); + strokeAndSqueeze(); + standardStiffy(); + r.push(`${He}`); + if (hasAnyArms(slave)) { + r.push(`grabs your wrist with ${his} ${hasBothArms(slave) ? `hands` : `hand`}`); + } else { + r.push(`jostles against your arm`); + } + r.push(`and tries to stop it from moving but is unable to and despite ${his} resistant pulling against you. ${He} bites ${his} lip but ${he} cannot help but moan. Soon ${he} shudders and leaks ${his} cockmilk as ${he} orgasms in your hands. ${He} looks at you shamefully as you stop moving your hands and get cleaned up.`); + } else if (slave.fetish === "masochist" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} hurriedly comes over to you, to stand between you and your desk. You lean over while ${he} lies down upon it, face-up, with ${his} dick pointed towards you. ${He} gasps when you slap ${his} ${dickDesc()} with your hand. You firmly grab it and tightly squeeze it with your fingers, stroking your hand along its shaft.`); + if (slave.balls > 0) { + r.push(`Simultaneously, you slap ${his} ${ballDesc()} with your other hand.`); + } + r.push(`You firmly wrap your fingers, thumb and palm around ${his} dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze and pinch the tip and head of ${his} dick between your fingers and thumb.`); + standardStiffy(); + r.push(`Your rough play leaves red marks on ${his} breasts and nipples and ${he} becomes even more aroused. Soon, ${his} movements indicate that ${he} is orgasming. ${He} shudders and leaks ${his} cockmilk as ${he} orgasms in your hands. ${He} rubs the marks on ${his} dick and balls with ${his} hands, an ecstatic look on ${his} ${slave.skin} face. ${He} looks at you longingly as you get cleaned up, hungry for more.`); + } else if (slave.devotion <= 20) { + r.push(`${He} obeys silently, standing in front of you as you move your hands towards ${him}. You gently trace your fingers along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its`); + strokeAndSqueeze(); + standardStiffy(); + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks into your eyes`); + } else { + r.push(`faces you`); + } + r.push(`furtively while ${he}`); + if (hasAnyArms(slave)) { + r.push(`grabs your ${hasBothArms(slave) ? `wrists` : `wrist`} with ${his} ${hasBothArms(slave) ? `hands` : `hand`},`); + } else { + r.push(`moves ${his} hips ever so slightly,`); + } + r.push(`moving to match your hand movements. ${He} moans and shudders, leaking ${his} cockmilk as ${he} orgasms in your hands. ${He} dutifully looks at you as you stop moving your hands and get cleaned up.`); + } else { + r.push(`${He} devotedly comes over and gives you an impassioned kiss. ${He} smiles and points ${his} dick towards you. You gently trace your fingers along ${his} ${dickDesc()} before taking it gently in one hand and tenderly stroking your hand along its shaft`); + strokeAndSqueeze(); + standardStiffy(); + r.push(`${He} begs you not to stop. Soon, ${he} moans and ${his} movements indicate that ${he} is about to orgasm. ${He} shudders and leaks ${his} cockmilk as ${he} orgasms in your hands. ${He} looks at you passionately as you stop moving your hands and get cleaned up.`); + } + App.Events.addParagraph(node, r); + return node; + + function ballDesc() { + if (slave.scrotum === 0) { + return `soft skin beneath ${his} base and ${his} butthole`; + } else if (slave.balls === 1) { + return `tiny balls`; + } else if (slave.balls === 2) { + return `small balls`; + } else if (slave.balls === 3) { + return `balls`; + } else if (slave.balls === 4) { + return `big balls`; + } else if (slave.balls === 5) { + return `lemon-sized balls`; + } else if (slave.balls < 10) { + return `fist-sized balls`; + } else { + return `hypertrophied balls`; + } + } + + function dickDesc() { + if (slave.dick === 1) { + return `tiny dick`; + } else if (slave.dick === 2) { + return `cute dick`; + } else if (slave.dick === 3) { + return `dick`; + } else if (slave.dick === 4) { + return `big dick`; + } else if (slave.dick === 5) { + return `impressive dick`; + } else if (slave.dick === 6) { + return `huge dick`; + } else if (slave.dick === 7) { + return `gigantic dick`; + } else if (slave.dick === 8) { + return `titanic dick`; + } else if (slave.dick === 9) { + return `absurd dick`; + } else if (slave.dick === 10) { + return `inhuman dick`; + } else { + return `hypertrophied dick`; + } + } + + function strokeAndSqueeze() { + if (slave.balls > 0) { + r.push(`shaft, while simultaneously cupping ${his} ${ballDesc()} with your other hand.`); + } else { + r.push(`shaft.`); + } + r.push(`You firmly wrap your fingers, thumb and palm around ${his} dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of ${his} dick between your fingers and thumb.`); + } + + function standardStiffy() { + if (canAchieveErection(slave)) { + r.push(`${His} prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft.`); + } else { + r.push(`${His} dick remains flaccid as it cannot get stiff and you continue tenderly stroking ${his} soft dick.`); + } + } +}; diff --git a/src/npc/interaction/fondleDick.tw b/src/npc/interaction/fondleDick.tw deleted file mode 100644 index 1542b6e295055354fe56a379b18dce74de183341..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fondleDick.tw +++ /dev/null @@ -1,428 +0,0 @@ -:: FondleDick [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You call $him over so you can fondle $his -<<if getSlave($AS).dick == 1>> - tiny dick -<<elseif getSlave($AS).dick == 2>> - cute dick -<<elseif getSlave($AS).dick == 3>> - dick -<<elseif getSlave($AS).dick == 4>> - big dick -<<elseif getSlave($AS).dick == 5>> - impressive dick -<<elseif getSlave($AS).dick == 6>> - huge dick -<<elseif getSlave($AS).dick == 7>> - gigantic dick -<<elseif getSlave($AS).dick == 8>> - titanic dick -<<elseif getSlave($AS).dick == 9>> - absurd dick -<<elseif getSlave($AS).dick == 10>> - inhuman dick -<<else>> - hypertrophied dick -<</if>> -and -<<if getSlave($AS).scrotum > 0>> - <<if getSlave($AS).balls == 0>> - soft scrotum. - <<elseif getSlave($AS).balls == 1>> - tiny balls. - <<elseif getSlave($AS).balls == 2>> - cute balls. - <<elseif getSlave($AS).balls == 3>> - balls. - <<elseif getSlave($AS).balls == 4>> - large balls. - <<elseif getSlave($AS).balls == 5>> - huge balls. - <<else>> - monstrous balls. - <</if>> -<<else>> - soft perineum. -<</if>> - -<<if (getSlave($AS).vaginaTat == "tribal patterns")>> - The tattoos on $his abdomen certainly draw attention there. -<<elseif (getSlave($AS).vaginaTat == "lewd crest")>> - The crest on $his abdomen invokes lewd thoughts, after all. -<</if>> - -<<if (getSlave($AS).vaginaPiercing > 1) && (getSlave($AS).dick != 0)>> - Metal glints all up and down $his cock. -<<elseif (getSlave($AS).vaginaPiercing == 1) && (getSlave($AS).dick != 0)>> - Metal glints at the head of $his cock. -<</if>> - -<<if (getSlave($AS).fetish == "mindbroken")>> - Like a doll, $he dumbly remains still, watching your hands move towards $him without any real interest. You gently trace your fingers along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping - <<if getSlave($AS).scrotum == 0>> - the soft skin between $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - $his tiny balls - <<elseif getSlave($AS).balls == 2>> - $his small balls - <<elseif getSlave($AS).balls == 3>> - $his balls - <<elseif getSlave($AS).balls == 4>> - $his big balls - <<elseif getSlave($AS).balls == 5>> - $his lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - $his fist-sized balls - <<else>> - $his hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick but, $he does not respond. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft but, except for the cockmilk leaking out of $his dick, $he does not respond. - <</if>> - Since $he is mindbroken, $his responses to you are purely physiological and your actions have no affect on $him mentally. You leave your toy for one of your other slaves to clean and maintain. -<<elseif isAmputee(getSlave($AS))>> - Since $he's a quadruple amputee, $he's yours to use as a human finger toy. While $he's lying there helpless, you move your hands towards $him. You gently trace your fingers along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping $his - <<if getSlave($AS).scrotum == 0>> - soft skin beneath $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick but, except for the cockmilk leaking out of $his dick, $he does not respond. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft but, except for the cockmilk leaking out of $his dick, $he does not respond. - <</if>> Soon, $his movements indicate that $he is orgasming. $He shudders and leaks $his cockmilk as $he orgasms in your hand, looking at you as you stop moving your hands. You leave your toy for one of your other slaves to clean and maintain. -<<elseif (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He comes submissively over, smiling a little submissive smile, and points $his dick towards you. You gently trace your fingers along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping $his - <<if getSlave($AS).scrotum == 0>> - soft skin beneath $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft. - <</if>> Soon, $his movements indicate that $he is orgasming. $He shudders and leaks $his cockmilk as $he orgasms in your hands before submissively avoiding your gaze as you get cleaned up. -<<elseif getSlave($AS).devotion < -20>> - $He clearly dislikes the thought of getting $his dick fondled by you. $His lower lip quivers with trepidation as $he watches your hands move towards $him. $He has no choice but to obey if $he wants to avoid punishment. $He gasps and shakes as you gently trace along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping $his - <<if getSlave($AS).scrotum == 0>> - soft skin beneath $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick. - <<else>> - $His prick stiffens like a rod in your hand and you continue your expert strokes along the erect shaft. - <</if>> - $He <<if hasAnyArms(getSlave($AS))>>grabs your wrist with $his hand<<if hasBothArms(getSlave($AS))>>s<</if>><<else>>jostles against your arm<</if>> and tries to stop it from moving but is unable to and despite $his resistant pulling against you. $He bites $his lip but $he cannot help but moan. Soon $he shudders and leaks $his cockmilk as $he orgasms in your hands. $He looks at you shamefully as you stop moving your hands and get cleaned up. -<<elseif (getSlave($AS).fetish == "masochist") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He hurriedly comes over to you, to stand between you and your desk. You lean over while $he lies down upon it, face-up, with $his dick pointed towards you. $He gasps when you slap $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> - with your hand. You firmly grab it and tightly squeeze it with your fingers, stroking your hand along its shaft. - <<if getSlave($AS).balls > 0>>, - Simultaneously, you slap $his - <<if getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze and pinch the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft. - <</if>> Your rough play leaves red marks on $his breasts and nipples and $he becomes even more aroused. Soon, $his movements indicate that $he is orgasming. $He shudders and leaks $his cockmilk as $he orgasms in your hands. $He rubs the marks on $his dick and balls with $his hands, an ecstatic look on $his <<= getSlave($AS).skin>> face. $He looks at you longingly as you get cleaned up, hungry for more. -<<elseif getSlave($AS).devotion <= 20>> - $He obeys silently, standing in front of you as you move your hands towards $him. You gently trace your fingers along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping $his - <<if getSlave($AS).scrotum == 0>> - soft skin beneath $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft. - <</if>> - $He <<if canSee(getSlave($AS))>>looks into your eyes<<else>>faces you<</if>> furtively while $he <<if hasAnyArms(getSlave($AS))>>grabs your wrist<<if hasBothArms(getSlave($AS))>>s<</if>> with $his hand<<if hasBothArms(getSlave($AS))>>s<</if>><<else>>moves $his hips ever so slightly<</if>>, moving to match your hand movements. $He moans and shudders, leaking $his cockmilk as $he orgasms in your hands. $He dutifully looks at you as you stop moving your hands and get cleaned up. -<<else>> - $He devotedly comes over and gives you an impassioned kiss. $He smiles and points $his dick towards you. You gently trace your fingers along $his - <<if getSlave($AS).dick == 1>> - tiny dick - <<elseif getSlave($AS).dick == 2>> - cute dick - <<elseif getSlave($AS).dick == 3>> - dick - <<elseif getSlave($AS).dick == 4>> - big dick - <<elseif getSlave($AS).dick == 5>> - impressive dick - <<elseif getSlave($AS).dick == 6>> - huge dick - <<elseif getSlave($AS).dick == 7>> - gigantic dick - <<elseif getSlave($AS).dick == 8>> - titanic dick - <<elseif getSlave($AS).dick == 9>> - absurd dick - <<elseif getSlave($AS).dick == 10>> - inhuman dick - <<else>> - hypertrophied dick - <</if>> before taking it gently in one hand and tenderly stroking your hand along its shaft<<if getSlave($AS).balls > 0>>,<<else>>.<</if>> - <<if getSlave($AS).balls > 0>> - while simultaneously cupping $his - <<if getSlave($AS).scrotum == 0>> - soft skin beneath $his base and $his butthole - <<elseif getSlave($AS).balls == 1>> - tiny balls - <<elseif getSlave($AS).balls == 2>> - small balls - <<elseif getSlave($AS).balls == 3>> - balls - <<elseif getSlave($AS).balls == 4>> - big balls - <<elseif getSlave($AS).balls == 5>> - lemon-sized balls - <<elseif getSlave($AS).balls < 10>> - fist-sized balls - <<else>> - hypertrophied balls - <</if>> - with your other hand. - <</if>> - You firmly wrap your fingers, thumb and palm around $his dick, rhythmically stroking along with both hands, starting slow but gradually increasing the speed of your movements. You occasionally squeeze the tip and head of $his dick between your fingers and thumb. - <<if !canAchieveErection(getSlave($AS))>> - $His dick remains flaccid as it cannot get stiff and you continue tenderly stroking $his soft dick. - <<else>> - $His prick stiffens like a rod in your hands and you continue your expert strokes along the erect shaft. - <</if>> $He begs you not to stop. Soon, $he moans and $his movements indicate that $he is about to orgasm. $He shudders and leaks $his cockmilk as $he orgasms in your hands. $He looks at you passionately as you stop moving your hands and get cleaned up. -<</if>> diff --git a/src/npc/interaction/fondleVagina.js b/src/npc/interaction/fondleVagina.js new file mode 100644 index 0000000000000000000000000000000000000000..444d1d1a0dc6e794691cdaf42cba192276319f2c --- /dev/null +++ b/src/npc/interaction/fondleVagina.js @@ -0,0 +1,677 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fondleVagina = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself + } = getPronouns(slave); + + const {title: Master, say: say} = getEnunciation(slave); + + r.push(`You call ${him} over so you can fondle ${his}`); + if (slave.vagina > 3) { + r.push(`gaping vagina.`); + } else if (slave.vagina === 3) { + r.push(`loose vagina.`); + } else if (slave.vagina === 2) { + r.push(`well-used pussy.`); + } else if (slave.vagina === 1) { + r.push(`tight pussy.`); + } else if (slave.vagina === 0) { + r.push(`virgin pussy.`); + } + + if (slave.vaginaTat === "tribal patterns") { + r.push(`The tattoos on ${his} abdomen certainly draw attention there.`); + } else if (slave.vaginaTat === "lewd crest") { + r.push(`The crest on ${his} abdomen invokes lewd thoughts, after all.`); + } + + if (slave.devotion <= 20) { + if (slave.clit === 1) { + r.push(`${His} big clit peeks out from under its hood`); + } else if (slave.clit === 2) { + r.push(`${His} huge clit is impossible to miss`); + } else if (slave.clit > 1) { + r.push(`${His} pseudophallus-sized clit is soft`); + } else if (slave.chastityPenis) { + r.push(`${His} useless penis is properly caged`); + } else if (slave.dick > 0) { + r.push(`${His} dick is soft`); + } else { + r.push(`${His} pretty little clit is barely visible`); + } + r.push(`and`); + if (slave.labia === 1) { + r.push(`${his} lovely petals are quite inviting.`); + } else if (slave.labia === 2) { + r.push(`${his} prominent petals are inviting.`); + } else if (slave.labia > 1) { + r.push(`${his} labia are so large they present a slight obstacle to entry.`); + } else { + r.push(`${his} cute labia are barely noticeable.`); + } + } else { + if (slave.clit === 1) { + r.push(`${His} big clit peeks out from under its hood`); + } else if (slave.clit === 2) { + r.push(`${His} huge clit is impossible to miss`); + } else if (slave.clit > 1) { + r.push(`${His} pseudophallus-sized clit is soft`); + } else if (slave.chastityPenis) { + r.push(`${His} chastity cage is uncomfortably full`); + } else if (canAchieveErection(slave)) { + r.push(`${His} dick vies for attention`); + } else if (slave.dick > 0) { + r.push(`${His} soft dick dribbles excitedly`); + } else { + r.push(`${His} pretty little clit is ready for you,`); + } + r.push(`and`); + if (slave.labia === 1) { + r.push(`${his} lovely petals are moist with arousal.`); + } else if (slave.labia === 2) { + r.push(`${his} prominent petals bear a sheen of arousal.`); + } else if (slave.labia > 1) { + r.push(`${his} huge labia are almost dripping with arousal.`); + } else { + r.push(`${he}'s becoming moist.`); + } + } + + if (slave.vaginaPiercing > 1 && slave.clitPiercing > 0) { + r.push(`${His} pierced lips and clit have ${his} nice and wet.`); + } else if (slave.clitPiercing > 0) { + r.push(`${His} pierced clit has ${him} nice and moist.`); + } + + if (slave.vagina === 0) { + if (slave.fetish === "mindbroken") { + r.push(`${He} accepts your orders dumbly and presents ${his} virgin pussy to you,`); + if (canSee(slave)) { + r.push(`watching your hands move towards ${him}`); + } else { + r.push(`waiting`); + } + r.push(`without any real interest. You`); + if (slave.balls >= 60) { + r.push(`struggle to shove ${his} oversized nuts out of the way and`); + } else if (slave.balls >= 30) { + r.push(`struggle to lift ${his} oversized nuts and`); + } else if (slave.balls >= 14) { + r.push(`palm one of ${his} giant testicles and`); + } else if (slave.balls >= 9) { + r.push(`cup ${his} huge balls and`); + } else if (slave.balls >= 5) { + r.push(`lift ${his} big balls out of the way and`); + } else if (slave.scrotum > 0) { + r.push(`reach under ${his} dangling scrotum and`); + } + r.push(`gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally flick ${his}`); + if (slave.clit === 1) { + r.push(`erect clit`); + } else if (slave.clit === 2) { + r.push(`large clit`); + } else if (slave.clit > 1) { + r.push(`massive clit`); + } else if (slave.chastityPenis) { + r.push(`${his} cage`); + } else if (canAchieveErection(slave)) { + r.push(`${his} erection`); + } else if (slave.dick > 0) { + r.push(`soft dick`); + } else { + r.push(`pretty little clit`); + } + r.push(`and rub it with your fingertips as your hand nears it but outside of the pussy juices`); + if (hasAnyLegs(slave)) { + r.push(`trickling down ${his} leg,`); + } else { + r.push(`pooling beneath ${him},`); + } + r.push(`${he} does not respond. Since ${he} is mindbroken, ${his} responses to you are purely physiological and your actions have no affect on ${him} mentally.`); + } else if (slave.devotion > 50) { + r.push(`${He} accepts your orders happily and presents ${his} virgin pussy to you,`); + if (slave.scrotum > 0) { + r.push(`shifting ${his} balls out of the way and`); + } + if (canSee(slave)) { + r.push(`watching your hands with eagerness.`); + } else { + r.push(`eagerly awaiting your touch.`); + } + r.push(`${He} gasps and quivers with pleasure as you gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements.`); + if (hasAnyArms(slave)) { + if (slave.fetish === "boobs") { + r.push(`${He} fondles ${his} breasts and plays with ${his} nipples at the same time.`); + } else if ((slave.fetish === "pregnancy") && slave.belly >= 1500) { + r.push(`${He} strokes the curve of ${his} belly at the same time.`); + } + } + r.push(`You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. As ${he} becomes more aroused, ${he}`); + if (hasAnyArms(slave)) { + r.push(`grabs hold of your wrist lightly, moving ${his} hands along with the motion of your own.`); + } else { + r.push(`begins to move ${his} body to the rhythm of your motions.`); + } + r.push(`${His} pussy juices`); + if (hasAnyLegs(slave)) { + r.push(`run down ${his} leg`); + } else { + r.push(`pool beneath ${him}`); + } + r.push(`as ${he} begins to moan audibly${hasAnyLegs(slave) ? `, gently clamping your hand between ${his} thighs` : ``} as you continue to move your hand along ${his} pussy. ${He} moans loudly as ${he} shudders in orgasmic joy.`); + if (!hasAnyArms(slave) && !canTalk(slave)) { + r.push(`${He} does ${his} best to communicate love with ${his} ${App.Desc.eyesColor(slave)}.`); + } else if (!canTalk(slave)) { + r.push(`${He} signs that ${he} loves you.`); + } else { + r.push( + Spoken(slave, `"I love you, ${Master},"`), + `${he} ${say}s rapturously.` + ); + } + } else if (slave.devotion > 20) { + r.push(`${He} accepts your orders without comment and presents ${his} virgin pussy to you,`); + if (slave.scrotum > 0) { + r.push(`shifting ${his} balls out of the way and`); + } + if (canSee(slave)) { + r.push(`watching your hands with some slight trepidation.`); + } else { + r.push(`nervously anticipating your touch.`); + } + r.push(`${He} gasps as you gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${His} pussy juices`); + if (hasAnyLegs(slave)) { + r.push(`run down ${his} leg`); + } else { + r.push(`pool beneath ${him}`); + } + r.push(`as ${he} begins to moan`); + if (hasAnyArms(slave)) { + r.push(`audibly, grasping your wrist with ${his} ${hasBothArms(slave) ? `hands` : `hand`} tightly`); + } else { + r.push(`audibly`); + } + if (hasAnyLegs(slave)) { + r.push(`and clamping ${his} thighs together`); + } + r.push(`as you continue to move your hand along ${his} pussy. ${He} moans as ${he} shudders in an orgasm, almost embarrassed.`); + if (canSee(slave)) { + r.push(`${He} looks into your eyes expectantly.`); + } else { + r.push(`${He} pants expectantly, bracing for more.`); + } + } else if (slave.devotion >= -20) { + r.push(`${He} clearly dislikes the thought of getting fondled by you. ${His} lower lip quivers with trepidation as ${he}`); + if (canSee(slave)) { + r.push(`watches your hands move towards ${him}.`); + } else { + r.push(`waits for your hand to touch ${him}.`); + } + r.push(`${He} has no choice but to`); + if (slave.scrotum > 0) { + r.push(`shift ${his} balls out of the way and`); + } + r.push(`obey if ${he} wants to avoid punishment. ${He} gasps and shakes as you gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} growing erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${His} pussy juices`); + if (hasAnyLegs(slave)) { + r.push(`run down ${his} leg`); + } else { + r.push(`pool beneath ${him}`); + } + r.push(`as ${he} begins to moan`); + if (hasAnyArms(slave)) { + r.push(`audibly, grasping your wrist with ${his} ${hasBothArms(slave) ? `hands` : `hand`} tightly`); + } else { + r.push(`audibly`); + } + if (hasBothLegs(slave)) { + r.push(`and clamping ${his} thighs together`); + } + r.push(`as you continue to move your hand along ${his} pussy. ${He} moans as ${he} shudders in an orgasm, clearly embarrassed to end up in this position as ${he} loses control.`); + } else { + r.push(`As you anticipated, ${he} refuses to let ${himself} be groped by you. ${He} is unable to resist you, also as you expected, when you mention some of the alternatives. ${He} gasps and shakes as you gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements.`); + if (hasAnyArms(slave)) { + r.push(`${He} grabs your wrist with ${his} hand`); + if (hasBothArms(slave)) { + r.push(`s`); + } + r.push(`in an effort to stop you but ${he} is unable to stop your hand from moving for long.`); + } + r.push(`You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} unwilling erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${He}`); + if (hasAnyArms(slave)) { + r.push(`tightly grasps your wrist`); + if (hasBothLegs(slave)) { + r.push(`and`); + } + } + if (hasBothLegs(slave)) { + r.push(`clamps ${his} thighs together`); + } + if (!hasAnyArms(slave) && !hasBothLegs(slave)) { + r.push(`squirms uncomfortably a little`); + } + r.push(`as you continue to move your hand along ${his} pussy. ${He} moans as ${he} shudders in an orgasm, gripping tighter and shamefully`); + if (canSee(slave)) { + r.push(`looking at`); + } else { + r.push(`facing`); + } + r.push(`you as you stop moving your hand.`); + } + } else if (slave.fetish === "mindbroken") { + r.push(`Like a doll, ${he} dumbly remains still,`); + if (canSee(slave)) { + r.push(`watching your hands move towards ${him}`); + } else { + r.push(`waiting`); + } + r.push(`without any real interest. You`); + if (slave.balls >= 60) { + r.push(`struggle to shove ${his} oversized nuts out of the way and`); + } else if (slave.balls >= 30) { + r.push(`struggle to lift ${his} oversized nuts and`); + } else if (slave.balls >= 14) { + r.push(`palm one of ${his} giant testicles and`); + } else if (slave.balls >= 9) { + r.push(`cup ${his} huge balls and`); + } else if (slave.balls >= 5) { + r.push(`lift ${his} big balls out of the way and`); + } else if (slave.scrotum > 0) { + r.push(`reach under ${his} dangling scrotum and`); + } + r.push(`gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally flick ${his}`); + if (slave.clit === 1) { + r.push(`erect clit`); + } else if (slave.clit === 2) { + r.push(`large clit`); + } else if (slave.clit > 1) { + r.push(`massive clit`); + } else if (slave.chastityPenis) { + r.push(`${his} cage`); + } else if (canAchieveErection(slave)) { + r.push(`${his} erection`); + } else if (slave.dick > 0) { + r.push(`soft dick`); + } else { + r.push(`pretty little clit`); + } + r.push(`and rub it with your fingertips as your hand nears it. Except for the pussy juices`); + if (hasAnyLegs(slave)) { + r.push(`trickling down ${his} leg,`); + } else { + r.push(`pooling beneath ${him},`); + } + r.push(`${he} does not respond. Since ${he} is mindbroken, ${his} responses to you are purely physiological and your actions have no affect on ${him} mentally. You leave your toy for one of your other slaves to clean and maintain.`); + } else if (isAmputee(slave)) { + r.push(`Since ${he}'s a quadruple amputee, ${he}'s yours to use as a human finger toy. While ${he}'s lying there helpless, you move your hands towards`); + if (slave.balls >= 60) { + r.push(`${him} and struggle to shove ${his} oversized nuts out of the way.`); + } else if (slave.balls >= 30) { + r.push(`${him} and strain to lift ${his} oversized nuts out of the way.`); + } else if (slave.balls >= 14) { + r.push(`${him}, palming one of ${his} giant testicles to make way.`); + } else if (slave.balls >= 9) { + r.push(`${him}, cupping ${his} huge balls to keep them out of the way.`); + } else if (slave.balls >= 5) { + r.push(`${him}, lifting ${his} big balls out of the way in the process.`); + } else if (slave.scrotum > 0) { + r.push(`${him}, slipping under ${his} dangling scrotum in the process.`); + } else { + r.push(`${him}.`); + } + r.push(`You gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. Soon ${he} shudders in an orgasm,`); + if (canSee(slave)) { + r.push(`looking at`); + } else { + r.push(`facing`); + } + r.push(`you as you stop moving your hand. You leave your toy for one of your other slaves to clean and maintain.`); + } else if (slave.fetish === "submissive" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} comes submissively over, smiling a little submissive smile, and points ${his} pussy towards you${(slave.scrotum > 0) ? `, shifting ${his} balls out of the way and` : ``}. You gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${He} begs you not to stop as ${he}`); + if (canSee(slave)) { + r.push(`looks into your eyes`); + } else { + r.push(`faces`); + } + r.push(`expectantly as ${he} shudders in an orgasm.`); + } else if (slave.devotion < -20) { + r.push(`${He} tries to refuse, so you push the disobedient slave down`); + if (canStand(slave)) { + r.push(`over your desk`); + } + r.push(`as you move your hands towards ${him}. You gently`); + if (slave.scrotum > 0) { + r.push(`shift ${his} balls out of the way and`); + } + r.push(`trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. ${He}`); + if (hasAnyArms(slave)) { + r.push(`grabs your wrist`); + } else { + r.push(`twists and turns`); + } + r.push(`to try to stop you but ${he} is unable to. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} unwilling erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it, despite ${his} resistant pulling against you. ${He} bites ${his} lip but ${he} cannot help but moan and ${he} shudders in an orgasm. ${He}`); + if (canSee(slave)) { + r.push(`looks at you`); + } else { + r.push(`faces`); + } + r.push(`shamefully as you stop moving your hand.`); + } else if (slave.devotion <= 20) { + r.push(`${He} obeys silently,`); + if (canStand(slave)) { + r.push(`standing`); + } else { + r.push(`resting`); + } + r.push(`in front of you as you move your hands towards ${him}. You gently`); + if (slave.scrotum > 0) { + r.push(`shift ${his} balls out of the way and`); + } + r.push(`trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} growing erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${He}`); + if (canSee(slave)) { + r.push(`looks into your eyes`); + } else { + r.push(`faces you`); + } + r.push(`furtively while ${he}`); + if (hasAnyArms(slave)) { + r.push(`grabs your wrist with ${his} hand`); + if (hasBothLegs(slave)) { + r.push(`and`); + } + } + if (hasBothLegs(slave)) { + r.push(`squeezes ${his} thighs together`); + } + if (!hasAnyArms(slave) && !hasBothLegs(slave)) { + r.push(`squirms a little`); + } + r.push(`as ${he} moans and shudders in an orgasm. ${He} dutifully`); + if (canSee(slave)) { + r.push(`looks at you`); + } else { + r.push(`faces`); + } + r.push(`as you stop moving your hand.`); + } else { + r.push(`${He} devotedly`); + if (canMove(slave)) { + r.push(`comes over and gives you an impassioned kiss. ${He}`); + } + r.push(`smiles${(slave.scrotum > 0) ? `, shifts ${his} balls to the side,` : ``} and points ${his} pussy towards you. You gently trace along ${his}`); + if (slave.labia === 1) { + r.push(`lovely petals`); + } else if (slave.labia === 2) { + r.push(`prominent petals`); + } else if (slave.labia > 1) { + r.push(`huge labia`); + } else { + r.push(`cute labia`); + } + r.push(`with your outstretched fingers, strumming up and down the edges of ${his} pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally`); + if (slave.clit === 1) { + r.push(`flick ${his} large clit and rub it with your fingertips`); + } else if (slave.clit === 2) { + r.push(`flick ${his} huge clit and rub it with your fingertips`); + } else if (slave.clit > 1) { + r.push(`flick ${his} massive clit and rub it with your fingertips`); + } else if (slave.chastityPenis) { + r.push(`caress ${his} chastity cage with your palm`); + } else if (canAchieveErection(slave)) { + r.push(`flick ${his} erection and give it a stroke`); + } else if (slave.dick > 0) { + r.push(`flick ${his} soft dick and rub it with your fingertips`); + } else { + r.push(`flick ${his} pretty little clit and rub it with your fingertips`); + } + r.push(`as your hand nears it. ${He}`); + if (hasAnyLegs(slave)) { + r.push(`squeezes ${his} thigh`); + if (hasBothLegs(slave)) { + r.push(`s`); + } + } else { + r.push(`pushes`); + } + r.push(`lightly against your hand as ${he} moans and shudders in orgasmic bliss. ${He}`); + if (canSee(slave)) { + r.push(`looks at you`); + } else { + r.push(`faces`); + } + r.push(`passionately as you stop moving your hand.`); + } + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/fondleVagina.tw b/src/npc/interaction/fondleVagina.tw deleted file mode 100644 index 164cbd9da455ffdeea25800a7eed89595a203fa9..0000000000000000000000000000000000000000 --- a/src/npc/interaction/fondleVagina.tw +++ /dev/null @@ -1,577 +0,0 @@ -:: FondleVagina [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> - -You call $him over so you can fondle $his -<<if (getSlave($AS).vagina > 3)>> - gaping vagina. -<<elseif (getSlave($AS).vagina == 3)>> - loose vagina. -<<elseif (getSlave($AS).vagina == 2)>> - well-used pussy. -<<elseif (getSlave($AS).vagina == 1)>> - tight pussy. -<<elseif (getSlave($AS).vagina == 0)>> - virgin pussy. -<<elseif (getSlave($AS).vagina == -1)>> - dick. -<</if>> - -<<if (getSlave($AS).vaginaTat == "tribal patterns")>> - The tattoos on $his abdomen certainly draw attention there. -<<elseif (getSlave($AS).vaginaTat == "lewd crest")>> - The crest on $his abdomen invokes lewd thoughts, after all. -<</if>> - -<<if (getSlave($AS).vagina != -1)>> - <<if getSlave($AS).devotion <= 20>> - <<if getSlave($AS).clit == 1>> - $His big clit peeks out from under its hood - <<elseif getSlave($AS).clit == 2>> - $His huge clit is impossible to miss - <<elseif getSlave($AS).clit > 1>> - $His pseudophallus-sized clit is soft - <<elseif getSlave($AS).chastityPenis>> - $His useless penis is properly caged - <<elseif getSlave($AS).dick > 0>> - $His dick is soft - <<else>> - $His pretty little clit is barely visible - <</if>> - and - <<if getSlave($AS).labia == 1>> - $his lovely petals are quite inviting. - <<elseif getSlave($AS).labia == 2>> - $his prominent petals are inviting. - <<elseif getSlave($AS).labia > 1>> - $his labia are so large they present a slight obstacle to entry. - <<else>> - $his cute labia are barely noticeable. - <</if>> - <<else>> - <<if getSlave($AS).clit == 1>> - $His big clit peeks out from under its hood - <<elseif getSlave($AS).clit == 2>> - $His huge clit is impossible to miss - <<elseif getSlave($AS).clit > 1>> - $His pseudophallus-sized clit is soft - <<elseif getSlave($AS).chastityPenis>> - $His chastity cage is uncomfortably full - <<elseif canAchieveErection(getSlave($AS))>> - $His dick vies for attention - <<elseif getSlave($AS).dick > 0>> - $His soft dick dribbles excitedly - <<else>> - $His pretty little clit is ready for you, - <</if>> - and - <<if getSlave($AS).labia == 1>> - $his lovely petals are moist with arousal. - <<elseif getSlave($AS).labia == 2>> - $his prominent petals bear a sheen of arousal. - <<elseif getSlave($AS).labia > 1>> - $his huge labia are almost dripping with arousal. - <<else>> - $he's becoming moist. - <</if>> - <</if>> -<</if>> - -<<if (getSlave($AS).vaginaPiercing > 1) && (getSlave($AS).vagina != -1) && getSlave($AS).clitPiercing > 0>> - $His pierced lips and clit have $his nice and wet. -<<elseif (getSlave($AS).clitPiercing > 0) && (getSlave($AS).vagina != -1)>> - $His pierced clit has $him nice and moist. -<</if>> - -<<if (getSlave($AS).vagina == 0)>> - <<if (getSlave($AS).fetish == "mindbroken")>> - $He accepts your orders dumbly and presents $his virgin pussy to you, <<if canSee(getSlave($AS))>>watching your hands move towards $him<<else>>waiting<</if>> without any real interest. - You - <<if getSlave($AS).balls >= 60>> - struggle to shove $his oversized nuts out of the way and - <<elseif getSlave($AS).balls >= 30>> - struggle to lift $his oversized nuts and - <<elseif getSlave($AS).balls >= 14>> - palm one of $his giant testicles and - <<elseif getSlave($AS).balls >= 9>> - cup $his huge balls and - <<elseif getSlave($AS).balls >= 5>> - lift $his big balls out of the way and - <<elseif getSlave($AS).scrotum > 0>> - reach under $his dangling scrotum and - <</if>> - gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally flick $his - <<if getSlave($AS).clit == 1>> - erect clit - <<elseif getSlave($AS).clit == 2>> - large clit - <<elseif getSlave($AS).clit > 1>> - massive clit - <<elseif getSlave($AS).chastityPenis>> - $his cage - <<elseif canAchieveErection(getSlave($AS))>> - $his erection - <<elseif getSlave($AS).dick > 0>> - soft dick - <<else>> - pretty little clit - <</if>> - and rub it with your fingertips as your hand nears it but outside of the pussy juices - <<if hasAnyLegs(getSlave($AS))>> - trickling down $his leg, - <<else>> - pooling beneath $him, - <</if>> - $he does not respond. Since $he is mindbroken, $his responses to you are purely physiological and your actions have no affect on $him mentally. - <<elseif (getSlave($AS).devotion > 50)>> - $He accepts your orders happily and presents $his virgin pussy to you, - <<if getSlave($AS).scrotum > 0>> - shifting $his balls out of the way and - <</if>> - <<if canSee(getSlave($AS))>> - watching your hands with eagerness. - <<else>> - eagerly awaiting your touch. - <</if>> - $He gasps and quivers with pleasure as you gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. - <<if hasAnyArms(getSlave($AS))>> - <<if (getSlave($AS).fetish == "boobs")>> - $He fondles $his breasts and plays with $his nipples at the same time. - <<elseif (getSlave($AS).fetish == "pregnancy") && getSlave($AS).belly >= 1500>> - $He strokes the curve of $his belly at the same time. - <</if>> - <</if>> - You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. As $he becomes more aroused, $he - <<if hasAnyArms(getSlave($AS))>> - grabs hold of your wrist lightly, moving $his hands along with the motion of your own. - <<else>> - begins to move $his body to the rhythm of your motions. - <</if>> - $His pussy juices - <<if hasAnyLegs(getSlave($AS))>> - run down $his leg - <<else>> - pool beneath $him - <</if>> - as $he begins to moan audibly<<if (hasAnyLegs(getSlave($AS)))>>, gently clamping your hand between $his thighs<</if>> as you continue to move your hand along $his pussy. $He moans loudly as $he shudders in orgasmic joy. - <<if ((!hasAnyArms(getSlave($AS))) && !canTalk(getSlave($AS)))>> - $He does $his best to communicate love with $his <<= App.Desc.eyesColor(getSlave($AS))>>. - <<elseif !canTalk(getSlave($AS))>> - $He signs that $he loves you. - <<else>> - "I love you, <<Master>>," $he <<say>>s rapturously. - <</if>> - <<elseif (getSlave($AS).devotion > 20)>> - $He accepts your orders without comment and presents $his virgin pussy to you, - <<if getSlave($AS).scrotum > 0>> - shifting $his balls out of the way and - <</if>> - <<if canSee(getSlave($AS))>> - watching your hands with some slight trepidation. - <<else>> - nervously anticipating your touch. - <</if>> - $He gasps as you gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $His pussy juices - <<if hasAnyLegs(getSlave($AS))>> - run down $his leg - <<else>> - pool beneath $him - <</if>> - as $he begins to moan audibly<<if (hasAnyArms(getSlave($AS)))>>, grasping your wrist with $his hand<<if (hasBothArms(getSlave($AS)))>>s<</if>> tightly<</if>><<if (hasAnyLegs(getSlave($AS)))>> and clamping $his thighs together<</if>> as you continue to move your hand along $his pussy. $He moans as $he shudders in an orgasm, almost embarrassed. - <<if canSee(getSlave($AS))>> - $He looks into your eyes expectantly. - <<else>> - $He pants expectantly, bracing for more. - <</if>> - <<elseif (getSlave($AS).devotion >= -20)>> - $He clearly dislikes the thought of getting fondled by you. $His lower lip quivers with trepidation as $he - <<if canSee(getSlave($AS))>> - watches your hands move towards $him. - <<else>> - waits for your hand to touch $him. - <</if>> - $He has no choice but to - <<if getSlave($AS).scrotum > 0>> - shift $his balls out of the way and - <</if>> - obey if $he wants to avoid punishment. $He gasps and shakes as you gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his growing erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $His pussy juices - <<if hasAnyLegs(getSlave($AS))>> - run down $his leg - <<else>> - pool beneath $him - <</if>> - as $he begins to moan audibly<<if (hasAnyArms(getSlave($AS)))>>, grasping your wrist with $his hand<<if (hasBothArms(getSlave($AS)))>>s<</if>> tightly<</if>><<if (hasBothLegs(getSlave($AS)))>> and clamping $his thighs together<</if>> as you continue to move your hand along $his pussy. $He moans as $he shudders in an orgasm, clearly embarrassed to end up in this position as $he loses control. - <<else>> - As you anticipated, $he refuses to let $himself be groped by you. $He is unable to resist you, also as you expected, when you mention some of the alternatives. $He gasps and shakes as you gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements.<<if (hasAnyArms(getSlave($AS)))>> $He grabs your wrist with $his hand<<if (hasBothArms(getSlave($AS)))>>s<</if>> in an effort to stop you but $he is unable to stop your hand from moving for long.<</if>> You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his unwilling erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $He - <<if (hasAnyArms(getSlave($AS)))>> - tightly grasps your wrist <<if (hasBothLegs(getSlave($AS)))>> and<</if>> - <</if>> - <<if (hasBothLegs(getSlave($AS)))>> - clamps $his thighs together - <</if>> - <<if !hasAnyArms(getSlave($AS)) && !hasBothLegs(getSlave($AS))>> - squirms uncomfortably a little - <</if>> - as you continue to move your hand along $his pussy. $He moans as $he shudders in an orgasm, gripping tighter and shamefully <<if canSee(getSlave($AS))>>looking at you<<else>>facing you<</if>> as you stop moving your hand. - <</if>> -<<elseif (getSlave($AS).fetish == "mindbroken")>> - Like a doll, $he dumbly remains still, <<if canSee(getSlave($AS))>>watching your hands move towards $him<<else>>waiting<</if>> without any real interest. - <<if (getSlave($AS).vagina != -1)>> - You - <<if getSlave($AS).balls >= 60>> - struggle to shove $his oversized nuts out of the way and - <<elseif getSlave($AS).balls >= 30>> - struggle to lift $his oversized nuts and - <<elseif getSlave($AS).balls >= 14>> - palm one of $his giant testicles and - <<elseif getSlave($AS).balls >= 9>> - cup $his huge balls and - <<elseif getSlave($AS).balls >= 5>> - lift $his big balls out of the way and - <<elseif getSlave($AS).scrotum > 0>> - reach under $his dangling scrotum and - <</if>> - gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally flick $his - <<if getSlave($AS).clit == 1>> - erect clit - <<elseif getSlave($AS).clit == 2>> - large clit - <<elseif getSlave($AS).clit > 1>> - massive clit - <<elseif getSlave($AS).chastityPenis>> - $his cage - <<elseif canAchieveErection(getSlave($AS))>> - $his erection - <<elseif getSlave($AS).dick > 0>> - soft dick - <<else>> - pretty little clit - <</if>> - and rub it with your fingertips as your hand nears it. Except for the pussy juices - <<if hasAnyLegs(getSlave($AS))>> - trickling down $his leg, - <<else>> - pooling beneath $him, - <</if>> - $he does not respond. - <</if>> - Since $he is mindbroken, $his responses to you are purely physiological and your actions have no affect on $him mentally. You leave your toy for one of your other slaves to clean and maintain. -<<elseif isAmputee(getSlave($AS))>> - Since $he's a quadruple amputee, $he's yours to use as a human finger toy. While $he's lying there helpless, you move your hands towards - <<if (getSlave($AS).vagina != -1)>> - <<if getSlave($AS).balls >= 60>> - $him and struggle to shove $his oversized nuts out of the way. - <<elseif getSlave($AS).balls >= 30>> - $him and strain to lift $his oversized nuts out of the way. - <<elseif getSlave($AS).balls >= 14>> - $him, palming one of $his giant testicles to make way. - <<elseif getSlave($AS).balls >= 9>> - $him, cupping $his huge balls to keep them out of the way. - <<elseif getSlave($AS).balls >= 5>> - $him, lifting $his big balls out of the way in the process. - <<elseif getSlave($AS).scrotum > 0>> - $him, slipping under $his dangling scrotum in the process. - <<else>> - $him. - <</if>> - <<else>> - $him. - <</if>> - <<if (getSlave($AS).vagina != -1)>> - You gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. - <</if>> - Soon $he shudders in an orgasm, <<if canSee(getSlave($AS))>>looking at you<<else>>facing you<</if>> as you stop moving your hand. You leave your toy for one of your other slaves to clean and maintain. -<<elseif (getSlave($AS).fetish == "submissive") && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).fetishKnown == 1)>> - $He comes submissively over, smiling a little submissive smile, and points $his pussy towards you<<if getSlave($AS).scrotum > 0>>, shifting $his balls out of the way and<</if>>. - <<if (getSlave($AS).vagina != -1)>> - You gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $He begs you not to stop as $he <<if canSee(getSlave($AS))>>looks into your eyes<<else>>faces<</if>> expectantly as $he shudders in an orgasm. - <</if>> -<<elseif getSlave($AS).devotion < -20>> - $He tries to refuse, so you push the disobedient slave down<<if canStand(getSlave($AS)))>> over your desk<</if>> as you move your hands towards $him. - <<if (getSlave($AS).vagina != -1)>> - You gently<<if getSlave($AS).scrotum > 0>> shift $his balls out of the way and<</if>> trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. $He <<if hasAnyArms(getSlave($AS))>>grabs your wrist<<else>>twists and turns<</if>> to try to stop you but $he is unable to. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his unwilling erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it, despite $his resistant pulling against you. $He bites $his lip but $he cannot help but moan and $he shudders in an orgasm. - <</if>> - $He <<if canSee(getSlave($AS))>>looks at you<<else>>faces<</if>> shamefully as you stop moving your hand. -<<elseif getSlave($AS).devotion <= 20>> - $He obeys silently, <<if canStand(getSlave($AS)))>>standing<<else>>resting<</if>> in front of you as you move your hands towards $him. - <<if (getSlave($AS).vagina != -1)>> - You gently<<if getSlave($AS).scrotum > 0>> shift $his balls out of the way and<</if>> trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his growing erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $He <<if canSee(getSlave($AS))>>looks into your eyes<<else>>faces you<</if>> furtively while $he - <<if (hasAnyArms(getSlave($AS)))>> - grabs your wrist with $his hand<<if (hasBothLegs(getSlave($AS)))>> and<</if>> - <</if>> - <<if (hasBothLegs(getSlave($AS)))>> - squeezes $his thighs together - <</if>> - <<if !hasAnyArms(getSlave($AS)) && !hasBothLegs(getSlave($AS))>> - squirms a little - <</if>> - as $he moans and shudders in an orgasm. - <</if>> - $He dutifully <<if canSee(getSlave($AS))>>looks at you<<else>>faces<</if>> as you stop moving your hand. -<<else>> - $He devotedly - <<if canMove(getSlave($AS))>> - comes over and gives you an impassioned kiss. $He - <</if>> - smiles<<if getSlave($AS).scrotum > 0>>, shifts $his balls to the side,<</if>> and points $his pussy towards you. - <<if (getSlave($AS).vagina != -1)>> - You gently trace along $his - <<if getSlave($AS).labia == 1>> - lovely petals - <<elseif getSlave($AS).labia == 2>> - prominent petals - <<elseif getSlave($AS).labia > 1>> - huge labia - <<else>> - cute labia - <</if>> - with your outstretched fingers, strumming up and down the edges of $his pussylips, then softly rub your fingers along the inner walls with a tender touch, starting slow but gradually increasing the speed of your movements. You occasionally - <<if getSlave($AS).clit == 1>> - flick $his large clit and rub it with your fingertips - <<elseif getSlave($AS).clit == 2>> - flick $his huge clit and rub it with your fingertips - <<elseif getSlave($AS).clit > 1>> - flick $his massive clit and rub it with your fingertips - <<elseif getSlave($AS).chastityPenis>> - caress $his chastity cage with your palm - <<elseif canAchieveErection(getSlave($AS))>> - flick $his erection and give it a stroke - <<elseif getSlave($AS).dick > 0>> - flick $his soft dick and rub it with your fingertips - <<else>> - flick $his pretty little clit and rub it with your fingertips - <</if>> - as your hand nears it. $He - <<if hasAnyLegs(getSlave($AS))>> - squeezes $his thigh<<if hasBothLegs(getSlave($AS))>>s<</if>> - <<else>> - pushes - <</if>> - lightly against your hand as $he moans and shudders in orgasmic bliss. - <</if>> - $He <<if canSee(getSlave($AS))>>looks at you<<else>>faces<</if>> passionately as you stop moving your hand. -<</if>> diff --git a/src/npc/interaction/forceFeeding.js b/src/npc/interaction/forceFeeding.js new file mode 100644 index 0000000000000000000000000000000000000000..525ff0b15930ad73c6a4da61c664bf38418b6ce8 --- /dev/null +++ b/src/npc/interaction/forceFeeding.js @@ -0,0 +1,677 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.forceFeeding = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him, himself, girl + } = getPronouns(slave); + + addPartner(slave, -1); + let _doMe; + + const _belly = bellyAdjective(slave); + slave.bellyAccessory = "none"; + let _isDone = slave.inflation-1; + let _pregDiscovery = 0; + r.push(`You call ${him} over and ask ${him} to wait patiently for a moment.`); + if (slave.fetish === "mindbroken") { + r.push(`${He} shows no response as`); + } else { + r.push(`${He} barely has time to ponder why you called for ${him} when`); + } + r.push(`another slave carries in a pair of`); + if (slave.inflation === 3) { + r.push(`one gallon`); + } else if (slave.inflation === 2) { + r.push(`two liter`); + } else { + r.push(`one liter`); + } + r.push(`buckets overflowing with slave food. ${He} is going to eat it all and you're going to enjoy ${him} as ${he} does it.`); + + if (slave.inflation > 1 && slave.preg > 1) { + r.push(`${He} looks nauseated by the`); + if (canSee(slave)) { + r.push(`sight`); + } else if (canSmell(slave)) { + r.push(`smell`); + } else { + r.push(`very existence`); + } + r.push(`of the food.`); + } else if (slave.fetish === "submissive" && slave.devotion >= -20) { + r.push(`${He} blushes at the thought of being forced to eat for another's amusement.`); + } else if (slave.behavioralFlaw === "gluttonous" && slave.devotion >= -20) { + r.push(`${He}'s awestruck that you approve of ${his} gluttony enough to present ${him} a feast.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He}'s hesitant about your intent, but ${he} gives in as ${his} belly begins to growl at the`); + if (canSee(slave)) { + r.push(`sight`); + } else if (canSmell(slave)) { + r.push(`smell`); + } else { + r.push(`anticipation`); + } + r.push(`of ${his} waiting meal.`); + } else if (slave.behavioralFlaw === "anorexic") { + r.push(`${He} grimaces at the`); + if (canSee(slave)) { + r.push(`sight`); + } else if (canSmell(slave)) { + r.push(`smell`); + } else { + r.push(`thought`); + } + r.push(`of the food that will soon be going into ${him}. ${He} knows you won't let it come back up later.`); + } + + if (canMove(slave)) { + r.push(`You instruct ${him} to take a seat on your lap and open`); + if (slave.fetish === "mindbroken") { + r.push(`wide, but ${he} remains still and unresponsive. Talking to a broken mind is pointless.`); + } else { + r.push(`wide.`); + } + if (slave.devotion < -20) { + r.push(`Opposed to the thought of being forced to eat all that food, ${he} tries to`); + if (canWalk(slave)) { + r.push(`step back,`); + } else { + r.push(`crawl away,`); + } + r.push(`but you catch ${him} and pull ${him} into your lap, wrapping an arm`); + } else if (slave.fetish === "submissive") { + r.push(`${He} meekly settles into your lap and shudders as ${he} feels your dominant hand wrap`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} wastes no time getting into position with ${his} mouth agape as you wrap your hand`); + } else if (slave.devotion <= 20) { + r.push(`${He} complies without comment and settles ${himself} onto your lap, shuddering slightly as you wrap your arm`); + } else if (slave.devotion <= 50) { + r.push(`${He} hesitates but eventually settles onto your lap as you wrap your arm`); + } else { + r.push(`${He} eagerly settles ${himself} onto your lap as you wrap your arm`); + } + } else if (isAmputee(slave)) { + if (slave.devotion < -20) { + r.push(`${He}'s opposed to the thought of being forced to eat all that food, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping an arm`); + } else if (slave.fetish === "submissive") { + r.push(`${He}'s opposed to the thought of being forced to eat all that food, but as an amputee can do nothing about it; not that ${he}'d go against your orders anyway. ${He} shudders with pleasure as you heft ${him} onto your lap, wrapping a dominant arm`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} can't wait to chow down, but as an amputee can do nothing to get in position. ${He} shudders with anticipation as you heft ${him} onto your lap, wrapping an arm`); + } else if (slave.devotion <= 20) { + r.push(`${He}'s hesitant of being force-fed, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping your arm`); + } else if (slave.devotion <= 50) { + r.push(`${He}'s mildly hesitant of being force-fed, but as an amputee can do nothing about it. You heft ${him} onto your lap, wrapping your arm`); + } else { + r.push(`${He} devotedly`); + if (canSee(slave)) { + r.push(`looks`); + } else { + r.push(`smiles`); + } + r.push(`at you as you heft ${him} onto your lap, wrapping your arm`); + } + } else { + r.push(`You inform ${him} ${he}'ll be taking a seat on your lap and opening wide for ${his} meal.`); + if (slave.devotion < -20) { + r.push(`${He}'s opposed to the thought of being forced to eat all that food, but since ${he} is immobile, can't escape. You heft ${him} onto your lap, wrapping an arm`); + } else if (slave.fetish === "submissive") { + r.push(`${He} accepts your orders without question. ${He} shudders with pleasure as you heft ${him} onto your lap, wrapping a dominant arm`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} eagerly tries to get to your lap faster. ${He} shudders with anticipation as you heft ${him} onto your lap, wrapping your arm`); + } else if (slave.devotion <= 20) { + r.push(`${He} complies without comment. You heft ${him} onto your lap, wrapping an arm`); + } else if (slave.devotion <= 50) { + r.push(`${He} hesitates for a moment, before demonstrating acceptance. You heft ${him} onto your lap, wrapping an arm`); + } else { + r.push(`${He} squirms with excitement as you heft ${him} onto your lap, wrapping an arm`); + } + } + if (slave.fetish === "mindbroken") { + r.push(`You reach out and wrap your arms`); + } + + r.push(`around ${his}`); + if (slave.weight > 190) { + r.push(`immensely soft`); + } else if (slave.belly >= 150000) { + r.push(_belly); + } else if (slave.weight > 160) { + r.push(`massive soft`); + } else if (slave.weight > 130) { + r.push(`giant soft`); + } else if (slave.belly >= 1500) { + r.push(_belly); + } else if (slave.weight > 95) { + r.push(`huge soft`); + } else if (slave.weight > 30) { + r.push(`big soft`); + } else if (slave.weight > 10) { + r.push(`soft`); + } else if (slave.muscles > 95) { + r.push(`chiseled`); + } else if (slave.muscles > 30) { + r.push(`muscular`); + } else if (slave.muscles > 5) { + r.push(`firm, ripped`); + } else { + r.push(`firm, flat`); + } + if (slave.fetish === "mindbroken") { + r.push(`belly, pulling ${him} into your lap.`); + } else { + r.push(`belly.`); + } + + r.push(`You hold ${him} tight as you pull ${his} meal closer, dip in a cup and bring it to ${his} lips.`); + if (slave.fetish === "mindbroken") { + r.push(`It takes little effort to get ${him} to gulp down the contents`); + } else if (slave.devotion < -20) { + r.push(`${He} struggles in your lap and refuses to open ${his} mouth. You drop the cup back into the bucket and lean in close. You quickly clip ${his} nose shut, eliciting a panicked thrash from the ${girl}.`); + if (hasAnyLegs(slave)) { + r.push(`You warn ${him} that ${his} punishment will be severe if ${he} comes that close to kicking over the buckets again.`); + } + r.push(`With ${his} mouth forced open, you now have a clear avenue with which to pour the slave food into ${his} mouth. ${He} sputters as ${he} struggles to swallow with ${his} nose shut. After several cups, tears are streaming down ${his} face from the discomfort. Weeping, ${he} implores you to remove the clamp so that ${he} may drink like a good ${girl}.`); + } else if (slave.fetish === "submissive") { + r.push(`${He} submissively drinks the contents and readies ${his} lips for the next,`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} hurriedly gulps down the contents and opens wide for the next,`); + } else if (slave.devotion <= 20) { + r.push(`${He} wordless drinks the contents,`); + } else if (slave.devotion <= 50) { + r.push(`${He} drinks the contents without hesitation,`); + } else { + r.push(`${He} happily downs the contents,`); + } + + if (slave.fetish !== "mindbroken" && slave.devotion < -20) { + r.push(`You readily comply and waste no time in bring cupful after cupful to ${his} lips.`); + } else { + r.push(`so you keep the cupfuls coming.`); + } + + r.push(`You can feel ${his} ${slave.skin} belly swelling with ${slave.inflationType} as it pushes out against your hand. Once ${he} has downed two liters, you give ${his} bloated belly a slap, eliciting`); + if (slave.fetish === "mindbroken") { + r.push(`a small burp from the broken slave`); + } else if (slave.devotion < -20) { + r.push(`a shudder from the groaning slave`); + } else if (slave.fetish === "submissive") { + r.push(`a subtle belch that the moaning slave quickly apologizes for,`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`a subtle belch from the moaning slave`); + } else if (slave.devotion <= 20) { + r.push(`a small shudder from the bloated slave`); + } else if (slave.devotion <= 50) { + r.push(`a small hiccup that the overfilled slave immediately apologizes for,`); + } else { + r.push(`a cute burp from the bloated slave, followed by ${his} tongue running over ${his} lips`); + } + r.push(`and a little jiggle from ${his} gut.`); + + App.Events.addParagraph(node, r); + r = []; + + if (slave.pregKnown === 0 && slave.preg > slave.pregData.normalBirth/13.33 && _isDone > 0) { + r.push(`As soon as the next helping enters ${him} you feel something is wrong. ${He} begins to heave,`); + if (slave.fetish !== "mindbroken" && slave.devotion > 50) { + r.push(`struggling to keep down the slave food, however ${he} shortly expels the entirety of ${his} stomach across the floor.`); + } else { + r.push(`shortly expelling the entirety of ${his} stomach`); + } + if (slave.fetish === "mindbroken") { + r.push(`all over ${himself} and your lap.`); + } else if (slave.devotion < -20) { + r.push(`all over ${himself} and your lap.`); + } else if (slave.fetish === "submissive") { + r.push(`onto your floor.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`all over ${himself} and your lap.`); + } else if (slave.devotion <= 20) { + r.push(`all over ${himself} and your lap.`); + } else if (slave.devotion <= 50) { + r.push(`across the floor.`); + } + r.push(`It didn't seem to be willful,`); + if (slave.fetish === "mindbroken") { + r.push(`not that much is with ${him}, but is still unacceptable.`); + } else if (slave.devotion < -20) { + r.push(`given how pathetically ${he} is cowering from your wrath, but is completely unacceptable.`); + } else if (slave.fetish === "submissive") { + r.push(`given how ${he} is begging to clean it up with ${his} tongue, but is completely unacceptable.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`given how ${he} is in tears over the loss of such a meal, but is completely unacceptable.`); + } else if (slave.devotion <= 20) { + r.push(`given how ${he} is begging you to try again, but is completely unacceptable.`); + } else if (slave.devotion <= 50) { + r.push(`given how disappointed ${he} is in failing you, but is completely unacceptable.`); + } else { + r.push(`given how disappointed ${he} is in failing you, but is worrying. Such a good slave shouldn't do such bad things.`); + } + _pregDiscovery = 1; + } else { + if (_isDone > 0) { + _isDone--; + r.push(`But ${he} isn't done`); + if (slave.fetish === "mindbroken") { + r.push(`yet.`); + } else if (slave.devotion < -20) { + r.push(`yet.`); + } else if (slave.fetish === "submissive") { + r.push(`yet, not that ${he} minds.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`yet, much to ${his} delight.`); + } else if (slave.devotion <= 20) { + r.push(`yet, much to ${his} dismay.`); + } else if (slave.devotion <= 50) { + r.push(`yet, not that ${he}'d risk complaining.`); + } else { + r.push(`yet, not that ${he}'d complain about fulfilling your desires.`); + } + r.push(`More and more you feed ${him}; ${his} belly swelling ever larger and growing even heavier as ${he}`); + if (slave.fetish === "mindbroken") { + r.push(`guzzles`); + } else if (slave.devotion < -20) { + r.push(`painstakingly drinks`); + } else if (slave.fetish === "submissive") { + r.push(`diligently drinks`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`desperately sucks down`); + } else if (slave.devotion <= 20) { + r.push(`diligently drinks`); + } else if (slave.devotion <= 50) { + r.push(`diligently drinks`); + } else { + r.push(`diligently drinks`); + } + r.push(`the slave food. You reposition yourself to bet a better hold on ${his} bulging food baby. As ${he} passes the gallon mark, you give the swollen orb a good jiggle, eliciting`); + if (slave.fetish === "mindbroken") { + r.push(`a burp from the broken slave and tons of motion under your arm.`); + } else if (slave.devotion < -20) { + r.push(`a pained burp from the crying slave and tons of motion under your arm.`); + } else if (slave.fetish === "submissive") { + r.push(`a moan of arousal over your control and tons of motion under your arm.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`a load hiccup, tons of motion under your arm, and a plea for more food.`); + } else if (slave.devotion <= 20) { + r.push(`a strained burp from the full slave and tons of motion under your arm.`); + } else if (slave.devotion <= 50) { + r.push(`a small hiccup, which the bloated slave immediately apologizes for, and tons of motion under your arm.`); + } else { + r.push(`a small sigh followed by a request for more, from the bloated slave and tons of motion under your arm.`); + } + App.Events.addParagraph(node, r); + r = []; + } + if (_isDone > 0) { + if (slave.fetish === "mindbroken") { + r.push(`${He} squirms a little in discomfort, but ${he} still has another gallon to go, so you continue feeding food into ${his} mouth.`); + } else if (slave.devotion < -20) { + r.push(`${He} squirms in discomfort, but ${he} still has another gallon to go and ${he} knows it. You remind ${him} of the ways you can torment ${him} in this state so you can continue feeding food into ${his} mouth without too much resistance.`); + } else if (slave.fetish === "submissive") { + r.push(`${He} gets comfortable as ${he} still has another gallon to go and ${he} knows it. Gulping, ${he} opens ${his} mouth in preparation, eager to obey ${his} dom.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} still has another gallon to go and ${he} knows it, so ${he} wastes no time in letting you know ${he}'s ready.`); + } else if (slave.devotion <= 20) { + r.push(`${He} begins to struggle when ${he} realizes ${he} still has another gallon to go. Gulping, ${he} opens up as another helping approaches ${his} mouth.`); + } else if (slave.devotion <= 50) { + r.push(`${He} still has another gallon to go and ${he} knows it, so ${he} tries ${his} best to get comfortable and give ${his} belly room to grow. Gulping, ${he} diligently opens up for the next serving.`); + } else { + r.push(`${He} still has another gallon to go and ${he} knows it, but if ${getWrittenTitle(slave)} wants ${him} to be stuffed like a turkey, ${he}'ll happily comply. ${He} wastes no time in opening up for your next helping.`); + } + r.push(`You can feel the pressure growing in ${his} middle as it fills out under your arm more and more. ${He}`); + if (slave.fetish === "mindbroken") { + r.push(`mechanically downs every sip you give ${him} with no concern for ${his} own health.`); + } else if (slave.devotion < -20) { + r.push(`struggles to down every sip you give ${him} and pants heavily whenever ${he} gets the chance.`); + } else if (slave.fetish === "submissive") { + r.push(`struggles to down every sip you give ${him} and pants heavily whenever ${he} gets the chance.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`forces down every sip you give ${him} and pants heavily when ${his} mouth isn't full.`); + } else if (slave.devotion <= 20) { + r.push(`struggles to down every sip you give ${him} and pants heavily whenever ${he} gets the chance.`); + } else if (slave.devotion <= 50) { + r.push(`obediently downs every gulp you give ${him} and pants heavily between helpings.`); + } else { + r.push(`devotedly downs every gulp you give ${him} and catches ${his} breath, while being a tease, between helpings.`); + } + r.push(`Once the last of the slave food is in ${his} stomach, you give the firm globe a`); + if (slave.devotion > 20) { + r.push(`gentle`); + } + r.push(`slap, eliciting`); + if (slave.fetish === "mindbroken") { + r.push(`a large belch from the broken slave.`); + } else if (slave.devotion < -20) { + r.push(`a large belch and a glare from the straining slave.`); + } else if (slave.fetish === "submissive") { + r.push(`a large belch and a squeak of shame from the submissive slave.`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`a large belch and a content sigh from the bloated glutton.`); + } else if (slave.devotion <= 20) { + r.push(`a restrained gag from the overfilled slave.`); + } else if (slave.devotion <= 50) { + r.push(`a small hiccup from the overfilled slave, which ${he} immediately apologizes for.`); + } else { + r.push(`a large belch and a playfully stuck out tongue from the stuffed slave.`); + } + r.push(`${His} belly is as taut as a drum; you`); + if (slave.devotion > 20) { + r.push(`rub it some more`); + } else { + r.push(`pat it several more times`); + } + r.push(`as you appreciate its size.`); + _doMe = 1; + App.Events.addParagraph(node, r); + r = []; + } + r.push(`Knocking the empty buckets aside, you help ${his}`); + if (slave.fetish === "mindbroken") { + r.push(`hiccupping`); + } else if (slave.devotion < -20) { + r.push(`hiccupping`); + } else if (slave.fetish === "submissive") { + r.push(`hiccupping`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`hiccupping`); + } else if (slave.devotion <= 20) { + r.push(`heaving`); + } else if (slave.devotion <= 50) { + r.push(`hefty`); + } else { + r.push(`hefty`); + } + r.push(`bulk onto the couch to recover.`); + if (slave.fetish === "mindbroken") { + r.push(`After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up,`); + } else if (slave.devotion < -20) { + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks in your eyes,`); + } else { + r.push(`faces you,`); + } + r.push(`as though almost demanding answers. ${He} looks apprehensive about what you will do next. After a few minutes of rest, and several glares from you when it appears ${his} meal might be coming back up,`); + } else if (slave.fetish === "submissive") { + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks in your eyes;`); + } else { + r.push(`faces you;`); + } + r.push(`a satisfied smile on ${his} face. ${He} almost looks sad that it's over, though ${his} gurgling middle says otherwise. After a few minutes of rest,`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He}`); + if (canSee(slave)) { + r.push(`looks in your eyes;`); + } else { + r.push(`faces you;`); + } + r.push(`a satisfied smile on ${his} face. ${He} almost looks sad that it's over, and ${his} stomach audibly grumbles its displeasure that no more food is working down ${his} throat. After a few minutes of rest,`); + } else if (slave.devotion <= 20) { + r.push(`${He} looks up at you quizzically, unsure about what you will do next. ${His} meal attempts to come back up on ${him} several times, but ${he} holds it down for fear of punishment should ${he} vomit. After a few minutes of rest,`); + } else if (slave.devotion <= 50) { + r.push(`${He} sighs contently, hoping you'll give ${him} more attention. ${His} meal attempts to come back up on ${him} several times, but ${he} dutifully holds it down. After a few minutes of rest,`); + } else { + r.push(`${He} sighs contently, hoping you'll give ${him} more attention. ${He} is proud to let you know that you could fit even more in ${him} if you wanted. After a few minutes of rest,`); + } + r.push(`you order ${him} to continue stuffing ${himself} to maintain ${his} current size until you say otherwise.`); + if (slave.fetish !== "mindbroken" && slave.devotion >= -20 && slave.behavioralFlaw === "gluttonous") { + r.push(`${He} squeals with glee at the order.`); + } + r.push(`You spend ${his} remaining time in recovery`); + if (slave.fetish === "mindbroken") { + r.push(`teasing ${his} belly until you tire of ${him} and send ${him} on ${his} way.`); + } else if (slave.devotion < -20) { + r.push(`tormenting ${his} gurgling belly until you tire of ${his} sobbing and send ${him} on ${his} way.`); + } else if (slave.fetish === "submissive" && slave.devotion <= 20) { + r.push(`toying with ${his} belly until you tire of moaning and send ${him} on ${his} way.`); + } else if (slave.behavioralFlaw === "gluttonous" && slave.devotion <= 20) { + r.push(`massaging ${his} stuffed belly until you tire of ${him} and send ${him} on ${his} way.`); + } else if (slave.devotion <= 20) { + r.push(`tormenting ${his} gurgling belly until you tire of ${his} groaning and send ${him} on ${his} way.`); + } else if (slave.devotion <= 50) { + r.push(`lavishing attention on ${his} gurgling belly, much to ${his} delight, until you tire of ${him} and send ${him} on ${his} way.`); + } else { + r.push(`playing with ${his} belly. ${He} joins you in the endeavor, happy that you are pleased with the`); + if (_doMe !== 1) { + r.push(`outcome.`); + } else { + r.push(`outcome, but ${his}`); + if (canSee(slave)) { + r.push(`eyes tell`); + } else { + r.push(`face tells`); + } + r.push(`you ${he} wants more.`); + } + // Fuckings for devoted slaves. + _doMe = 1; + let _sexType; + if (canDoVaginal(slave) && slave.vagina > 0) { + _sexType = "vaginal"; + } else if (canDoAnal(slave) && slave.anus > 0) { + _sexType = "anal"; + } else { + _sexType = "none"; + } + if (_sexType !== "none") { + if (V.PC.belly >= 10000) { + _doMe = 0; + r.push(`${His}`); + if (_sexType === "vaginal") { + r.push(`pussy`); + } else { + r.push(`ass`); + } + r.push(`is under a lot of pressure from ${his} swollen middle and surely would feel amazing; it's even`); + if (_sexType === "vaginal") { + r.push(`sopping wet for`); + } else { + r.push(`eagerly winking at`); + } + r.push(`you. Unfortunately, no matter how hard you try, you can't find a position that will accommodate both ${his} food-stuffed stomach and your own gravid middle. Sighing, you settle for ${his} mouth instead.`); + } else { + if (V.PC.dick !== 0) { + r.push(`You're already rock hard so you`); + } else { + if (_sexType === "vaginal") { + r.push(`You don a strap-on and`); + } else { + r.push(`You don a strap-on, lube up,`); + } + } + r.push(`pull ${his} legs apart,`); + if (_sexType === "vaginal") { + r.push(`revealing ${his}`); + if (slave.vaginaLube > 1) { + r.push(`sopping wet,`); + } else if (slave.vaginaLube > 0) { + r.push(`moist,`); + } else { + r.push(`moist, relative to its usual dryness,`); + } + if (slave.vagina >= 10) { + r.push(`devastated`); + } else if (slave.vagina > 3) { + r.push(`cavernous`); + } else if (slave.vagina > 2) { + r.push(`loose`); + } else if (slave.vagina > 1) { + r.push(`used`); + } else { + r.push(`tight`); + } + r.push(`pussy.`); + } else { + r.push(`and heft ${his} bulk up to reveal ${his}`); + if (slave.anus > 3) { + r.push(`gaping asshole.`); + } else if (slave.anus > 2) { + r.push(`loose anus.`); + } else if (slave.anus > 1) { + r.push(`used asshole.`); + } else { + r.push(`tight asshole.`); + } + } + r.push(`${His} belly is putting so much pressure on it that`); + const _looseness = (_sexType === "vaginal") ? slave.vagina : slave.anus; + if (_sexType === "vaginal" && _looseness >= 10) { + r.push(`you might be able to get some decent friction now.`); + if (V.PC.dick !== 0) { + r.push(`You can actually feel the sides of ${his} cunt as you slide in.`); + } else { + r.push(`You slide in like it's still nothing.`); + } + } else if (_looseness > 3) { + r.push(`you should be able to get a decent fuck out of it.`); + if (V.PC.dick !== 0) { + r.push(`You can't help but be amazed that you're getting some resistance as you slide in.`); + } else { + r.push(`You slide in like it's nothing.`); + } + } else if (_looseness > 2) { + r.push(`it won't feel so`); + if (_sexType === "vaginal") { + r.push(`worn out.`); + } else { + r.push(`stretched.`); + } + if (V.PC.dick !== 0) { + r.push(`${He} gives some nice resistance as you squeeze into ${him}.`); + } else { + r.push(`You squeeze in without problem.`); + } + } else if (_looseness > 1) { + r.push(`it'll feel positively tight.`); + if (V.PC.dick !== 0) { + r.push(`${His}`); + if (_sexType === "vaginal") { + r.push(`pussy`); + } else { + r.push(`anus`); + } + r.push(`feels great, you practically had to squeeze in.`); + } else { + r.push(`You squeeze in with a little effort.`); + } + } else { + r.push(`you'll barely be able to fit it in.`); + if (V.PC.dick !== 0) { + r.push(`${His}`); + if (_sexType === "vaginal") { + r.push(`vagina`); + } else { + r.push(`rear`); + } + r.push(`is so tight you can barely get it in, but with a little work, you manage to squeeze into its tight confines. ${He}'s tighter than any`); + if (_sexType === "anal") { + r.push(`anal`); + } + r.push(`virgin you've ever fucked.`); + } else { + r.push(`You have to`); + if (_sexType === "vaginal") { + r.push(`lube up some,`); + } else { + r.push(`get a little rough,`); + } + r.push(`but eventually you manage to slide into ${his} extremely tight`); + if (_sexType === "vaginal") { + r.push(`vagina.`); + } else { + r.push(`anus.`); + } + } + } + r.push(`Once you're hilted, you bring your hands to ${his} distended belly, eager to feel it move as you fuck ${him}.`); + if (hasAnyArms(slave)) { + r.push(`${His} own join`); + if (hasBothArms(slave)) { + r.push(`s`); + } + r.push(`yours atop the taut dome.`); + } + r.push(`Every thrust into the stuffed ${SlaveTitle(slave)} forces ${his} full middle to leap back before slamming into your stomach alongside a moaning groan. As you pick up the pace, ${he} begins to buck against you, adding even more motion to ${his} body. It doesn't take long for you to reach your peak and, after cumming, catch sight of ${his} own climax. Watching ${his} middle attempt to contract around the mass of slave food inside ${him} invigorates you for a second round.`); + if (V.PC.balls >= 30) { + r.push(`By the time you're done, ${he}'s positively massive; your copious seed flows out of ${him} in spurts as ${his} body desperately struggles to relieve the extra pressure your huge balls pumped into ${him}.`); + } + r.push(`Once you are spent,`); + if (V.PC.balls >= 30) { + r.push(`and ${he}'s forced out all your cum,`); + } + r.push(`you settle down beside ${him} and rest your head against ${his} belly; it almost feels like a water-filled pillow, albeit a little noisy. You and ${slave.slaveName} doze off together for a much needed nap. You don't get much rest; ${his} stomach's constant groaning and burbling keeping you up, so you send ${him} on ${his} way. ${He} blows you one last kiss and eagerly looks forward to next time.`); + if (_sexType === "vaginal") { + r.push(VCheck.Vaginal(slave, 2)); + } else { + r.push(VCheck.Anal(slave, 2)); + } + } + } else { + _doMe = 0; + } + if (_doMe === 0) { + if (V.PC.dick !== 0) { + r.push(`You crawl onto the couch above ${his} head and lower your erect cock straight into ${his} waiting mouth. ${He} eagerly sucks you off, ${his} belly wobbling with every thrust into ${his} throat. You cum fast and hard into ${him}, a product of being on the edge during ${his} feeding;`); + if (slave.behavioralFlaw === "gluttonous") { + r.push(`${he} takes it like nothing and resumes sucking, ${his} gluttony showing no bounds.`); + } else { + r.push(`${he} swallows it promptly and keeps sucking. You'd swear ${he} was a glutton at this point.`); + } + } else { + r.push(`You crawl onto the couch above ${his} head and lower your needy pussy straight onto ${his} outstretched tongue. ${He} eagerly eats you out, ${his} belly wobbling along to ${his} vigorous licking. You cum fast and hard onto ${him}, a product of being on the edge during ${his} feeding;`); + if (slave.behavioralFlaw === "gluttonous") { + r.push(`${he} laps it all up and resumes pleasuring you, ${his} gluttony showing no bounds.`); + } else { + r.push(`${he} laps it promptly and resumes pleasuring you. You'd swear ${he} was a glutton at this point.`); + } + } + r.push(`Once you are spent, you slide down beside ${him} and rest your head against ${his} belly; it almost feels like a water-filled pillow, albeit a little noisy. You and ${slave.slaveName} doze off together for a much needed nap. You don't get much rest; ${his} stomach's constant groaning and burbling keeping you up, so you send ${him} on ${his} way. ${He} blows you one last kiss and eagerly looks forward to next time.`); + slave.counter.oral += 2; + V.oralTotal += 2; + } + } + } + + if (_pregDiscovery === 1) { + r.push(`Once you've managed to stop ${his} heaving and clean up, you decide to get to the root of this mess. While most of the tests come back normal, one in particular catches your eye; <span class="lime">${he} is pregnant${(slave.preg > slave.pregData.normalBirth/4) ? `and surprisingly far along` : ``}.</span>`); + deflate(slave); + slave.pregKnown = 1; + } else { + if (slave.inflation === 3) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} over-stuffed belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles heavily as ${he} is helped from your office.`); + } + r.push(`Being filled so full <span class="health.dec">surely had negative effects</span> on ${his} health.`); + healthDamage(slave, 10); + } else if (slave.inflation === 2) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} stuffed belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles heavily as ${he} is helped from your office.`); + } + } else if (slave.inflation === 1) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} gingerly leaves your office, massaging ${his} distended belly as ${he} goes.`); + } else { + r.push(`${His} belly wobbles as ${he} is helped from your office.`); + } + } + if (slave.fetish === "mindbroken") { + r.push(`You question if the broken ${girl} understood your commands, but relish the idea of force-feeding ${him} even more should ${he} fail you.`); + } + } + + SetBellySize(slave); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/forceFeeding.tw b/src/npc/interaction/forceFeeding.tw deleted file mode 100644 index 27b5a8be97d4ab9b4d537486b7514ee7e5fb4709..0000000000000000000000000000000000000000 --- a/src/npc/interaction/forceFeeding.tw +++ /dev/null @@ -1,556 +0,0 @@ -:: forceFeeding [nobr no-history] - -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<run addPartner(getSlave($AS), -1)>> -<<set $desc = SlaveTitle(getSlave($AS))>> - -<<set _belly = bellyAdjective(getSlave($AS))>> -<<set getSlave($AS).bellyAccessory = "none", _isDone = getSlave($AS).inflation-1, _pregDiscovery = 0>> -You call $him over and ask $him to wait patiently for a moment. -<<if getSlave($AS).fetish == "mindbroken">> - $He shows no response as -<<else>> - $He barely has time to ponder why you called for $him when -<</if>> -another slave carries in a pair of -<<if getSlave($AS).inflation == 3>> - one gallon -<<elseif getSlave($AS).inflation == 2>> - two liter -<<else>> - one liter -<</if>> -buckets overflowing with slave food. $He is going to eat it all and you're going to enjoy $him as $he does it. - -<<if getSlave($AS).inflation > 1 && getSlave($AS).preg > 1>> - $He looks nauseated by the <<if canSee(getSlave($AS))>>sight<<elseif canSmell(getSlave($AS))>>smell<<else>>very existence<</if>> of the food. -<<elseif getSlave($AS).fetish == "submissive" && getSlave($AS).devotion >= -20>> - $He blushes at the thought of being forced to eat for another's amusement. -<<elseif getSlave($AS).behavioralFlaw == "gluttonous" && getSlave($AS).devotion >= -20>> - $He's awestruck that you approve of $his gluttony enough to present $him a feast. -<<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He's hesitant about your intent, but $he gives in as $his belly begins to growl at the <<if canSee(getSlave($AS))>>sight<<elseif canSmell(getSlave($AS))>>smell<<else>>anticipation<</if>> of $his waiting meal. -<<elseif getSlave($AS).behavioralFlaw == "anorexic">> - $He grimaces at the <<if canSee(getSlave($AS))>>sight<<elseif canSmell(getSlave($AS))>>smell<<else>>thought<</if>> of the food that will soon be going into $him. $He knows you won't let it come back up later. -<</if>> - -<<if canMove(getSlave($AS))>> - You instruct $him to take a seat on your lap and open - <<if getSlave($AS).fetish == "mindbroken">> - wide, but $he remains still and unresponsive. Talking to a broken mind is pointless. - <<else>> - wide. - <</if>> - <<if getSlave($AS).devotion < -20>> - Opposed to the thought of being forced to eat all that food, $he tries to <<if canWalk(getSlave($AS))>>step back<<else>>crawl away<</if>>, but you catch $him and pull $him into your lap, wrapping an arm - <<elseif getSlave($AS).fetish == "submissive">> - $He meekly settles into your lap and shudders as $he feels your dominant hand wrap - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He wastes no time getting into position with $his mouth agape as you wrap your hand - <<elseif getSlave($AS).devotion <= 20>> - $He complies without comment and settles $himself onto your lap, shuddering slightly as you wrap your arm - <<elseif getSlave($AS).devotion <= 50>> - $He hesitates but eventually settles onto your lap as you wrap your arm - <<else>> - $He eagerly settles $himself onto your lap as you wrap your arm - <</if>> -<<elseif (isAmputee(getSlave($AS)))>> - <<if getSlave($AS).devotion < -20>> - $He's opposed to the thought of being forced to eat all that food, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping an arm - <<elseif getSlave($AS).fetish == "submissive">> - $He's opposed to the thought of being forced to eat all that food, but as an amputee can do nothing about it; not that $he'd go against your orders anyway. $He shudders with pleasure as you heft $him onto your lap, wrapping a dominant arm - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He can't wait to chow down, but as an amputee can do nothing to get in position. $He shudders with anticipation as you heft $him onto your lap, wrapping an arm - <<elseif getSlave($AS).devotion <= 20>> - $He's hesitant of being force-fed, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping your arm - <<elseif getSlave($AS).devotion <= 50>> - $He's mildly hesitant of being force-fed, but as an amputee can do nothing about it. You heft $him onto your lap, wrapping your arm - <<else>> - $He devotedly <<if canSee(getSlave($AS))>>looks<<else>>smiles<</if>> at you as you heft $him onto your lap, wrapping your arm - <</if>> -<<else>> - You inform $him $he'll be taking a seat on your lap and opening wide for $his meal. - <<if getSlave($AS).devotion < -20>> - $He's opposed to the thought of being forced to eat all that food, but since $he is immobile, can't escape. You heft $him onto your lap, wrapping an arm - <<elseif getSlave($AS).fetish == "submissive">> - $He accepts your orders without question. $He shudders with pleasure as you heft $him onto your lap, wrapping a dominant arm - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He eagerly tries to get to your lap faster. $He shudders with anticipation as you heft $him onto your lap, wrapping your arm - <<elseif getSlave($AS).devotion <= 20>> - $He complies without comment. You heft $him onto your lap, wrapping an arm - <<elseif getSlave($AS).devotion <= 50>> - $He hesitates for a moment, before demonstrating acceptance. You heft $him onto your lap, wrapping an arm - <<else>> - $He squirms with excitement as you heft $him onto your lap, wrapping an arm - <</if>> -<</if>> -<<if getSlave($AS).fetish == "mindbroken">> - You reach out and wrap your arms -<</if>> - -around $his -<<if getSlave($AS).weight > 190>> - immensely soft -<<elseif getSlave($AS).belly >= 150000>> - _belly -<<elseif getSlave($AS).weight > 160>> - massive soft -<<elseif getSlave($AS).weight > 130>> - giant soft -<<elseif getSlave($AS).belly >= 1500>> - _belly -<<elseif getSlave($AS).weight > 95>> - huge soft -<<elseif getSlave($AS).weight > 30>> - big soft -<<elseif getSlave($AS).weight > 10>> - soft -<<elseif getSlave($AS).muscles > 95>> - chiseled -<<elseif getSlave($AS).muscles > 30>> - muscular -<<elseif getSlave($AS).muscles > 5>> - firm, ripped -<<else>> - firm, flat -<</if>> -<<if getSlave($AS).fetish == "mindbroken">> - belly, pulling $him into your lap. -<<else>> - belly. -<</if>> - -You hold $him tight as you pull $his meal closer, dip in a cup and bring it to $his lips. -<<if getSlave($AS).fetish == "mindbroken">> - It takes little effort to get $him to gulp down the contents -<<elseif getSlave($AS).devotion < -20>> - $He struggles in your lap and refuses to open $his mouth. You drop the cup back into the bucket and lean in close. You quickly clip $his nose shut, eliciting a panicked thrash from the $girl. - <<if hasAnyLegs(getSlave($AS))>> - You warn $him that $his punishment will be severe if $he comes that close to kicking over the buckets again. - <</if>> - With $his mouth forced open, you now have a clear avenue with which to pour the slave food into $his mouth. $He sputters as $he struggles to swallow with $his nose shut. After several cups, tears are streaming down $his face from the discomfort. Weeping, $he implores you to remove the clamp so that $he may drink like a good $girl. -<<elseif getSlave($AS).fetish == "submissive">> - $He submissively drinks the contents and readies $his lips for the next, -<<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He hurriedly gulps down the contents and opens wide for the next, -<<elseif getSlave($AS).devotion <= 20>> - $He wordless drinks the contents, -<<elseif getSlave($AS).devotion <= 50>> - $He drinks the contents without hesitation, -<<else>> - $He happily downs the contents, -<</if>> - -<<if getSlave($AS).fetish != "mindbroken" && getSlave($AS).devotion < -20>> - You readily comply and waste no time in bring cupful after cupful to $his lips. -<<else>> - so you keep the cupfuls coming. -<</if>> - -You can feel $his <<= getSlave($AS).skin>> belly swelling with <<= getSlave($AS).inflationType>> as it pushes out against your hand. Once $he has downed two liters, you give $his bloated belly a slap, eliciting -<<if getSlave($AS).fetish == "mindbroken">> - a small burp from the broken slave -<<elseif getSlave($AS).devotion < -20>> - a shudder from the groaning slave -<<elseif getSlave($AS).fetish == "submissive">> - a subtle belch that the moaning slave quickly apologizes for, -<<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - a subtle belch from the moaning slave -<<elseif getSlave($AS).devotion <= 20>> - a small shudder from the bloated slave -<<elseif getSlave($AS).devotion <= 50>> - a small hiccup that the overfilled slave immediately apologizes for, -<<else>> - a cute burp from the bloated slave, followed by $his tongue running over $his lips -<</if>> -and a little jiggle from $his gut. - -<br><br> - -<<if getSlave($AS).pregKnown == 0 && getSlave($AS).preg > getSlave($AS).pregData.normalBirth/13.33 && _isDone > 0>> - As soon as the next helping enters $him you feel something is wrong. $He begins to heave, - <<if getSlave($AS).fetish != "mindbroken" && getSlave($AS).devotion > 50>> - struggling to keep down the slave food, however $he shortly expels the entirety of $his stomach across the floor. - <<else>> - shortly expelling the entirety of $his stomach - <</if>> - <<if getSlave($AS).fetish == "mindbroken">> - all over $himself and your lap. - <<elseif getSlave($AS).devotion < -20>> - all over $himself and your lap. - <<elseif getSlave($AS).fetish == "submissive">> - onto your floor. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - all over $himself and your lap. - <<elseif getSlave($AS).devotion <= 20>> - all over $himself and your lap. - <<elseif getSlave($AS).devotion <= 50>> - across the floor. - <</if>> - It didn't seem to be willful, - <<if getSlave($AS).fetish == "mindbroken">> - not that much is with $him, but is still unacceptable. - <<elseif getSlave($AS).devotion < -20>> - given how pathetically $he is cowering from your wrath, but is completely unacceptable. - <<elseif getSlave($AS).fetish == "submissive">> - given how $he is begging to clean it up with $his tongue, but is completely unacceptable. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - given how $he is in tears over the loss of such a meal, but is completely unacceptable. - <<elseif getSlave($AS).devotion <= 20>> - given how $he is begging you to try again, but is completely unacceptable. - <<elseif getSlave($AS).devotion <= 50>> - given how disappointed $he is in failing you, but is completely unacceptable. - <<else>> - given how disappointed $he is in failing you, but is worrying. Such a good slave shouldn't do such bad things. - <</if>> - <<set _pregDiscovery = 1>> -<<else>> - <<if _isDone > 0>> - <<set _isDone-->> - But $he isn't done - <<if getSlave($AS).fetish == "mindbroken">> - yet. - <<elseif getSlave($AS).devotion < -20>> - yet. - <<elseif getSlave($AS).fetish == "submissive">> - yet, not that $he minds. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - yet, much to $his delight. - <<elseif getSlave($AS).devotion <= 20>> - yet, much to $his dismay. - <<elseif getSlave($AS).devotion <= 50>> - yet, not that $he'd risk complaining. - <<else>> - yet, not that $he'd complain about fulfilling your desires. - <</if>> - More and more you feed $him; $his belly swelling ever larger and growing even heavier as $he - <<if getSlave($AS).fetish == "mindbroken">> - guzzles - <<elseif getSlave($AS).devotion < -20>> - painstakingly drinks - <<elseif getSlave($AS).fetish == "submissive">> - diligently drinks - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - desperately sucks down - <<elseif getSlave($AS).devotion <= 20>> - diligently drinks - <<elseif getSlave($AS).devotion <= 50>> - diligently drinks - <<else>> - diligently drinks - <</if>> - the slave food. You reposition yourself to bet a better hold on $his bulging food baby. As $he passes the gallon mark, you give the swollen orb a good jiggle, eliciting - <<if getSlave($AS).fetish == "mindbroken">> - a burp from the broken slave and tons of motion under your arm. - <<elseif getSlave($AS).devotion < -20>> - a pained burp from the crying slave and tons of motion under your arm. - <<elseif getSlave($AS).fetish == "submissive">> - a moan of arousal over your control and tons of motion under your arm. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - a load hiccup, tons of motion under your arm, and a plea for more food. - <<elseif getSlave($AS).devotion <= 20>> - a strained burp from the full slave and tons of motion under your arm. - <<elseif getSlave($AS).devotion <= 50>> - a small hiccup, which the bloated slave immediately apologizes for, and tons of motion under your arm. - <<else>> - a small sigh followed by a request for more, from the bloated slave and tons of motion under your arm. - <</if>> - <br><br> - <</if>> - <<if _isDone > 0>> - <<if getSlave($AS).fetish == "mindbroken">> - $He squirms a little in discomfort, but $he still has another gallon to go, so you continue feeding food into $his mouth. - <<elseif getSlave($AS).devotion < -20>> - $He squirms in discomfort, but $he still has another gallon to go and $he knows it. You remind $him of the ways you can torment $him in this state so you can continue feeding food into $his mouth without too much resistance. - <<elseif getSlave($AS).fetish == "submissive">> - $He gets comfortable as $he still has another gallon to go and $he knows it. Gulping, $he opens $his mouth in preparation, eager to obey $his dom. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He still has another gallon to go and $he knows it, so $he wastes no time in letting you know $he's ready. - <<elseif getSlave($AS).devotion <= 20>> - $He begins to struggle when $he realizes $he still has another gallon to go. Gulping, $he opens up as another helping approaches $his mouth. - <<elseif getSlave($AS).devotion <= 50>> - $He still has another gallon to go and $he knows it, so $he tries $his best to get comfortable and give $his belly room to grow. Gulping, $he diligently opens up for the next serving. - <<else>> - $He still has another gallon to go and $he knows it, but if <<= getWrittenTitle(getSlave($AS))>> wants $him to be stuffed like a turkey, $he'll happily comply. $He wastes no time in opening up for your next helping. - <</if>> - You can feel the pressure growing in $his middle as it fills out under your arm more and more. $He - <<if getSlave($AS).fetish == "mindbroken">> - mechanically downs every sip you give $him with no concern for $his own health. - <<elseif getSlave($AS).devotion < -20>> - struggles to down every sip you give $him and pants heavily whenever $he gets the chance. - <<elseif getSlave($AS).fetish == "submissive">> - struggles to down every sip you give $him and pants heavily whenever $he gets the chance. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - forces down every sip you give $him and pants heavily when $his mouth isn't full. - <<elseif getSlave($AS).devotion <= 20>> - struggles to down every sip you give $him and pants heavily whenever $he gets the chance. - <<elseif getSlave($AS).devotion <= 50>> - obediently downs every gulp you give $him and pants heavily between helpings. - <<else>> - devotedly downs every gulp you give $him and catches $his breath, while being a tease, between helpings. - <</if>> - Once the last of the slave food is in $his stomach, you give the firm globe a <<if getSlave($AS).devotion > 20>>gentle <</if>>slap, eliciting - <<if getSlave($AS).fetish == "mindbroken">> - a large belch from the broken slave. - <<elseif getSlave($AS).devotion < -20>> - a large belch and a glare from the straining slave. - <<elseif getSlave($AS).fetish == "submissive">> - a large belch and a squeak of shame from the submissive slave. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - a large belch and a content sigh from the bloated glutton. - <<elseif getSlave($AS).devotion <= 20>> - a restrained gag from the overfilled slave. - <<elseif getSlave($AS).devotion <= 50>> - a small hiccup from the overfilled slave, which $he immediately apologizes for. - <<else>> - a large belch and a playfully stuck out tongue from the stuffed slave. - <</if>> - $His belly is as taut as a drum; you - <<if getSlave($AS).devotion > 20>> - rub it some more - <<else>> - pat it several more times - <</if>> - as you appreciate its size. - <br><br> - <</if>> - Knocking the empty buckets aside, you help $his - <<if getSlave($AS).fetish == "mindbroken">> - hiccupping - <<elseif getSlave($AS).devotion < -20>> - hiccupping - <<elseif getSlave($AS).fetish == "submissive">> - hiccupping - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - hiccupping - <<elseif getSlave($AS).devotion <= 20>> - heaving - <<elseif getSlave($AS).devotion <= 50>> - hefty - <<else>> - hefty - <</if>> - bulk onto the couch to recover. - <<if getSlave($AS).fetish == "mindbroken">> - After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, - <<elseif getSlave($AS).devotion < -20>> - $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, - <<elseif getSlave($AS).fetish == "submissive">> - $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>; a satisfied smile on $his face. $He almost looks sad that it's over, though $his gurgling middle says otherwise. After a few minutes of rest, - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - $He <<if canSee(getSlave($AS))>>looks in your eyes<<else>>faces you<</if>>; a satisfied smile on $his face. $He almost looks sad that it's over, and $his stomach audibly grumbles its displeasure that no more food is working down $his throat. After a few minutes of rest, - <<elseif getSlave($AS).devotion <= 20>> - $He looks up at you quizzically, unsure about what you will do next. $His meal attempts to come back up on $him several times, but $he holds it down for fear of punishment should $he vomit. After a few minutes of rest, - <<elseif getSlave($AS).devotion <= 50>> - $He sighs contently, hoping you'll give $him more attention. $His meal attempts to come back up on $him several times, but $he dutifully holds it down. After a few minutes of rest, - <<else>> - $He sighs contently, hoping you'll give $him more attention. $He is proud to let you know that you could fit even more in $him if you wanted. After a few minutes of rest, - <</if>> - you order $him to continue stuffing $himself to maintain $his current size until you say otherwise. - <<if getSlave($AS).fetish != "mindbroken" && getSlave($AS).devotion >= -20 && getSlave($AS).behavioralFlaw == "gluttonous">> - $He squeals with glee at the order. - <</if>> - You spend $his remaining time in recovery - <<if getSlave($AS).fetish == "mindbroken">> - teasing $his belly until you tire of $him and send $him on $his way. - <<elseif getSlave($AS).devotion < -20>> - tormenting $his gurgling belly until you tire of $his sobbing and send $him on $his way. - <<elseif getSlave($AS).fetish == "submissive">> - toying with $his belly until you tire of moaning and send $him on $his way. - <<elseif getSlave($AS).behavioralFlaw == "gluttonous">> - massaging $his stuffed belly until you tire of $him and send $him on $his way. - <<elseif getSlave($AS).devotion <= 20>> - tormenting $his gurgling belly until you tire of $his groaning and send $him on $his way. - <<elseif getSlave($AS).devotion <= 50>> - lavishing attention on $his gurgling belly, much to $his delight, until you tire of $him and send $him on $his way. - <<else>> - playing with $his belly. $He joins you in the endeavor, happy that you are pleased with the - <<if _doMe != 1>> - outcome. - <<else>> - outcome, but $his - <<if canSee(getSlave($AS))>>eyes tell<<else>>face tells<</if>> - you $he wants more. - <</if>> - <!-- Fuckings for devoted slaves. --> - <<set _doMe = 1>> - <<if canDoVaginal(getSlave($AS)) && getSlave($AS).vagina > 0>> - <<set _sexType = "vaginal">> - <<elseif canDoAnal(getSlave($AS)) && getSlave($AS).anus > 0>> - <<set _sexType = "anal">> - <<else>> - <<set _sexType = "none">> - <</if>> - <<if _sexType != "none">> - <<if $PC.belly >= 10000>> - <<set _doMe = 0>> - $His <<if _sexType == "vaginal">>pussy<<else>>ass<</if>> is under a lot of pressure from $his swollen middle and surely would feel amazing; it's even <<if _sexType == "vaginal">>sopping wet for<<else>>eagerly winking at<</if>> you. Unfortunately, no matter how hard you try, you can't find a position that will accommodate both $his food-stuffed stomach and your own gravid middle. Sighing, you settle for $his mouth instead. - <<else>> - <<if $PC.dick != 0>> - You're already rock hard so you - <<else>> - <<if _sexType == "vaginal">> - You don a strap-on and - <<else>> - You don a strap-on, lube up, - <</if>> - <</if>> - pull $his legs apart, - <<if _sexType == "vaginal">> - revealing $his - <<if getSlave($AS).vaginaLube > 1>> - sopping wet, - <<elseif getSlave($AS).vaginaLube > 0>> - moist, - <<else>> - moist, relative to its usual dryness, - <</if>> - <<if getSlave($AS).vagina >= 10>> - devastated - <<elseif getSlave($AS).vagina > 3>> - cavernous - <<elseif getSlave($AS).vagina > 2>> - loose - <<elseif getSlave($AS).vagina > 1>> - used - <<else>> - tight - <</if>> - pussy. - <<else>> - and heft $his bulk up to reveal $his - <<if getSlave($AS).anus > 3>> - gaping asshole. - <<elseif getSlave($AS).anus > 2>> - loose anus. - <<elseif getSlave($AS).anus > 1>> - used asshole. - <<else>> - tight asshole. - <</if>> - <</if>> - $His belly is putting so much pressure on it that - <<if _sexType == "vaginal">> - <<set _looseness = getSlave($AS).vagina>> - <<else>> - <<set _looseness = getSlave($AS).anus>> - <</if>> - <<if _sexType == "vaginal" && _looseness >= 10>> - you might be able to get some decent friction now. - <<if $PC.dick != 0>> - You can actually feel the sides of $his cunt as you slide in. - <<else>> - You slide in like it's still nothing. - <</if>> - <<elseif _looseness > 3>> - you should be able to get a decent fuck out of it. - <<if $PC.dick != 0>> - You can't help but be amazed that you're getting some resistance as you slide in. - <<else>> - You slide in like it's nothing. - <</if>> - <<elseif _looseness > 2>> - it won't feel so - <<if _sexType == "vaginal">> - worn out. - <<else>> - stretched. - <</if>> - <<if $PC.dick != 0>> - $He gives some nice resistance as you squeeze into $him. - <<else>> - You squeeze in without problem. - <</if>> - <<elseif _looseness > 1>> - it'll feel positively tight. - <<if $PC.dick != 0>> - $His <<if _sexType == "vaginal">>pussy<<else>>anus<</if>> feels great, you practically had to squeeze in. - <<else>> - You squeeze in with a little effort. - <</if>> - <<else>> - you'll barely be able to fit it in. - <<if $PC.dick != 0>> - $His <<if _sexType == "vaginal">>vagina<<else>>rear<</if>> is so tight you can barely get it in, but with a little work, you manage to squeeze into its tight confines. $He's tighter than any <<if _sexType == "anal">>anal<</if>> virgin you've ever fucked. - <<else>> - You have to - <<if _sexType == "vaginal">> - lube up some, - <<else>> - get a little rough, - <</if>> - but eventually you manage to slide into $his extremely tight <<if _sexType == "vaginal">>vagina<<else>>anus<</if>>. - <</if>> - <</if>> - Once you're hilted, you bring your hands to $his distended belly, eager to feel it move as you fuck $him. - <<if hasAnyArms(getSlave($AS))>> - $His own join<<if hasBothArms(getSlave($AS))>>s<</if>> yours atop the taut dome. - <</if>> - Every thrust into the stuffed $desc forces $his full middle to leap back before slamming into your stomach alongside a moaning groan. As you pick up the pace, $he begins to buck against you, adding even more motion to $his body. It doesn't take long for you to reach your peak and, after cumming, catch sight of $his own climax. Watching $his middle attempt to contract around the mass of slave food inside $him invigorates you for a second round. - <<if $PC.balls >= 30>> - By the time you're done, $he's positively massive; your copious seed flows out of $him in spurts as $his body desperately struggles to relieve the extra pressure your huge balls pumped into $him. - <</if>> - Once you are spent, <<if $PC.balls >= 30>>and $he's forced out all your cum,<</if>> you settle down beside $him and rest your head against $his belly; it almost feels like a water-filled pillow, albeit a little noisy. You and <<= getSlave($AS).slaveName>> doze off together for a much needed nap. You don't get much rest; $his stomach's constant groaning and burbling keeping you up, so you send $him on $his way. $He blows you one last kiss and eagerly looks forward to next time. - <<if _sexType == "vaginal">> - <<= VCheck.Vaginal(getSlave($AS), 2)>> - <<else>> - <<= VCheck.Anal(getSlave($AS), 2)>> - <</if>> - <</if>> - <<else>> - <<set _doMe = 0>> - <</if>> - <<if _doMe == 0>> - <<if $PC.dick != 0>> - You crawl onto the couch above $his head and lower your erect cock straight into $his waiting mouth. $He eagerly sucks you off, $his belly wobbling with every thrust into $his throat. You cum fast and hard into $him, a product of being on the edge during $his feeding; - <<if getSlave($AS).behavioralFlaw == "gluttonous">> - $he takes it like nothing and resumes sucking, $his gluttony showing no bounds. - <<else>> - $he swallows it promptly and keeps sucking. You'd swear $he was a glutton at this point. - <</if>> - <<else>> - You crawl onto the couch above $his head and lower your needy pussy straight onto $his outstretched tongue. $He eagerly eats you out, $his belly wobbling along to $his vigorous licking. You cum fast and hard onto $him, a product of being on the edge during $his feeding; - <<if getSlave($AS).behavioralFlaw == "gluttonous">> - $he laps it all up and resumes pleasuring you, $his gluttony showing no bounds. - <<else>> - $he laps it promptly and resumes pleasuring you. You'd swear $he was a glutton at this point. - <</if>> - <</if>> - Once you are spent, you slide down beside $him and rest your head against $his belly; it almost feels like a water-filled pillow, albeit a little noisy. You and <<= getSlave($AS).slaveName>> doze off together for a much needed nap. You don't get much rest; $his stomach's constant groaning and burbling keeping you up, so you send $him on $his way. $He blows you one last kiss and eagerly looks forward to next time. - <<set getSlave($AS).counter.oral += 2, $oralTotal += 2>> - <</if>> - <</if>> -<</if>> - -<<if _pregDiscovery == 1>> - Once you've managed to stop $his heaving and clean up, you decide to get to the root of this mess. While most of the tests come back normal, one in particular catches your eye; @@.lime;$he is pregnant <<if getSlave($AS).preg > getSlave($AS).pregData.normalBirth/4>> and surprisingly far along<</if>>.@@ - <<run deflate(getSlave($AS))>> - <<set getSlave($AS).pregKnown = 1>> -<<else>> - <<if getSlave($AS).inflation == 3>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>> - $He gingerly leaves your office, massaging $his over-stuffed belly as $he goes. - <<else>> - $His belly wobbles heavily as $he is helped from your office. - <</if>> - Being filled so full @@.health.dec;surely had negative effects@@ on $his health. - <<run healthDamage(getSlave($AS), 10)>> - <<elseif getSlave($AS).inflation == 2>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>> - $He gingerly leaves your office, massaging $his stuffed belly as $he goes. - <<else>> - $His belly wobbles heavily as $he is helped from your office. - <</if>> - <<elseif getSlave($AS).inflation == 1>> - <<if canWalk(getSlave($AS)) || (canMove(getSlave($AS)) && getSlave($AS).rules.mobility == "permissive")>> - $He gingerly leaves your office, massaging $his distended belly as $he goes. - <<else>> - $His belly wobbles as $he is helped from your office. - <</if>> - <</if>> - <<if getSlave($AS).fetish == "mindbroken">> - You question if the broken $girl understood your commands, but relish the idea of force-feeding $him even more should $he fail you. - <</if>> -<</if>> - -<<run SetBellySize(getSlave($AS))>> diff --git a/src/npc/interaction/passage/abort.js b/src/npc/interaction/passage/abort.js new file mode 100644 index 0000000000000000000000000000000000000000..2251293e14c8d450b5c779daf213ba6862dc68ae --- /dev/null +++ b/src/npc/interaction/passage/abort.js @@ -0,0 +1,70 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.abort = function(slave) { + const node = new DocumentFragment(); + let r = []; + + const { + He, His, + he, his, him + } = getPronouns(slave); + + r.push(`The remote surgery makes aborting a pregnancy quick and efficient.`); + + if (slave.preg < 4) { + r.push(`It was so early in ${his} pregnancy that the potential mental effects are diminished.`); + } else { + r.push(`${slave.slaveName} is`); + if (slave.fuckdoll > 0 || slave.fetish === "mindbroken") { + r.push(`completely unmoved by the development.`); + } else if (slave.sexualFlaw === "breeder") { + r.push(`<span class="red">fundamentally broken.</span> ${His} entire concept of self and sexuality was wrapped up in the life growing within ${him}, and now it is gone.`); + slave.fetish = "mindbroken"; + slave.behavioralQuirk = "none"; + slave.behavioralFlaw = "none"; + slave.sexualQuirk = "none"; + slave.sexualFlaw = "none"; + slave.devotion = 0; + slave.trust = 0; + } else if (slave.devotion < -50) { + r.push(`<span class="devotion dec">filled with violent, consuming hatred.</span> Even though ${he} knew ${his} baby was destined for a slave orphanage, it seems ${he} cared for it and views you as its killer. ${He} is <span class="trust dec">terrified of your power</span> over ${his} body.`); + slave.trust -= 10; + slave.devotion -= 25; + } else if (slave.devotion < -20) { + r.push(`<span class="devotion dec">afflicted by desperate, inconsolable sobbing.</span> Even though ${he} knew ${his} baby was destined for a slave orphanage, it seems ${he} cared for it. ${He} is <span class="trust dec">terrified of your power</span> over ${his} body.`); + slave.trust -= 10; + slave.devotion -= 10; + } else if (slave.fetish === "pregnancy") { + r.push(`<span class="devotion dec">filled with a deep sorrow.</span> To a pregnancy fetishist, having a pregnancy end like this hurts far worse than birth ever would. ${He} is <span class="trust dec">terrified of a repeat performance.</span>`); + const _fetishModifier = slave.fetishStrength/2; + slave.devotion -= 1*_fetishModifier; + slave.trust -= 1*_fetishModifier; + } else if (slave.devotion <= 20) { + r.push(`<span class="devotion dec">consumed by muted weeping and enduring sorrow.</span> Even though ${he} knew ${his} baby was destined for a slave orphanage, it seems ${he} cared for it. ${He} is <span class="trust dec">terrified of your power</span> over ${his} body.`); + slave.trust -= 10; + slave.devotion -= 5; + } else if (slave.devotion <= 50) { + r.push(`dully obedient. ${He} has been broken to slave life so thoroughly that even this is neither surprising nor affecting. ${He} is <span class="trust dec">terrified of your power</span> over ${his} body.`); + slave.trust -= 10; + } else { + r.push(`<span class="devotion inc">pleased by this stark development,</span> since ${he} is so attentive to your will. ${He} also expects ${he}'ll be able to fuck better now.`); + slave.devotion += 4; + } + } + + if (slave.abortionTat > -1) { + slave.abortionTat++; + r.push(`The temporary tattoo of a child has been replaced with ${his} ${ordinalSuffix(slave.abortionTat)} crossed out infant.`); + cashX(forceNeg(V.modCost), "slaveMod", slave); + } + + slave.preg = (lastPregRule(slave, V.defaultRules)) ? -1 : 0; + + TerminatePregnancy(slave); + actX(slave, "abortions"); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/npc/interaction/passage/abort.tw b/src/npc/interaction/passage/abort.tw deleted file mode 100644 index a1a7a7b2d5b1c8d0a36ac8f719a5b8c324e8d636..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/abort.tw +++ /dev/null @@ -1,48 +0,0 @@ -:: Abort [nobr] - -<<set $nextButton = "Back", $nextLink = "Slave Interact">> - -The remote surgery makes aborting a pregnancy quick and efficient. - -<<if getSlave($AS).preg < 4>> - It was so early in $his pregnancy that the potential mental effects are diminished. -<<else>> - <<= getSlave($AS).slaveName>> is - <<if (getSlave($AS).fuckdoll > 0) || (getSlave($AS).fetish == "mindbroken")>> - completely unmoved by the development. - <<elseif getSlave($AS).sexualFlaw == "breeder">> - @@.red;fundamentally broken.@@ $His entire concept of self and sexuality was wrapped up in the life growing within $him, and now it is gone. - <<set getSlave($AS).fetish = "mindbroken", getSlave($AS).behavioralQuirk = "none", getSlave($AS).behavioralFlaw = "none", getSlave($AS).sexualQuirk = "none", getSlave($AS).sexualFlaw = "none", getSlave($AS).devotion = 0, getSlave($AS).trust = 0>> - <<elseif getSlave($AS).devotion < -50>> - @@.mediumorchid;filled with violent, consuming hatred.@@ Even though $he knew $his baby was destined for a slave orphanage, it seems $he cared for it and views you as its killer. $He is @@.gold;terrified of your power@@ over $his body. - <<set getSlave($AS).trust -= 10, getSlave($AS).devotion -= 25>> - <<elseif getSlave($AS).devotion < -20>> - @@.mediumorchid;afflicted by desperate, inconsolable sobbing.@@ Even though $he knew $his baby was destined for a slave orphanage, it seems $he cared for it. $He is @@.gold;terrified of your power@@ over $his body. - <<set getSlave($AS).trust -= 10, getSlave($AS).devotion -= 10>> - <<elseif getSlave($AS).fetish == "pregnancy">> - @@.mediumorchid;filled with a deep sorrow.@@ To a pregnancy fetishist, having a pregnancy end like this hurts far worse than birth ever would. $He is @@.gold;terrified of a repeat performance.@@ - <<set _fetishModifier = getSlave($AS).fetishStrength/2>> - <<set getSlave($AS).devotion -= 1*_fetishModifier, getSlave($AS).trust -= 1*_fetishModifier>> - <<elseif getSlave($AS).devotion <= 20>> - @@.mediumorchid;consumed by muted weeping and enduring sorrow.@@ Even though $he knew $his baby was destined for a slave orphanage, it seems $he cared for it. $He is @@.gold;terrified of your power@@ over $his body. - <<set getSlave($AS).trust -= 10, getSlave($AS).devotion -= 5>> - <<elseif getSlave($AS).devotion <= 50>> - dully obedient. $He has been broken to slave life so thoroughly that even this is neither surprising nor affecting. $He is @@.gold;terrified of your power@@ over $his body. - <<set getSlave($AS).trust -= 10>> - <<else>> - @@.hotpink;pleased by this stark development,@@ since $he is so attentive to your will. $He also expects $he'll be able to fuck better now. - <<set getSlave($AS).devotion += 4>> - <</if>> -<</if>> - -<<if getSlave($AS).abortionTat > -1>> - <<set getSlave($AS).abortionTat++>> - The temporary tattoo of a child has been replaced with $his <<= ordinalSuffix(getSlave($AS).abortionTat)>> crossed out infant. - <<run cashX(forceNeg($modCost), "slaveMod", getSlave($AS))>> -<</if>> - -<<if lastPregRule(getSlave($AS),$defaultRules)>><<set getSlave($AS).preg = -1>><<else>><<set getSlave($AS).preg = 0>><</if>> - -<<run TerminatePregnancy(getSlave($AS))>> -<<set getSlave($AS).counter.abortions++>> -<<set $abortionsTotal++>> diff --git a/src/npc/interaction/passage/fAnimalImpreg.js b/src/npc/interaction/passage/fAnimalImpreg.js new file mode 100644 index 0000000000000000000000000000000000000000..56ff0874f9144d834e38d2ed4b3b3e09c62b18d2 --- /dev/null +++ b/src/npc/interaction/passage/fAnimalImpreg.js @@ -0,0 +1,66 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {HTMLElement} + */ +App.Interact.fAnimalImpreg = function(slave) { + const node = document.createElement("div"); + let r = []; + let eligibility; + const {him} = getPronouns(slave); + + App.UI.DOM.appendNewElement("h2", node, `Select an eligible animal to knock ${him} up`); + + /* FIXME: this might not work */ + for (const canine of V.canine) { + if (canBreed(getSlave(V.AS), canine)) { + App.UI.DOM.appendNewElement("div", node, App.UI.DOM.link( + `Have a ${canine.species !== "dog" ? canine.species : canine.breed} knock ${him} up`, + () => jQuery(node).empty().append(content(canine)) + )); + eligibility = true; + } + } + for (const hooved of V.hooved) { + if (canBreed(getSlave(V.AS), hooved)) { + App.UI.DOM.appendNewElement("div", node, App.UI.DOM.link( + `Have a ${hooved.species} knock ${him} up`, + () => jQuery(node).empty().append(content(hooved)) + )); + eligibility = true; + } + } + for (const feline of V.feline) { + if (canBreed(getSlave(V.AS), feline)) { + App.UI.DOM.appendNewElement("div", node, App.UI.DOM.link( + `Have a ${feline.species !== "dog" ? feline.species : feline.breed} knock ${him} up`, + () => jQuery(node).empty().append(content(feline)) + )); + eligibility = true; + } + } + if (!eligibility) { + App.UI.DOM.appendNewElement("div", node, `You have no animals capable of inseminating ${him}`, `note`); + } + App.Events.addParagraph(node, r); + return node; + + function content(animal) { + const el = new DocumentFragment(); + r.push(`You have a servant lead the`); + if (animal.species !== "dog" || animal.species !== "cat") { + r.push(animal.species); + } else { + r.push(animal.breed); + } + r.push(`in on a leash and feed him a special treat, one laced with high amounts of aphrodisiacs and vasodilators. They have an effect very rapidly, and the`); + if (animal.species !== "dog" && animal.species !== "cat") { + r.push(`${animal.species}'s`); + } else { + r.push(`${animal.breed}'s`); + } + r.push(`${animal.dickSize} cock quickly stands at attention.`); + + return el; + } +}; diff --git a/src/npc/interaction/passage/fAnimalImpreg.tw b/src/npc/interaction/passage/fAnimalImpreg.tw deleted file mode 100644 index 3132a6973e53927841363eee766c7516434fb0af..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/fAnimalImpreg.tw +++ /dev/null @@ -1,46 +0,0 @@ -:: FAnimalImpreg [nobr] - -<<set $nextButton = "Back", $nextLink = "Slave Interact", $impregnatrix = 0, $eligibility = 0>> - -<<set _CL = $canine.length, _HL = $hooved.length, _FL = $feline.length>> - -<br><br> - -__Select an eligible animal to knock $him up:__ - -<br> - -/* FIXME: this might not work */ - -<<for _c = 0; _c < _CL; _c++>> - <<if canBreed(getSlave($AS), $canine[_c])>> - <<if $canine[_c].species != "dog">> - <<set _canine = $canine[_c].species>> - <<else>> - <<set _canine = $canine[_c].breed>> - <</if>> - <br><<link "Have a _canine knock $him up" "FAnimalImpreg Consummate">><<set $impregnatrix = $canine[_c]>><</link>> - <<set $eligibility = 1>> - <</if>> -<</for>> -<<for _h = 0; _h < _HL; _h++>> - <<if canBreed(getSlave($AS), $hooved[_h])>> - <<set _hooved = $hooved[_h].species>> - <br><<link "Have a _hooved knock $him up" "FAnimalImpreg Consummate">><<set $impregnatrix = $hooved[_h]>><</link>> - <<set $eligibility = 1>> - <</if>> -<</for>> -<<for _f = 0; _f < _fL; _f++>> - <<if canBreed(getSlave($AS), $feline[_f])>> - <<if $feline[_f].species != "cat">> - <<set _feline = $feline[_f].species>> - <<else>> - <<set _feline = $feline[_f].breed>> - <</if>> - <br><<link "Have a _feline knock $him up" "FAnimalImpreg Consummate">><<set $impregnatrix = $feline[_f]>><</link>> - <<set $eligibility = 1>> - <</if>> -<</for>> -<<if ($eligibility == 0)>> - //You have no animals capable of inseminating $him.// -<</if>> diff --git a/src/npc/interaction/passage/fAnimalImpregConsummate.tw b/src/npc/interaction/passage/fAnimalImpregConsummate.tw deleted file mode 100644 index f8d8ada254c2427da6b91ba76ba052f47834aaf7..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/fAnimalImpregConsummate.tw +++ /dev/null @@ -1,6 +0,0 @@ -:: FAnimalImpreg Consummate [nobr] - -/* TODO: all of this */ - -<<set _animal = $impregnatrix>> -You have a servant lead the <<if _animal.species != "dog" || _animal.species != "cat">><<print _animal.species>><<else>><<print _animal.breed>><</if>> in on a leash and feed him a special treat, one laced with high amounts of aphrodisiacs and vasodilators. They have an effect very rapidly, and the <<if _animal.species != "dog" && _animal.species != "cat">><<print _animal.species>><<else>><<print _animal.breed>><</if>>'s <<print _animal.dickSize>> cock quickly stands at attention. diff --git a/src/npc/interaction/passage/fMarry.js b/src/npc/interaction/passage/fMarry.js index b0c514a8770869e6582396ccd0a1b4e3cc565c58..b3f185781c359931081bd7bd5377f3d54a203c39 100644 --- a/src/npc/interaction/passage/fMarry.js +++ b/src/npc/interaction/passage/fMarry.js @@ -1,721 +1,775 @@ -new App.DomPassage("FMarry", - () => { - V.nextButton = "Back"; - V.nextLink = "Slave Interact"; - const slave = getSlave(V.AS); - const { - His, He, - his, he, him, himself, wife, girl, women - } = getPronouns(slave); - const {title: Master, say: say} = getEnunciation(slave); - const el = new DocumentFragment(); - let r = []; - const belly = bellyAdjective(slave); - const relSlave = getSlave(slave.relationshipTarget); - const { - he2, him2, his2 - } = getPronouns(relSlave ? relSlave : {pronoun: App.Data.Pronouns.Kind.plural}).appendSuffix("2"); - const { - hisP - } = getPronouns(V.PC).appendSuffix("P"); - const groom = V.PC.title === 1 ? `groom` : `bride`; - const { - HeA, HisA, - heA, hisA, himA, girlA, himselfA, womanA, loliA - } = getPronouns(assistant.pronouns().main).appendSuffix("A"); - const myName = (SlaveStatsChecker.checkForLisp(slave)) ? lispReplace(slave.slaveName) : slave.slaveName; - const playerSurname = (SlaveStatsChecker.checkForLisp(slave)) ? lispReplace(V.PC.slaveSurname) : V.PC.slaveSurname; - let reactionType; - r.push(`You tell ${slave.slaveName} that you're going to marry ${him}. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.)`); - if (slave.fetish === "mindbroken") { - r.push(`${He} doesn't react.`); - reactionType = 0; - } else if (slave.devotion+slave.trust >= 175) { - r.push(`You're not exactly lacking in ways to make`); - if (slave.physicalAge > 30) { - r.push(`${women}`); - } else { - r.push(`${girl}s`); - } - r.push(`burst into tears, but this one is unusually effective. When ${he}'s gotten ${himself} under control again,`); - if (!hasAnyArms(slave)) { - r.push(`looking somewhat embarrassed that ${he} can't wipe ${his} own tears`); - } else { - r.push(`distractedly cuffing away ${his} tears`); - } - r.push(`and consciously breathing deeply,`); - if (canTalk(slave)) { - r.push(`${he} ${say}s,`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`"I promise I'll try to stop sleeping around so much."`); - } else if (slave.relationship === 4) { - r.push(`"I'll have to break up with ${relSlave.slaveName}... I'll try to let ${him2} down gently, ${he2}'ll understand."`); - } else if (slave.relationship === 3) { - r.push(`"${relSlave.slaveName} will miss having sex with me, but ${he2}'ll understand."`); - } else if (slave.relationship > 0) { - r.push(`"I'll have to stop hanging out with ${relSlave.slaveName}; I'm sure ${he2}'ll understand."`); - } else { - r.push(`"I've been waiting for this day! I'm so happy!"`); - } - r.push(`${He} continues,`); +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {DocumentFragment} + */ +App.Interact.fMarry = function(slave) { + const { + His, He, + his, he, him, himself, wife, girl, women + } = getPronouns(slave); + const {title: Master, say: say} = getEnunciation(slave); + const el = new DocumentFragment(); + let r = []; + const belly = bellyAdjective(slave); + const relSlave = getSlave(slave.relationshipTarget); + const { + he2, him2, his2 + } = getPronouns(relSlave ? relSlave : {pronoun: App.Data.Pronouns.Kind.plural}).appendSuffix("2"); + const { + hisP + } = getPronouns(V.PC).appendSuffix("P"); + const groom = V.PC.title === 1 ? `groom` : `bride`; + const { + HeA, HisA, + heA, hisA, himA, girlA, himselfA, womanA, loliA + } = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const myName = (SlaveStatsChecker.checkForLisp(slave)) ? lispReplace(slave.slaveName) : slave.slaveName; + const playerSurname = (SlaveStatsChecker.checkForLisp(slave)) ? lispReplace(V.PC.slaveSurname) : V.PC.slaveSurname; + let reactionType; + r.push(`You tell ${slave.slaveName} that you're going to marry ${him}. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.)`); + if (slave.fetish === "mindbroken") { + r.push(`${He} doesn't react.`); + reactionType = 0; + } else if (slave.devotion+slave.trust >= 175) { + r.push(`You're not exactly lacking in ways to make`); + if (slave.physicalAge > 30) { + r.push(`${women}`); + } else { + r.push(`${girl}s`); + } + r.push(`burst into tears, but this one is unusually effective. When ${he}'s gotten ${himself} under control again,`); + if (!hasAnyArms(slave)) { + r.push(`looking somewhat embarrassed that ${he} can't wipe ${his} own tears`); + } else { + r.push(`distractedly cuffing away ${his} tears`); + } + r.push(`and consciously breathing deeply,`); + if (canTalk(slave)) { + r.push(`${he} ${say}s,`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`"I promise I'll try to stop sleeping around so much."`); + } else if (slave.relationship === 4) { + r.push(`"I'll have to break up with ${relSlave.slaveName}... I'll try to let ${him2} down gently, ${he2}'ll understand."`); + } else if (slave.relationship === 3) { + r.push(`"${relSlave.slaveName} will miss having sex with me, but ${he2}'ll understand."`); + } else if (slave.relationship > 0) { + r.push(`"I'll have to stop hanging out with ${relSlave.slaveName}; I'm sure ${he2}'ll understand."`); + } else { + r.push(`"I've been waiting for this day! I'm so happy!"`); } - r.push(`"Thank you, ${Master}. I am going to do my best to be a`); - if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { - if (slave.fetish === "submissive") { - r.push(`perfect submissive ${wife} to you,`); - } else if (slave.fetish === "cumslut") { - r.push(`perfect oral ${wife},`); - } else if (slave.fetish === "humiliation") { - r.push(`hot ${wife} for you,`); - } else if (slave.fetish === "buttslut") { - r.push(`perfect little anal ${wife},`); - } else if (slave.fetish === "boobs") { - if (slave.boobs > 800) { - r.push(`perfect big-boobed`); - } else { - r.push(`perfect-boobed`); - } - r.push(`${wife}`); - } else if (slave.fetish === "pregnancy") { - r.push(`perfect barefoot breeding ${wife},`); - } else if (slave.fetish === "dom") { - r.push(`perfect, you know, sharing ${wife} with other slaves,`); - } else if (slave.fetish === "sadist") { - r.push(`perfect ${wife} to use on other slaves,`); - } else if (slave.fetish === "masochist") { - r.push(`good, beaten ${wife},`); + r.push(`${He} continues,`); + } + r.push(`"Thank you, ${Master}. I am going to do my best to be a`); + if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { + if (slave.fetish === "submissive") { + r.push(`perfect submissive ${wife} to you,`); + } else if (slave.fetish === "cumslut") { + r.push(`perfect oral ${wife},`); + } else if (slave.fetish === "humiliation") { + r.push(`hot ${wife} for you,`); + } else if (slave.fetish === "buttslut") { + r.push(`perfect little anal ${wife},`); + } else if (slave.fetish === "boobs") { + if (slave.boobs > 800) { + r.push(`perfect big-boobed`); } else { - r.push(`good ${wife},`); + r.push(`perfect-boobed`); } + r.push(`${wife}`); + } else if (slave.fetish === "pregnancy") { + r.push(`perfect barefoot breeding ${wife},`); + } else if (slave.fetish === "dom") { + r.push(`perfect, you know, sharing ${wife} with other slaves,`); + } else if (slave.fetish === "sadist") { + r.push(`perfect ${wife} to use on other slaves,`); + } else if (slave.fetish === "masochist") { + r.push(`good, beaten ${wife},`); } else { r.push(`good ${wife},`); } - r.push(`${Master}. Oh, thank you, ${Master}," ${he} blubbers, and starts crying again.`); - } else if (!hasAnyArms(slave)) { - r.push(`${he} painstakingly mouths ${his} thanks, since ${he} cannot speak or use hands to sign.`); - if (slave.relationship !== 0) { - r.push(`${He} struggles to tell you`); - if (slave.relationship === -1) { - r.push(`that ${he}'ll try to be less of a slut.`); - } else if (slave.relationship === 4) { - r.push(`that ${he}'ll try to let ${his} lover ${relSlave.slaveName} down gently.`); - } else if (slave.relationship === 3) { - r.push(`that ${he}'ll try to let ${his} FWB ${relSlave.slaveName} down gently.`); - } else if (slave.relationship > 0) { - r.push(`that ${he}'ll have to stop hanging around ${relSlave.slaveName}.`); - } else { - r.push(`that ${he} has never been happier.`); - } - } } else { - r.push(`${he} shakily signs ${his} thanks twice in a row before breaking down again.`); - if (slave.relationship !== 0) { - r.push(`${He} regains composure enough to continue signing out`); - if (slave.relationship === -1) { - r.push(`that ${he}'ll try to be less of a slut.`); - } else if (slave.relationship === 4) { - r.push(`that ${he}'ll try to let ${his} lover ${relSlave.slaveName} down gently.`); - } else if (slave.relationship === 3) { - r.push(`that ${he}'ll try to let ${his} FWB ${relSlave.slaveName} down gently.`); - } else if (slave.relationship > 0) { - r.push(`that ${he}'ll have to stop hanging around ${relSlave.slaveName}.`); - } else { - r.push(`that ${he} has never been happier.`); - } - } + r.push(`good ${wife},`); } - r.push(`Despite ${his} devotion and trust, ${he} is still a slave, and probably knows that ${his} position could always change. This brings ${him} one step closer to true permanence, and ${he} knows it.`); - reactionType = 1; - } else if (slave.devotion < -20 && slave.trust > 20) { - r.push(`You're not exactly lacking in ways to make`); - if (slave.physicalAge > 30) { - r.push(`${women}`); - } else { - r.push(`${girl}s`); - } - r.push(`burst into tears, but this one is surprisingly effective. It seems ${slave.slaveName} does not want to marry you, if ${his} prolonged, anguished sobbing is anything to go by. However, ${he} would have to be a fool to think there's any way out of it.`); - if (canTalk(slave)) { - r.push(`${He} ${say}s, "Please ${Master}, I don't want to`); - if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { - if (slave.fetish === "submissive") { - r.push(`be your little submissive fucktoy,`); - } else if (slave.fetish === "cumslut") { - r.push(`be your cum sucker,`); - } else if (slave.fetish === "humiliation") { - r.push(`be stripped bare and shown off,`); - } else if (slave.fetish === "buttslut") { - r.push(`have things shoved up my butt,`); - } else if (slave.fetish === "boobs") { - r.push(`have my tits teased every night,`); - } else if (slave.fetish === "pregnancy") { - if (canGetPregnant(slave)) { - r.push(`get knocked up by you,`); - } else { - r.push(`be your pregnant toy,`); - } - } else if (slave.fetish === "dom") { - r.push(`have to rule your sissy dick,`); - } else if (slave.fetish === "sadist") { - r.push(`spank your ass,`); - } else if (slave.fetish === "masochist") { - r.push(`get beaten by you,`); - } else { - r.push(`stay in your nice room,`); - } + r.push(`${Master}. Oh, thank you, ${Master}," ${he} blubbers, and starts crying again.`); + } else if (!hasAnyArms(slave)) { + r.push(`${he} painstakingly mouths ${his} thanks, since ${he} cannot speak or use hands to sign.`); + if (slave.relationship !== 0) { + r.push(`${He} struggles to tell you`); + if (slave.relationship === -1) { + r.push(`that ${he}'ll try to be less of a slut.`); + } else if (slave.relationship === 4) { + r.push(`that ${he}'ll try to let ${his} lover ${relSlave.slaveName} down gently.`); + } else if (slave.relationship === 3) { + r.push(`that ${he}'ll try to let ${his} FWB ${relSlave.slaveName} down gently.`); + } else if (slave.relationship > 0) { + r.push(`that ${he}'ll have to stop hanging around ${relSlave.slaveName}.`); } else { - r.push(`stay in your nice room,`); - } - - r.push(`${Master}. You're a terrible person, ${Master}," ${he} blubbers, and starts crying again.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`"I'll never be satisfied by just you!"`); - } else if (slave.relationship === 4) { - r.push(`"I love ${relSlave.slaveName}, not you ${Master}! You'll never be as good as ${him2}!"`); - } else if (slave.relationship === 3) { - r.push(`"But I like having sex with ${relSlave.slaveName}, not you ${Master}! You'll never be ss good as ${him2}!"`); - } else if (slave.relationship > 0) { - r.push(`"But I like spending time with ${relSlave.slaveName}, ${he2}'s so much nicer to be around than you, ${Master}.`); - } else { - r.push(`"I need you in my life, ${Master}, so why don't you bend down like the bitch you are and`); - if (slave.dick > 0) { - r.push(`suck my dick,`); - } else if (slave.vagina > -1) { - r.push(`eat me out,`); - } else { - r.push(`lick my ass,`); - } - r.push(`${Master}?"`); - } - } - } else if (!hasAnyArms(slave)) { - r.push(`${he} painstakingly mouths ${his} displeasure, since ${he} cannot speak or use hands to sign.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`${He} desperately tries to explain that you'll never satisfy ${him}.`); - } else if (slave.relationship === 4) { - r.push(`${He} desperately tries to explain that ${his} love, ${relSlave.slaveName}, is better than you'll ever be.`); - } else if (slave.relationship === 3) { - r.push(`${He} desperately tries to explain that ${his} lover, ${relSlave.slaveName}, satisfies ${his} far better than you can.`); - } else if (slave.relationship > 0) { - r.push(`${He} desperately tries to explain ${his} friend, ${relSlave.slaveName}, is so much more enjoyable to be around than you.`); - } else { - r.push(`${He} wiggles ${his} nethers at you, as if trying to tell you to do something.`); - } - } - } else { - r.push(`${he} shakily makes a rather rude hand gesture before crying more.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`${He} also makes it clear that you'll never satisfy ${him}.`); - } else if (slave.relationship === 4) { - r.push(`${He} also makes it clear that ${his} love, ${relSlave.slaveName}, is better than you'll ever be.`); - } else if (slave.relationship === 3) { - r.push(`${He} also makes it clear that ${his} lover, ${relSlave.slaveName}, satisfies ${him} far better than you can.`); - } else if (slave.relationship > 0) { - r.push(`${He} also makes it clear ${his} friend, ${relSlave.slaveName}, is so much more enjoyable to be around than you.`); - } else { - r.push(`On top of the prior gesturing, ${he} adds another, lewder one involving you and ${his} crotch.`); - } + r.push(`that ${he} has never been happier.`); } } - r.push(`Despite ${his} "fortune", ${he} is still a slave, and undoubtedly knows that ${his} position could easily change should you tire of ${him}. ${His} tears may not all be genuine either, you have a feeling ${he} may be trying to take advantage of you.`); - reactionType = 2; - } else if (slave.devotion < -20) { - r.push(`You're not exactly lacking in ways to make`); - if (slave.physicalAge > 30) { - r.push(`${women}`); - } else { - r.push(`${girl}s`); + } else { + r.push(`${he} shakily signs ${his} thanks twice in a row before breaking down again.`); + if (slave.relationship !== 0) { + r.push(`${He} regains composure enough to continue signing out`); + if (slave.relationship === -1) { + r.push(`that ${he}'ll try to be less of a slut.`); + } else if (slave.relationship === 4) { + r.push(`that ${he}'ll try to let ${his} lover ${relSlave.slaveName} down gently.`); + } else if (slave.relationship === 3) { + r.push(`that ${he}'ll try to let ${his} FWB ${relSlave.slaveName} down gently.`); + } else if (slave.relationship > 0) { + r.push(`that ${he}'ll have to stop hanging around ${relSlave.slaveName}.`); + } else { + r.push(`that ${he} has never been happier.`); + } } - r.push(`burst into tears, but this one is unusually effective. It seems ${slave.slaveName} does not want to marry you, if ${his} prolonged, anguished sobbing is anything to go by. However, ${he} would have to be a fool to think there's any way out of it. You lean in and whisper that`); + } + r.push(`Despite ${his} devotion and trust, ${he} is still a slave, and probably knows that ${his} position could always change. This brings ${him} one step closer to true permanence, and ${he} knows it.`); + reactionType = 1; + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`You're not exactly lacking in ways to make`); + if (slave.physicalAge > 30) { + r.push(`${women}`); + } else { + r.push(`${girl}s`); + } + r.push(`burst into tears, but this one is surprisingly effective. It seems ${slave.slaveName} does not want to marry you, if ${his} prolonged, anguished sobbing is anything to go by. However, ${he} would have to be a fool to think there's any way out of it.`); + if (canTalk(slave)) { + r.push(`${He} ${say}s, "Please ${Master}, I don't want to`); if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { if (slave.fetish === "submissive") { - r.push(`${he}'ll make the perfect submissive ${wife} for you dominate.`); + r.push(`be your little submissive fucktoy,`); } else if (slave.fetish === "cumslut") { - r.push(`${he}'ll make the perfect oral ${wife} for your`); - if (V.PC.dick > 0 && V.PC.vagina >= 0) { - r.push(`dick and pussy`); - } else if (V.PC.dick > 0) { - r.push(`cock`); - } else { - r.push(`pussy`); - } - r.push(`to enjoy.`); + r.push(`be your cum sucker,`); } else if (slave.fetish === "humiliation") { - r.push(`${he}'ll make a hot ${wife} for you to parade around naked.`); + r.push(`be stripped bare and shown off,`); } else if (slave.fetish === "buttslut") { - r.push(`${he}'ll make the perfect little anal ${wife}`); - if (V.PC.dick > 0) { - r.push(`to keep your dick warm.`); - } else { - r.push(`stick things in.`); - } + r.push(`have things shoved up my butt,`); } else if (slave.fetish === "boobs") { - r.push(`${he}'ll make the`); - if (slave.boobs > 800) { - r.push(`perfect big-boobed`); - } else { - r.push(`perfect-boobed`); - } - r.push(`${wife} for you to bury your head into.`); + r.push(`have my tits teased every night,`); } else if (slave.fetish === "pregnancy") { - r.push(`${he}'ll make the perfect barefoot breeding ${wife}.`); - if (V.PC.dick > 0 && canGetPregnant(slave)) { - r.push(`You poke ${him} with your erection, letting ${him} know what ${he}'s in for.`); + if (canGetPregnant(slave)) { + r.push(`get knocked up by you,`); + } else { + r.push(`be your pregnant toy,`); } } else if (slave.fetish === "dom") { - r.push(`${he}'ll make the perfect dominant ${wife} to force upon ${his} closest friends.`); + r.push(`have to rule your sissy dick,`); } else if (slave.fetish === "sadist") { - r.push(`${he}'ll make the perfect cruel ${wife} to force upon ${his} closest friends.`); + r.push(`spank your ass,`); } else if (slave.fetish === "masochist") { - r.push(`${he}'ll make a good, beaten ${wife}.`); + r.push(`get beaten by you,`); } else { - r.push(`${he}'ll make a good ${wife}.`); + r.push(`stay in your nice room,`); } } else { - r.push(`${he}'ll make a good ${wife}.`); + r.push(`stay in your nice room,`); } - if (canTalk(slave)) { - r.push(`"${Master}. Please, ${Master}, don't make me do this. I don't want this!" ${he} blubbers, and starts crying again.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`"I need a new dick in me every night! How can I be satisfied like this?!"`); - } else if (slave.relationship === 4) { - r.push(`"I love ${name}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); - } else if (slave.relationship === 3) { - r.push(`"I love playing around with ${relSlave.slaveName}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); - } else if (slave.relationship > 0) { - r.push(`"But I like spending time with ${relSlave.slaveName}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); + + r.push(`${Master}. You're a terrible person, ${Master}," ${he} blubbers, and starts crying again.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`"I'll never be satisfied by just you!"`); + } else if (slave.relationship === 4) { + r.push(`"I love ${relSlave.slaveName}, not you ${Master}! You'll never be as good as ${him2}!"`); + } else if (slave.relationship === 3) { + r.push(`"But I like having sex with ${relSlave.slaveName}, not you ${Master}! You'll never be ss good as ${him2}!"`); + } else if (slave.relationship > 0) { + r.push(`"But I like spending time with ${relSlave.slaveName}, ${he2}'s so much nicer to be around than you, ${Master}.`); + } else { + r.push(`"I need you in my life, ${Master}, so why don't you bend down like the bitch you are and`); + if (slave.dick > 0) { + r.push(`suck my dick,`); + } else if (slave.vagina > -1) { + r.push(`eat me out,`); } else { - r.push(`"I need you in my life, ${Master}, but not like this, please?"`); + r.push(`lick my ass,`); } + r.push(`${Master}?"`); } - } else if (!hasAnyArms(slave)) { - r.push(`${He} painstakingly pleads with you, since ${he} cannot speak or use hands to sign.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`${He} desperately tries to explain that ${he} needs multiple partners.`); - } else if (slave.relationship === 4) { - r.push(`${He} desperately begs you to not separate ${him} from ${his} love, ${relSlave.slaveName}.`); - } else if (slave.relationship === 3) { - r.push(`${He} desperately begs you to not separate ${him} from ${his} lover, ${relSlave.slaveName}.`); - } else if (slave.relationship > 0) { - r.push(`${He} desperately begs you to not separate ${him} from ${his} friend, ${relSlave.slaveName}.`); - } else { - r.push(`${He} desperately begs you to not marry ${him}, despite ${his} emotional connection with you.`); - } + } + } else if (!hasAnyArms(slave)) { + r.push(`${he} painstakingly mouths ${his} displeasure, since ${he} cannot speak or use hands to sign.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`${He} desperately tries to explain that you'll never satisfy ${him}.`); + } else if (slave.relationship === 4) { + r.push(`${He} desperately tries to explain that ${his} love, ${relSlave.slaveName}, is better than you'll ever be.`); + } else if (slave.relationship === 3) { + r.push(`${He} desperately tries to explain that ${his} lover, ${relSlave.slaveName}, satisfies ${his} far better than you can.`); + } else if (slave.relationship > 0) { + r.push(`${He} desperately tries to explain ${his} friend, ${relSlave.slaveName}, is so much more enjoyable to be around than you.`); + } else { + r.push(`${He} wiggles ${his} nethers at you, as if trying to tell you to do something.`); } + } + } else { + r.push(`${he} shakily makes a rather rude hand gesture before crying more.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`${He} also makes it clear that you'll never satisfy ${him}.`); + } else if (slave.relationship === 4) { + r.push(`${He} also makes it clear that ${his} love, ${relSlave.slaveName}, is better than you'll ever be.`); + } else if (slave.relationship === 3) { + r.push(`${He} also makes it clear that ${his} lover, ${relSlave.slaveName}, satisfies ${him} far better than you can.`); + } else if (slave.relationship > 0) { + r.push(`${He} also makes it clear ${his} friend, ${relSlave.slaveName}, is so much more enjoyable to be around than you.`); + } else { + r.push(`On top of the prior gesturing, ${he} adds another, lewder one involving you and ${his} crotch.`); + } + } + } + r.push(`Despite ${his} "fortune", ${he} is still a slave, and undoubtedly knows that ${his} position could easily change should you tire of ${him}. ${His} tears may not all be genuine either, you have a feeling ${he} may be trying to take advantage of you.`); + reactionType = 2; + } else if (slave.devotion < -20) { + r.push(`You're not exactly lacking in ways to make`); + if (slave.physicalAge > 30) { + r.push(`${women}`); + } else { + r.push(`${girl}s`); + } + r.push(`burst into tears, but this one is unusually effective. It seems ${slave.slaveName} does not want to marry you, if ${his} prolonged, anguished sobbing is anything to go by. However, ${he} would have to be a fool to think there's any way out of it. You lean in and whisper that`); + if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { + if (slave.fetish === "submissive") { + r.push(`${he}'ll make the perfect submissive ${wife} for you dominate.`); + } else if (slave.fetish === "cumslut") { + r.push(`${he}'ll make the perfect oral ${wife} for your`); + if (V.PC.dick > 0 && V.PC.vagina >= 0) { + r.push(`dick and pussy`); + } else if (V.PC.dick > 0) { + r.push(`cock`); + } else { + r.push(`pussy`); + } + r.push(`to enjoy.`); + } else if (slave.fetish === "humiliation") { + r.push(`${he}'ll make a hot ${wife} for you to parade around naked.`); + } else if (slave.fetish === "buttslut") { + r.push(`${he}'ll make the perfect little anal ${wife}`); + if (V.PC.dick > 0) { + r.push(`to keep your dick warm.`); + } else { + r.push(`stick things in.`); + } + } else if (slave.fetish === "boobs") { + r.push(`${he}'ll make the`); + if (slave.boobs > 800) { + r.push(`perfect big-boobed`); + } else { + r.push(`perfect-boobed`); + } + r.push(`${wife} for you to bury your head into.`); + } else if (slave.fetish === "pregnancy") { + r.push(`${he}'ll make the perfect barefoot breeding ${wife}.`); + if (V.PC.dick > 0 && canGetPregnant(slave)) { + r.push(`You poke ${him} with your erection, letting ${him} know what ${he}'s in for.`); + } + } else if (slave.fetish === "dom") { + r.push(`${he}'ll make the perfect dominant ${wife} to force upon ${his} closest friends.`); + } else if (slave.fetish === "sadist") { + r.push(`${he}'ll make the perfect cruel ${wife} to force upon ${his} closest friends.`); + } else if (slave.fetish === "masochist") { + r.push(`${he}'ll make a good, beaten ${wife}.`); } else { - r.push(`${He} desperately struggles to plead with you before breaking down again.`); - if (slave.relationship !== 0) { - if (slave.relationship === -1) { - r.push(`${He} tries to explain that ${he} needs multiple partners.`); - } else if (slave.relationship === 4) { - r.push(`${He} begs you to not separate ${him} from ${his} love, ${relSlave.slaveName}.`); - } else if (slave.relationship === 3) { - r.push(`${He} begs you to not separate ${him} from ${his} lover, ${relSlave.slaveName}.`); - } else if (slave.relationship > 0) { - r.push(`${He} begs you to not separate ${him} from ${his} friend, ${relSlave.slaveName}.`); - } else { - r.push(`${He} begs you to not marry ${him}, despite ${his} emotional connection with you.`); - } + r.push(`${he}'ll make a good ${wife}.`); + } + } else { + r.push(`${he}'ll make a good ${wife}.`); + } + if (canTalk(slave)) { + r.push(`"${Master}. Please, ${Master}, don't make me do this. I don't want this!" ${he} blubbers, and starts crying again.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`"I need a new dick in me every night! How can I be satisfied like this?!"`); + } else if (slave.relationship === 4) { + r.push(`"I love ${name}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); + } else if (slave.relationship === 3) { + r.push(`"I love playing around with ${relSlave.slaveName}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); + } else if (slave.relationship > 0) { + r.push(`"But I like spending time with ${relSlave.slaveName}! Please don't split us up ${Master}! I'll be a good ${girl}, ${Master}, please!"`); + } else { + r.push(`"I need you in my life, ${Master}, but not like this, please?"`); + } + } + } else if (!hasAnyArms(slave)) { + r.push(`${He} painstakingly pleads with you, since ${he} cannot speak or use hands to sign.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`${He} desperately tries to explain that ${he} needs multiple partners.`); + } else if (slave.relationship === 4) { + r.push(`${He} desperately begs you to not separate ${him} from ${his} love, ${relSlave.slaveName}.`); + } else if (slave.relationship === 3) { + r.push(`${He} desperately begs you to not separate ${him} from ${his} lover, ${relSlave.slaveName}.`); + } else if (slave.relationship > 0) { + r.push(`${He} desperately begs you to not separate ${him} from ${his} friend, ${relSlave.slaveName}.`); + } else { + r.push(`${He} desperately begs you to not marry ${him}, despite ${his} emotional connection with you.`); } } - r.push(`You leave ${him} to weep and consider ${his} fate. Despite ${his} "fortune", ${he} is still a slave, and undoubtedly knows that ${his} position could easily change should you tire of ${him}.`); - reactionType = 2; } else { - r.push(`${He} doesn't really react to this. By no means does ${he} want to be your ${wife}, but ${he}'s obedient enough to know that you are in charge. You leave ${him} to ${his} business, and go back to yours.`); + r.push(`${He} desperately struggles to plead with you before breaking down again.`); if (slave.relationship !== 0) { if (slave.relationship === -1) { - r.push(`${He} sighs at the realization that ${he} won't be allowed to be so promiscuous and will have to learn to focus ${his} attention on you.`); + r.push(`${He} tries to explain that ${he} needs multiple partners.`); } else if (slave.relationship === 4) { - r.push(`${He} sighs at the realization that ${he}'ll have to stop seeing ${his} love, ${relSlave.slaveName}.`); + r.push(`${He} begs you to not separate ${him} from ${his} love, ${relSlave.slaveName}.`); } else if (slave.relationship === 3) { - r.push(`${He} sighs at the realization that ${he}'ll have to stop spending so much time with ${his} lover, ${relSlave.slaveName}.`); + r.push(`${He} begs you to not separate ${him} from ${his} lover, ${relSlave.slaveName}.`); } else if (slave.relationship > 0) { - r.push(`${He} sighs at the realization that ${he}'ll have to stop spending so much time with ${his} friend, ${relSlave.slaveName}.`); + r.push(`${He} begs you to not separate ${him} from ${his} friend, ${relSlave.slaveName}.`); } else { - r.push(`Deep down, ${he} dreamed of this. But now that it's happening ${he} can't shake the feeling of regret.`); + r.push(`${He} begs you to not marry ${him}, despite ${his} emotional connection with you.`); } } - reactionType = 3; } - App.Events.addParagraph(el, r); - r = []; + r.push(`You leave ${him} to weep and consider ${his} fate. Despite ${his} "fortune", ${he} is still a slave, and undoubtedly knows that ${his} position could easily change should you tire of ${him}.`); + reactionType = 2; + } else { + r.push(`${He} doesn't really react to this. By no means does ${he} want to be your ${wife}, but ${he}'s obedient enough to know that you are in charge. You leave ${him} to ${his} business, and go back to yours.`); + if (slave.relationship !== 0) { + if (slave.relationship === -1) { + r.push(`${He} sighs at the realization that ${he} won't be allowed to be so promiscuous and will have to learn to focus ${his} attention on you.`); + } else if (slave.relationship === 4) { + r.push(`${He} sighs at the realization that ${he}'ll have to stop seeing ${his} love, ${relSlave.slaveName}.`); + } else if (slave.relationship === 3) { + r.push(`${He} sighs at the realization that ${he}'ll have to stop spending so much time with ${his} lover, ${relSlave.slaveName}.`); + } else if (slave.relationship > 0) { + r.push(`${He} sighs at the realization that ${he}'ll have to stop spending so much time with ${his} friend, ${relSlave.slaveName}.`); + } else { + r.push(`Deep down, ${he} dreamed of this. But now that it's happening ${he} can't shake the feeling of regret.`); + } + } + reactionType = 3; + } + App.Events.addParagraph(el, r); + r = []; + + r.push(`${capFirstChar(V.assistant.name)} prompts you for wedding`); + if (V.assistant.personality <= 0) { + r.push(`instructions.`); + } else { + r.push(`instructions, ${hisA}`); + if (V.assistant.appearance === "monstergirl") { + r.push(`monster${girlA} avatar appearing in a surprisingly conventional surplice that covers ${himA} up decently. All except for hisA horns, which protrude from under the headpiece.`); + } else if (V.assistant.appearance === "shemale") { + r.push(`shemale avatar appears in a collar patterned to look like a minister's, and absolutely nothing else, stroking ${himselfA} with anticipation.`); + } else if (V.assistant.appearance === "amazon") { + r.push(`amazon avatar wearing a tribal shaman's cape and carrying a medicine stick adorned with all sorts of little charms and baubles.`); + } else if (V.assistant.appearance === "businesswoman") { + r.push(`business${womanA} avatar looking rather severe in a minister's collar.`); + } else if (V.assistant.appearance === "fairy") { + r.push(`fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes and looking rather smug about it.`); + } else if (V.assistant.appearance === "pregnant fairy") { + r.push(`fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by ${hisA} pregnant belly and looking rather smug about it.`); + } else if (V.assistant.appearance === "goddess") { + r.push(`goddess avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage.`); + } else if (V.assistant.appearance === "hypergoddess") { + r.push(`goddess avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage.`); + } else if (V.assistant.appearance === "loli") { + r.push(`${loliA} avatar looking surprisingly mature in a minister's collar. Though, ${heA} would rather be the flower ${girlA} in this wedding.`); + } else if (V.assistant.appearance === "preggololi") { + r.push(`${loliA} avatar looking surprisingly mature in a minister's collar. Though, heA would rather be the flower ${girlA} in this wedding.`); + } else if (V.assistant.appearance === "schoolgirl") { + r.push(`school${girlA} avatar looking willfully absurd in a minister's collar and ${hisA} usual short plaid skirt.`); + } else if (V.assistant.appearance === "angel") { + r.push(`angelic avatar looking, well, angelic in ${hisA} usual garb with an added minister's collar.`); + } else if (V.assistant.appearance === "cherub") { + r.push(`angelic avatar looking absurd in ${hisA} oversized robe, complete with wing-holes, and minister's collar.`); + } else if (V.assistant.appearance === "incubus") { + r.push(`demonic avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage, though heA has made sure to be fully erect for the wedding.`); + } else if (V.assistant.appearance === "succubus") { + r.push(`demonic avatar wearing nothing but a minister's collar. ${HeA} has brought several marital aids along with himA to tease the bride and groom with.`); + } else if (V.assistant.appearance === "imp") { + r.push(`demonic avatar looking absurd in ${hisA} oversized robe, complete with wing-holes, and minister's collar.`); + } else if (V.assistant.appearance === "witch") { + r.push(`witchy avatar looking rather formal in a fine robe and minister's collar.`); + } else if (V.assistant.appearance === "ERROR_1606_APPEARANCE_FILE_CORRUPT") { + r.push(`twitching avatar completely unchanged, sans a bulbous ring of flesh around ${hisA} neck that sort of resembles a minister's collar.`); + } else { + r.push(`symbol appearing in white.`); + } + } + App.Events.addParagraph(el, r); + const planned = () => { + if (V.weddingPlanned === 1) { + return `a straightforward ceremony`; + } else if (V.weddingPlanned === 2) { + return `an orgiastic ceremony`; + } else if (V.weddingPlanned === 3) { + return `an impregnation ceremony`; + } + }; - r.push(`${capFirstChar(V.assistant.name)} prompts you for wedding`); + const events = [ + new App.Events.Result(`Just redesignate ${him} as your slave wife`, designate), + new App.Events.Result(`Have your assistant marry ${him} to you`, marryNow), + ]; + events.push(new App.Events.Result(null, null, `Invite prominent citizens to a wedding: `)); + if (V.cash > 10000) { + if (V.weddingPlanned === 0 || V.weddingPlanned === 1) { + events.push(new App.Events.Result(`Straightforward ceremony`, straightforward, `This will cost ${cashFormat(10000)}`)); + } else { + events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host a straightforward ceremony`)); + } + if (slave.vagina !== 0 && slave.anus !== 0) { + if (V.weddingPlanned === 0 || V.weddingPlanned === 2) { + events.push(new App.Events.Result(`Orgiastic ceremony`, orgiastic, `This will involve the slave having sex with a very large number of citizens, and will cost ${cashFormat(10000)}`)); + } else { + events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host an orgiastic ceremony`)); + } + } + if (isFertile(slave) && V.PC.dick !== 0) { + if (V.weddingPlanned === 0 || V.weddingPlanned === 3) { + events.push(new App.Events.Result(`Impregnation ceremony`, impregnation, `This will involve you impregnating the slave, and will cost ${cashFormat(10000)}`)); + } else { + events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host an impregnation ceremony`)); + } + } + } else { + events.push(new App.Events.Result(null, null, `You cannot afford an elaborate ceremony`)); + } + App.Events.addResponses(el, events); + return el; + + function designate() { + let r = []; + const el = new DocumentFragment(); + r.push(`You order ${V.assistant.name} to simply redesignate ${slave.slaveName} as your slave ${wife}.`); if (V.assistant.personality <= 0) { - r.push(`instructions.`); + r.push(`"Slave redesignated," it responds immediately. The thing is done.`); } else { - r.push(`instructions, ${hisA}`); if (V.assistant.appearance === "monstergirl") { - r.push(`monster${girlA} avatar appearing in a surprisingly conventional surplice that covers ${himA} up decently. All except for hisA horns, which protrude from under the headpiece.`); + r.push(`${HisA} avatar snaps ${hisA} fingers and shrugs off ${hisA} surplice, revealing ${hisA} tentacle hair, pale skin, and cocks once more.`); } else if (V.assistant.appearance === "shemale") { - r.push(`shemale avatar appears in a collar patterned to look like a minister's, and absolutely nothing else, stroking ${himselfA} with anticipation.`); + r.push(`${HisA} avatar snaps ${hisA} fingers and starts to masturbate more energetically.`); } else if (V.assistant.appearance === "amazon") { - r.push(`amazon avatar wearing a tribal shaman's cape and carrying a medicine stick adorned with all sorts of little charms and baubles.`); + r.push(`${HisA} avatar gives ${hisA} medicine stick a shake.`); } else if (V.assistant.appearance === "businesswoman") { - r.push(`business${womanA} avatar looking rather severe in a minister's collar.`); - } else if (V.assistant.appearance === "fairy") { - r.push(`fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes and looking rather smug about it.`); - } else if (V.assistant.appearance === "pregnant fairy") { - r.push(`fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by ${hisA} pregnant belly and looking rather smug about it.`); - } else if (V.assistant.appearance === "goddess") { - r.push(`goddess avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage.`); - } else if (V.assistant.appearance === "hypergoddess") { - r.push(`goddess avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage.`); - } else if (V.assistant.appearance === "loli") { - r.push(`${loliA} avatar looking surprisingly mature in a minister's collar. Though, ${heA} would rather be the flower ${girlA} in this wedding.`); - } else if (V.assistant.appearance === "preggololi") { - r.push(`${loliA} avatar looking surprisingly mature in a minister's collar. Though, heA would rather be the flower ${girlA} in this wedding.`); + r.push(`${HisA} avatar snaps ${hisA} fingers.`); + } else if (V.assistant.appearance.includes("fairy")) { + r.push(`${HisA} avatar claps ${hisA} hands twice, looking a bit disappointed at the lack of celebration.`); + } else if (V.assistant.appearance.includes("goddess")) { + r.push(`${HisA} avatar makes a complex hand gesture, looking beatific.`); + } else if (V.assistant.appearance.includes("loli")) { + r.push(`${HisA} avatar claps ${hisA} hands together.`); } else if (V.assistant.appearance === "schoolgirl") { - r.push(`school${girlA} avatar looking willfully absurd in a minister's collar and ${hisA} usual short plaid skirt.`); + r.push(`${HisA} avatar snaps ${hisA} fingers and gives a little twirl.`); } else if (V.assistant.appearance === "angel") { - r.push(`angelic avatar looking, well, angelic in ${hisA} usual garb with an added minister's collar.`); + r.push(`${HisA} avatar spreads ${hisA} wings and arms and emits a flash of light.`); } else if (V.assistant.appearance === "cherub") { - r.push(`angelic avatar looking absurd in ${hisA} oversized robe, complete with wing-holes, and minister's collar.`); + r.push(`${HisA} avatar claps ${hisA} hands together, emitting a burst of light.`); } else if (V.assistant.appearance === "incubus") { - r.push(`demonic avatar completely unchanged, since ${heA} considers hisA usual form perfectly appropriate for a marriage, though heA has made sure to be fully erect for the wedding.`); + r.push(`${HisA} avatar flicks the tip of ${hisA} penis and blows ${hisA} load towards the both of you.`); } else if (V.assistant.appearance === "succubus") { - r.push(`demonic avatar wearing nothing but a minister's collar. ${HeA} has brought several marital aids along with himA to tease the bride and groom with.`); + r.push(`${HisA} avatar starts to masturbate furiously and orgasms lewdly.`); } else if (V.assistant.appearance === "imp") { - r.push(`demonic avatar looking absurd in ${hisA} oversized robe, complete with wing-holes, and minister's collar.`); + r.push(`${HisA} avatar claps ${hisA} hands together, emitting a burst of darkness.`); } else if (V.assistant.appearance === "witch") { - r.push(`witchy avatar looking rather formal in a fine robe and minister's collar.`); + r.push(`${HisA} avatar pulls out ${hisA} spell book and attempts a spell to bind you two; heA manages to conjure a large ring around himselfA, pinning ${hisA} arms to ${hisA} sides.`); } else if (V.assistant.appearance === "ERROR_1606_APPEARANCE_FILE_CORRUPT") { - r.push(`twitching avatar completely unchanged, sans a bulbous ring of flesh around ${hisA} neck that sort of resembles a minister's collar.`); + r.push(`${HisA} avatar splits open to reveal a number of tentacles and wraps them around each other.`); } else { - r.push(`symbol appearing in white.`); + r.push(`${HisA} symbol flashes.`); } + r.push(`"Done," heA says.`); } - App.Events.addParagraph(el, r); - const planned = () => { - if (V.weddingPlanned === 1) { - return `a straightforward ceremony`; - } else if (V.weddingPlanned === 2) { - return `an orgiastic ceremony`; - } else if (V.weddingPlanned === 3) { - return `an impregnation ceremony`; - } - }; - - const events = [ - new App.Events.Result(`Just redesignate ${him} as your slave wife`, designate), - new App.Events.Result(`Have your assistant marry ${him} to you`, marryNow), - ]; - events.push(new App.Events.Result(null, null, `Invite prominent citizens to a wedding: `)); - if (V.cash > 10000) { - if (V.weddingPlanned === 0 || V.weddingPlanned === 1) { - events.push(new App.Events.Result(`Straightforward ceremony`, straightforward, `This will cost ${cashFormat(10000)}`)); - } else { - events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host a straightforward ceremony`)); - } - if (slave.vagina !== 0 && slave.anus !== 0) { - if (V.weddingPlanned === 0 || V.weddingPlanned === 2) { - events.push(new App.Events.Result(`Orgiastic ceremony`, orgiastic, `This will involve the slave having sex with a very large number of citizens, and will cost ${cashFormat(10000)}`)); + if (slave.relationship > 0) { + slave.relationshipTarget = 0; + relSlave.relationship = 0; + relSlave.relationshipTarget = 0; + } + if (slave.devotion+slave.trust >= 175) { + if (slave.relationship > 0) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other's future.`); + if (slave.relationship === 4) { + relSlave.devotion -= 5; + relSlave.trust -= 5; + } else if (slave.relationship === 3) { + relSlave.devotion -= 3; + relSlave.trust -= 3; } else { - events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host an orgiastic ceremony`)); + relSlave.devotion -= 1; + relSlave.trust -= 1; } } - if (isFertile(slave) && V.PC.dick !== 0) { - if (V.weddingPlanned === 0 || V.weddingPlanned === 3) { - events.push(new App.Events.Result(`Impregnation ceremony`, impregnation, `This will involve you impregnating the slave, and will cost ${cashFormat(10000)}`)); - } else { - events.push(new App.Events.Result(null, null, `You are already hosting ${planned()} and cannot host an impregnation ceremony`)); - } + } else if (slave.devotion < -20) { + if (slave.relationship === -1) { + r.push(`${He} <span class="mediumorchid">hates</span> that ${he} has to be yours only and <span class="gold">fears</span> what will happen if ${he} strays.`); + slave.devotion -= 40; + slave.trust -= 40; + } else if (slave.relationship === 4) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 40; + relSlave.trust -= 40; + slave.devotion -= 40; + slave.trust -= 40; + } else if (slave.relationship === 3) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 30; + relSlave.trust -= 30; + slave.devotion -= 30; + slave.trust -= 30; + } else if (slave.relationship > 0) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 20; + relSlave.trust -= 20; + slave.devotion -= 20; + slave.trust -= 20; } } else { - events.push(new App.Events.Result(null, null, `You cannot afford an elaborate ceremony`)); + if (slave.relationship === -1) { + r.push(`${He} <span class="mediumorchid">dislikes</span> that ${he} has to be yours only and <span class="gold">worries</span> what will happen if ${he} strays.`); + slave.devotion -= 10; + slave.trust -= 10; + } else if (slave.relationship === 4) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 20; + relSlave.trust -= 20; + slave.devotion -= 20; + slave.trust -= 20; + } else if (slave.relationship === 3) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are saddened</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 10; + relSlave.trust -= 10; + slave.devotion -= 10; + slave.trust -= 10; + } else if (slave.relationship > 0) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 5; + relSlave.trust -= 5; + slave.devotion -= 5; + slave.trust -= 5; + } } - App.Events.addResponses(el, events); - return el; - - function designate() { - let r = []; - const el = new DocumentFragment(); - r.push(`You order ${V.assistant.name} to simply redesignate ${slave.slaveName} as your slave ${wife}.`); - if (V.assistant.personality <= 0) { - r.push(`"Slave redesignated," it responds immediately. The thing is done.`); - } else { - if (V.assistant.appearance === "monstergirl") { - r.push(`${HisA} avatar snaps ${hisA} fingers and shrugs off ${hisA} surplice, revealing ${hisA} tentacle hair, pale skin, and cocks once more.`); - } else if (V.assistant.appearance === "shemale") { - r.push(`${HisA} avatar snaps ${hisA} fingers and starts to masturbate more energetically.`); - } else if (V.assistant.appearance === "amazon") { - r.push(`${HisA} avatar gives ${hisA} medicine stick a shake.`); - } else if (V.assistant.appearance === "businesswoman") { - r.push(`${HisA} avatar snaps ${hisA} fingers.`); - } else if (V.assistant.appearance.includes("fairy")) { - r.push(`${HisA} avatar claps ${hisA} hands twice, looking a bit disappointed at the lack of celebration.`); - } else if (V.assistant.appearance.includes("goddess")) { - r.push(`${HisA} avatar makes a complex hand gesture, looking beatific.`); - } else if (V.assistant.appearance.includes("loli")) { - r.push(`${HisA} avatar claps ${hisA} hands together.`); - } else if (V.assistant.appearance === "schoolgirl") { - r.push(`${HisA} avatar snaps ${hisA} fingers and gives a little twirl.`); - } else if (V.assistant.appearance === "angel") { - r.push(`${HisA} avatar spreads ${hisA} wings and arms and emits a flash of light.`); - } else if (V.assistant.appearance === "cherub") { - r.push(`${HisA} avatar claps ${hisA} hands together, emitting a burst of light.`); - } else if (V.assistant.appearance === "incubus") { - r.push(`${HisA} avatar flicks the tip of ${hisA} penis and blows ${hisA} load towards the both of you.`); - } else if (V.assistant.appearance === "succubus") { - r.push(`${HisA} avatar starts to masturbate furiously and orgasms lewdly.`); - } else if (V.assistant.appearance === "imp") { - r.push(`${HisA} avatar claps ${hisA} hands together, emitting a burst of darkness.`); - } else if (V.assistant.appearance === "witch") { - r.push(`${HisA} avatar pulls out ${hisA} spell book and attempts a spell to bind you two; heA manages to conjure a large ring around himselfA, pinning ${hisA} arms to ${hisA} sides.`); - } else if (V.assistant.appearance === "ERROR_1606_APPEARANCE_FILE_CORRUPT") { - r.push(`${HisA} avatar splits open to reveal a number of tentacles and wraps them around each other.`); + slave.relationship = -3; + App.Events.addParagraph(el, r); + if (V.PC.slaveSurname && slave.slaveSurname !== V.PC.slaveSurname) { + App.Events.addResponses(el, [new App.Events.Result(`Give ${him} your surname`, () => { + const el = new DocumentFragment(); + const r = []; + slave.slaveSurname = V.PC.slaveSurname; + r.push(`You also command ${V.assistant.name} to rename your new slave wife ${slave.slaveName} ${slave.slaveSurname}.`); + if (slave.fetish === "mindbroken") { + r.push(`The new Mrs. ${slave.slaveSurname}`); + if (canHear(slave)) { + r.push(`hears`); + } else { + r.push(`understands`); + } + r.push(`this, of course, and shows no reaction. Like many things, names mean nothing to ${him} now.`); + } else if (slave.devotion+slave.trust >= 175) { + r.push(`The new Mrs. ${slave.slaveSurname}`); + if (canHear(slave)) { + r.push(`hears`); + } else { + r.push(`understands`); + } + r.push(`this, of course, and breaks down again. Being brusquely redesignated as your slave ${wife} was such a sterile experience that ${he} wasn't sure it was real, and hearing that ${he}'s to take your surname <span class="mediumaquamarine">reassures ${him}</span> that it is. Not to mention, ${he} might be a ${SlaveTitle(slave)}, but ${he}'s still a ${girl}, and hearing that ${he} wouldn't get a decent wedding did disappoint ${him}, but this makes up for it. You might not be all that expressive, but <span class="hotpink">${he}'s your wife,</span> and that's what matters to ${him}.`); + slave.devotion += 5; + slave.trust += 5; + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`The new Mrs. ${slave.slaveSurname}`); + if (canHear(slave)) { + r.push(`hears`); + } else { + r.push(`understands`); + } + r.push(`this, of course, and scoffs audibly. <span class="mediumorchid">${He}'ll remember ${his} name, even if you try to take it away.</span> ${He} can't hide <span class="mediumorchid">${his} annoyance</span> that you couldn't even spring for a fancy wedding.`); + slave.devotion -= 10; + } else if (slave.devotion < -20) { + r.push(`The new Mrs. ${slave.slaveSurname}`); + if (canHear(slave)) { + r.push(`hears`); + } else { + r.push(`understands`); + } + r.push(`this, of course, and breaks down again. Not only have you taken ${his} hand, but now also ${his} name; <span class="hotpink">${he}'s yours now,</span> nothing ${he} thinks can change that.`); + slave.devotion += 5; } else { - r.push(`${HisA} symbol flashes.`); - } - r.push(`"Done," heA says.`); - } - if (slave.relationship > 0) { - slave.relationshipTarget = 0; - relSlave.relationship = 0; - relSlave.relationshipTarget = 0; - } - if (slave.devotion+slave.trust >= 175) { - if (slave.relationship > 0) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other's future.`); - if (slave.relationship === 4) { - relSlave.devotion -= 5; - relSlave.trust -= 5; - } else if (slave.relationship === 3) { - relSlave.devotion -= 3; - relSlave.trust -= 3; + r.push(`The new Mrs. ${slave.slaveSurname}`); + if (canHear(slave)) { + r.push(`hears`); } else { - relSlave.devotion -= 1; - relSlave.trust -= 1; + r.push(`understands`); } + r.push(`this, of course, and nods acceptingly. Being trusted with your surname <span class="mediumaquamarine">reassures ${him}</span> that ${he} must mean something to you, though ${he} is a <span class="mediumorchid">little disappointed</span> by the lack of a wedding, however.`); + slave.devotion--; + slave.trust += 5; } - } else if (slave.devotion < -20) { - if (slave.relationship === -1) { - r.push(`${He} <span class="mediumorchid">hates</span> that ${he} has to be yours only and <span class="gold">fears</span> what will happen if ${he} strays.`); - slave.devotion -= 40; - slave.trust -= 40; - } else if (slave.relationship === 4) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 40; - relSlave.trust -= 40; - slave.devotion -= 40; - slave.trust -= 40; - } else if (slave.relationship === 3) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 30; - relSlave.trust -= 30; - slave.devotion -= 30; - slave.trust -= 30; - } else if (slave.relationship > 0) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 20; - relSlave.trust -= 20; - slave.devotion -= 20; - slave.trust -= 20; - } + App.Events.addParagraph(el, r); + return el; + })]); + } + + return el; + } + + function marryNow() { + let r = []; + const el = new DocumentFragment(); + r.push(`You order ${slave.slaveName} to go change into bridal lingerie.`); + if (reactionType === 0) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} hurries off, still crying. When ${he} returns, ${he}'s wearing`); } else { - if (slave.relationship === -1) { - r.push(`${He} <span class="mediumorchid">dislikes</span> that ${he} has to be yours only and <span class="gold">worries</span> what will happen if ${he} strays.`); - slave.devotion -= 10; - slave.trust -= 10; - } else if (slave.relationship === 4) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); - relSlave.devotion -= 20; - relSlave.trust -= 20; - slave.devotion -= 20; - slave.trust -= 20; - } else if (slave.relationship === 3) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are saddened</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); - relSlave.devotion -= 10; - relSlave.trust -= 10; - slave.devotion -= 10; - slave.trust -= 10; - } else if (slave.relationship > 0) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); - relSlave.devotion -= 5; - relSlave.trust -= 5; - slave.devotion -= 5; - slave.trust -= 5; - } + r.push(`${He} is helped out, still crying. When ${he} is returned, ${he}'s wearing`); } - slave.relationship = -3; - App.Events.addParagraph(el, r); - if (V.PC.slaveSurname && slave.slaveSurname !== V.PC.slaveSurname) { - App.Events.addResponses(el, [new App.Events.Result(`Give ${him} your surname`, () => { - const el = new DocumentFragment(); - const r = []; - slave.slaveSurname = V.PC.slaveSurname; - r.push(`You also command ${V.assistant.name} to rename your new slave wife ${slave.slaveName} ${slave.slaveSurname}.`); - if (slave.fetish === "mindbroken") { - r.push(`The new Mrs. ${slave.slaveSurname}`); - if (canHear(slave)) { - r.push(`hears`); - } else { - r.push(`understands`); - } - r.push(`this, of course, and shows no reaction. Like many things, names mean nothing to ${him} now.`); - } else if (slave.devotion+slave.trust >= 175) { - r.push(`The new Mrs. ${slave.slaveSurname}`); - if (canHear(slave)) { - r.push(`hears`); - } else { - r.push(`understands`); - } - r.push(`this, of course, and breaks down again. Being brusquely redesignated as your slave ${wife} was such a sterile experience that ${he} wasn't sure it was real, and hearing that ${he}'s to take your surname <span class="mediumaquamarine">reassures ${him}</span> that it is. Not to mention, ${he} might be a ${SlaveTitle(slave)}, but ${he}'s still a ${girl}, and hearing that ${he} wouldn't get a decent wedding did disappoint ${him}, but this makes up for it. You might not be all that expressive, but <span class="hotpink">${he}'s your wife,</span> and that's what matters to ${him}.`); - slave.devotion += 5; - slave.trust += 5; - } else if (slave.devotion < -20 && slave.trust > 20) { - r.push(`The new Mrs. ${slave.slaveSurname}`); - if (canHear(slave)) { - r.push(`hears`); - } else { - r.push(`understands`); - } - r.push(`this, of course, and scoffs audibly. <span class="mediumorchid">${He}'ll remember ${his} name, even if you try to take it away.</span> ${He} can't hide <span class="mediumorchid">${his} annoyance</span> that you couldn't even spring for a fancy wedding.`); - slave.devotion -= 10; - } else if (slave.devotion < -20) { - r.push(`The new Mrs. ${slave.slaveSurname}`); - if (canHear(slave)) { - r.push(`hears`); - } else { - r.push(`understands`); - } - r.push(`this, of course, and breaks down again. Not only have you taken ${his} hand, but now also ${his} name; <span class="hotpink">${he}'s yours now,</span> nothing ${he} thinks can change that.`); - slave.devotion += 5; - } else { - r.push(`The new Mrs. ${slave.slaveSurname}`); - if (canHear(slave)) { - r.push(`hears`); - } else { - r.push(`understands`); - } - r.push(`this, of course, and nods acceptingly. Being trusted with your surname <span class="mediumaquamarine">reassures ${him}</span> that ${he} must mean something to you, though ${he} is a <span class="mediumorchid">little disappointed</span> by the lack of a wedding, however.`); - slave.devotion--; - slave.trust += 5; - } - App.Events.addParagraph(el, r); - return el; - })]); + } else if (reactionType === 1) { + r.push(`${He} is helped out, completely unaware of ${his} pending marriage. When ${he} is returned, ${he}'s wearing`); + } else if (reactionType === 2) { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} shuffles off, still sobbing. When ${he} returns, ${he}'s wearing`); + } else { + r.push(`${He} is helped out, still sobbing. When ${he} is returned, ${he}'s wearing`); + } + } else { + if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { + r.push(`${He} hurries off to fulfill your orders. When ${he} returns, ${he}'s wearing`); + } else { + r.push(`${He} is helped out to get dressed. When ${he} is returned, ${he}'s wearing`); } - - return el; } - - function marryNow() { - let r = []; - const el = new DocumentFragment(); - r.push(`You order ${slave.slaveName} to go change into bridal lingerie.`); - if (reactionType === 0) { - if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { - r.push(`${He} hurries off, still crying. When ${he} returns, ${he}'s wearing`); - } else { - r.push(`${He} is helped out, still crying. When ${he} is returned, ${he}'s wearing`); - } - } else if (reactionType === 1) { - r.push(`${He} is helped out, completely unaware of ${his} pending marriage. When ${he} is returned, ${he}'s wearing`); - } else if (reactionType === 2) { - if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { - r.push(`${He} shuffles off, still sobbing. When ${he} returns, ${he}'s wearing`); - } else { - r.push(`${He} is helped out, still sobbing. When ${he} is returned, ${he}'s wearing`); + if (slave.vagina === 0) { + r.push(`white, since ${he}'s a virgin.`); + } else if (slave.pregKnown === 1) { + r.push(`light pink, since ${he} is pregnant.`); + } else if (slave.vagina < 0 && slave.anus === 0) { + r.push(`white, since ${he}'s an anal virgin.`); + } else if (slave.vagina < 0 && slave.boobs > 500) { + r.push(`electric blue, since ${he}'s a shemale.`); + } else if (slave.vagina < 0) { + r.push(`pale blue, since ${he}'s a sissy slave.`); + } else if (slave.dick > 0) { + r.push(`hot pink, since ${he}'s a futa slave.`); + } else { + r.push(`light pink, since ${he}'s an experienced sex slave.`); + } + r.push(`A flimsy veil covers ${his} head and shoulders.`); + if (slave.boobs > 4000) { + r.push(`On such short notice, no bridal bra for boobs of ${his} size was available, so ${he}'s topless. Not a tragedy.`); + } else if (slave.boobs > 1200) { + r.push(`${His} lacy bridal bra just barely restrains ${his} huge boobs, leaving the tops of ${his} areolae visible.`); + } else if (slave.boobs > 400) { + r.push(`${His} lacy bridal bra flatters ${his} pretty breasts.`); + } else { + r.push(`${His} lacy bridal bra flatters ${his} pretty chest.`); + } + if (slave.bellyPreg >= 600000) { + r.push(`${His} expansive, squirming pregnant belly makes ${his} bridal wear particularly obscene.`); + } else if (slave.bellyPreg >= 1500) { + r.push(`${His} ${belly} pregnant belly protrudes out the front of ${his} bridal wear.`); + } else if (slave.bellyImplant >= 1500) { + r.push(`${His} ${belly} ${slave.bellyImplant}cc belly implant protrudes ${his} middle out the front of ${his} bridal wear.`); + } else if (slave.bellyFluid >= 10000) { + r.push(`${His} hugely bloated, ${slave.inflationType}-filled belly protrudes out the front of ${his} bridal wear.`); + } else if (slave.bellyFluid >= 5000) { + r.push(`${His} bloated, ${slave.inflationType}-stuffed belly protrudes out the front of ${his} bridal wear.`); + } else if (slave.bellyFluid >= 1500) { + r.push(`${His} distended, ${slave.inflationType}-belly protrudes out the front of ${his} bridal wear.`); + } + if (slave.chastityPenis === 1) { + r.push(`${His} slave dick is hidden by its chastity cage.`); + } else if (canAchieveErection(slave)) { + if (slave.dick > 4 && slave.belly >= 5000) { + r.push(`${He}'s hugely erect, with ${his} lacy g-string only serving to hold ${his} dick agonizingly pressed against the bottom of ${his} ${belly}`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnant`); } + r.push(`belly.`); + } else if (slave.dick > 4) { + r.push(`${He}'s hugely erect, with ${his} lacy g-string only serving to hold ${his} dick upright along ${his} belly.`); } else { - if (canWalk(slave) || (canMove(slave) && slave.rules.mobility === "permissive")) { - r.push(`${He} hurries off to fulfill your orders. When ${he} returns, ${he}'s wearing`); - } else { - r.push(`${He} is helped out to get dressed. When ${he} is returned, ${he}'s wearing`); - } + r.push(`${His} erection tents the front of ${his} lacy g-string.`); } - if (slave.vagina === 0) { - r.push(`white, since ${he}'s a virgin.`); - } else if (slave.pregKnown === 1) { - r.push(`light pink, since ${he} is pregnant.`); - } else if (slave.vagina < 0 && slave.anus === 0) { - r.push(`white, since ${he}'s an anal virgin.`); - } else if (slave.vagina < 0 && slave.boobs > 500) { - r.push(`electric blue, since ${he}'s a shemale.`); - } else if (slave.vagina < 0) { - r.push(`pale blue, since ${he}'s a sissy slave.`); - } else if (slave.dick > 0) { - r.push(`hot pink, since ${he}'s a futa slave.`); + } else if (slave.dick > 0) { + if (slave.dick > 10) { + r.push(`${His} huge soft cock is allowed to dangle freely as no g-string could hope to contain it.`); + } else if (slave.dick > 4) { + r.push(`${His} big soft cock forms a lewd mass, stuffed into ${his} lacy g-string.`); } else { - r.push(`light pink, since ${he}'s an experienced sex slave.`); + r.push(`${His} lacy g-string perfectly conceals ${his} soft dick.`); } - r.push(`A flimsy veil covers ${his} head and shoulders.`); - if (slave.boobs > 4000) { - r.push(`On such short notice, no bridal bra for boobs of ${his} size was available, so ${he}'s topless. Not a tragedy.`); - } else if (slave.boobs > 1200) { - r.push(`${His} lacy bridal bra just barely restrains ${his} huge boobs, leaving the tops of ${his} areolae visible.`); - } else if (slave.boobs > 400) { - r.push(`${His} lacy bridal bra flatters ${his} pretty breasts.`); + } else { + if (slave.clit > 1) { + r.push(`${His} huge clit is quite hard, making ${him} shift uncomfortably as ${his} lacy g-string stimulates it.`); } else { - r.push(`${His} lacy bridal bra flatters ${his} pretty chest.`); - } - if (slave.bellyPreg >= 600000) { - r.push(`${His} expansive, squirming pregnant belly makes ${his} bridal wear particularly obscene.`); - } else if (slave.bellyPreg >= 1500) { - r.push(`${His} ${belly} pregnant belly protrudes out the front of ${his} bridal wear.`); - } else if (slave.bellyImplant >= 1500) { - r.push(`${His} ${belly} ${slave.bellyImplant}cc belly implant protrudes ${his} middle out the front of ${his} bridal wear.`); - } else if (slave.bellyFluid >= 10000) { - r.push(`${His} hugely bloated, ${slave.inflationType}-filled belly protrudes out the front of ${his} bridal wear.`); - } else if (slave.bellyFluid >= 5000) { - r.push(`${His} bloated, ${slave.inflationType}-stuffed belly protrudes out the front of ${his} bridal wear.`); - } else if (slave.bellyFluid >= 1500) { - r.push(`${His} distended, ${slave.inflationType}-belly protrudes out the front of ${his} bridal wear.`); + r.push(`${His} lacy g-string is starting to look a bit moist in front.`); } - if (slave.chastityPenis === 1) { - r.push(`${His} slave dick is hidden by its chastity cage.`); - } else if (canAchieveErection(slave)) { - if (slave.dick > 4 && slave.belly >= 5000) { - r.push(`${He}'s hugely erect, with ${his} lacy g-string only serving to hold ${his} dick agonizingly pressed against the bottom of ${his} ${belly}`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnant`); - } - r.push(`belly.`); - } else if (slave.dick > 4) { - r.push(`${He}'s hugely erect, with ${his} lacy g-string only serving to hold ${his} dick upright along ${his} belly.`); - } else { - r.push(`${His} erection tents the front of ${his} lacy g-string.`); + } + r.push(`${capFirstChar(V.assistant.name)} marries ${him} to you in a brief ceremony adapted for slaves and their owners. You place a`); + if (hasAnyArms(slave)) { + r.push(`simple steel ring on ${his} finger;`); + } else { + r.push(`chain with a simple steel ring around ${his} neck;`); + } + r.push(`${he} does not reciprocate, since this marriage does not bind you.`); + if (V.assistant.personality <= 0) { + r.push(`"The marriage protocol now requires you to`); + if (V.PC.dick !== 0) { + r.push(`fellate`); + if (V.PC.vagina !== -1) { + r.push(`and`); } - } else if (slave.dick > 0) { - if (slave.dick > 10) { - r.push(`${His} huge soft cock is allowed to dangle freely as no g-string could hope to contain it.`); - } else if (slave.dick > 4) { - r.push(`${His} big soft cock forms a lewd mass, stuffed into ${his} lacy g-string.`); + } + if (V.PC.vagina !== -1) { + r.push(`perform cunnilingus on`); + } + r.push(`the ${groom}, ${V.assistant.name} orders ${him}, and ${he}`); + if (reactionType === 0) { + r.push(`only starts when you push ${his} head to your crotch.`); + } else if (reactionType === 1) { + r.push(`eagerly complies.`); + } else if (reactionType === 2) { + r.push(`reluctantly obeys.`); + } else { + r.push(`hurries to obey.`); + } + } else { + const suckMy = () => { + if (V.PC.dick !== 0) { + r.push(`suck the ${groom}'s dick${(V.PC.vagina !== -1) ? ` and eat ${hisP} pussy` : ``}."`); } else { - r.push(`${His} lacy g-string perfectly conceals ${his} soft dick.`); + r.push(`eat the ${groom}'s pussy."`); } - } else { - if (slave.clit > 1) { - r.push(`${His} huge clit is quite hard, making ${him} shift uncomfortably as ${his} lacy g-string stimulates it.`); + }; + const genericCompliance = () => { + r.push(`The slave`); + if (reactionType === 0) { + r.push(`only starts when you push ${his} head to your crotch.`); + } else if (reactionType === 1) { + r.push(`eagerly complies.`); + } else if (reactionType === 2) { + r.push(`reluctantly obeys.`); } else { - r.push(`${His} lacy g-string is starting to look a bit moist in front.`); + r.push(`hurries to obey.`); } - } - r.push(`${capFirstChar(V.assistant.name)} marries ${him} to you in a brief ceremony adapted for slaves and their owners. You place a`); - if (hasAnyArms(slave)) { - r.push(`simple steel ring on ${his} finger;`); - } else { - r.push(`chain with a simple steel ring around ${his} neck;`); - } - r.push(`${he} does not reciprocate, since this marriage does not bind you.`); - if (V.assistant.personality <= 0) { - r.push(`"The marriage protocol now requires you to`); + }; + + if (V.assistant.appearance === "monstergirl") { + r.push(`"To consecrate the ceremony," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar begins to play with ${hisA} dicks.`); + } else if (V.assistant.appearance === "shemale") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); + } else if (V.assistant.appearance === "amazon") { + r.push(`"To complete this ritual," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); + } else if (V.assistant.appearance === "businesswoman") { + r.push(`"To consecrate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); if (V.PC.dick !== 0) { r.push(`fellate`); - if (V.PC.vagina !== -1) { - r.push(`and`); - } - } - if (V.PC.vagina !== -1) { + } else { r.push(`perform cunnilingus on`); } - r.push(`the ${groom}, ${V.assistant.name} orders ${him}, and ${he}`); + r.push(`the ${groom}." The slave`); if (reactionType === 0) { r.push(`only starts when you push ${his} head to your crotch.`); } else if (reactionType === 1) { @@ -725,329 +779,275 @@ new App.DomPassage("FMarry", } else { r.push(`hurries to obey.`); } - } else { - const suckMy = () => { - if (V.PC.dick !== 0) { - r.push(`suck the ${groom}'s dick${(V.PC.vagina !== -1) ? ` and eat ${hisP} pussy` : ``}."`); - } else { - r.push(`eat the ${groom}'s pussy."`); - } - }; - const genericCompliance = () => { - r.push(`The slave`); - if (reactionType === 0) { - r.push(`only starts when you push ${his} head to your crotch.`); - } else if (reactionType === 1) { - r.push(`eagerly complies.`); - } else if (reactionType === 2) { - r.push(`reluctantly obeys.`); - } else { - r.push(`hurries to obey.`); - } - }; - - if (V.assistant.appearance === "monstergirl") { - r.push(`"To consecrate the ceremony," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar begins to play with ${hisA} dicks.`); - } else if (V.assistant.appearance === "shemale") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); - } else if (V.assistant.appearance === "amazon") { - r.push(`"To complete this ritual," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); - } else if (V.assistant.appearance === "businesswoman") { - r.push(`"To consecrate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - if (V.PC.dick !== 0) { - r.push(`fellate`); - } else { - r.push(`perform cunnilingus on`); - } - r.push(`the ${groom}." The slave`); - if (reactionType === 0) { - r.push(`only starts when you push ${his} head to your crotch.`); - } else if (reactionType === 1) { - r.push(`eagerly complies.`); - } else if (reactionType === 2) { - r.push(`reluctantly obeys.`); - } else { - r.push(`hurries to obey.`); - } - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar sneaks a hand down ${hisA} suit skirt, blushing furiously.`); - } else if (V.assistant.appearance === "fairy") { - r.push(`"To seal the deal," ${V.assistant.name} concludes, "${slave.slaveName}, you gotta drink the ${groom}'s`); - if (V.PC.dick !== 0) { - r.push(`semen${(V.PC.vagina !== -1) ? `and pussy juices` : ``}.`); - } else { - r.push(`pussy juices.`); - } - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar spreads ${hisA} legs while still hovering in the air and masturbates eagerly through hisA half-worn robes.`); - } else if (V.assistant.appearance === "pregnant fairy") { - r.push(`"To seal the deal," ${V.assistant.name} concludes, "${slave.slaveName}, you gotta drink the ${groom}'s`); - if (V.PC.dick !== 0) { - r.push(`semen`); - if (V.PC.vagina !== -1) { - r.push(`and pussy juices`); - } - } else { - r.push(`pussy juices`); - } - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s pregnant avatar curls while still hovering in the air and masturbates eagerly around ${hisA} large belly.`); - } else if (V.assistant.appearance === "goddess") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now`); - if (V.PC.dick !== 0) { - r.push(`drink the ${groom}'s seed`); - } else { - r.push(`drink the ${groom}'s female juices`); - } - genericCompliance(); - r.push(`${V.assistant.name}'s avatar looks on approvingly, cradling ${hisA} perpetual pregnancy.`); - } else if (V.assistant.appearance === "hypergoddess") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now`); - if (V.PC.dick !== 0) { - r.push(`drink the ${groom}'s seed`); - } else { - r.push(`drink the ${groom}'s female juices`); - } - genericCompliance(); - r.push(`${V.assistant.name}'s avatar looks on approvingly, cradling ${hisA} massive perpetual pregnancy.`); - } else if (V.assistant.appearance === "loli") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should now`); - if (V.PC.dick !== 0) { - r.push(`suck the ${groom}'s cock${(V.PC.vagina !== -1) ? `and lick ${hisP} cunny.` : ``}`); - } else { - r.push(`lick the ${groom}'s cunny.`); - } - genericCompliance(); - r.push(`${V.assistant.name}'s avatar sneaks a hand down ${hisA} dress, blushing furiously.`); - } else if (V.assistant.appearance === "preggololi") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should now`); - if (V.PC.dick !== 0) { - r.push(`suck the ${groom}'s lovely cock${(V.PC.vagina !== -1) ? `and eat out ${hisP} cunt` : ``}.`); - } else { - r.push(`lick the ${groom}'s cunt.`); - } - genericCompliance(); - r.push(`${V.assistant.name}'s avatar attempts to sneak a hand down ${hisA} dress, but is thwarted by hisA belly. ${HeA} instead openly rubs hisA crotch through the front of hisA dress, blushing furiously.`); - } else if (V.assistant.appearance === "schoolgirl") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, the rules say you should now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); - } else if (V.assistant.appearance === "angel") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now join ${PlayerName()} in their bedroom and consummate this marriage." The slave`); - if (reactionType === 0) { - r.push(`stares blankly.`); - } else { - r.push(`looks confused.`); - } - r.push(`"After the wedding ends, would be the time." ${V.assistant.name} says, covering ${hisA} face in embarrassment at the thought.`); - } else if (V.assistant.appearance === "cherub") { - r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should`); - if (V.PC.dick !== 0) { - r.push(`suck the ${groom}'s cock${(V.PC.vagina !== -1) ? `and lick ${hisP} pussy` : ``},`); - } else { - r.push(`lick the ${groom}'s pussy,`); - } - r.push(`in the privacy of ${PlayerName()}'s bedroom, of course." ${V.assistant.name} hides hisA face in hisA hands at the thought.`); - } else if (V.assistant.appearance === "incubus") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Enjoying the sight, ${V.assistant.name}'s avatar begins to furiously stroke its shaft.`); - } else if (V.assistant.appearance === "succubus") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar pulls out a large dildo and begins ramming it into ${hisA} own pussy.`); - } else if (V.assistant.appearance === "imp") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`Pleased by the sight, ${V.assistant.name}'s avatar hikes ${hisA} robe and vigorously rubs hisA pussy.`); - } else if (V.assistant.appearance === "witch") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`${V.assistant.name}'s avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.`); - } else if (V.assistant.appearance === "ERROR_1606_APPEARANCE_FILE_CORRUPT") { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); - suckMy(); - genericCompliance(); - r.push(`${V.assistant.name}'s avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of ${slave.slaveName}. ${V.assistant.name}'s two avatars begin copying you and ${slave.slaveName}'s actions perfectly.`); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar sneaks a hand down ${hisA} suit skirt, blushing furiously.`); + } else if (V.assistant.appearance === "fairy") { + r.push(`"To seal the deal," ${V.assistant.name} concludes, "${slave.slaveName}, you gotta drink the ${groom}'s`); + if (V.PC.dick !== 0) { + r.push(`semen${(V.PC.vagina !== -1) ? `and pussy juices` : ``}.`); } else { - r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, the rules say you should now`); - suckMy(); - genericCompliance(); - r.push(`With only a symbol to express ${hisA} approval, ${V.assistant.name} is forced to content himselfA with spinning the symbol and making it glow in time with your new slave wife's efforts.`); + r.push(`pussy juices.`); } - r.push(`"Done," ${heA} says when you climax. "Enjoy your`); - if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { - if (slave.fetish === "submissive") { - r.push(`submissive slave ${wife}!"`); - } else if (slave.fetish === "cumslut") { - r.push(`slave ${wife}'s mouth!"`); - } else if (slave.fetish === "humiliation") { - r.push(`exhibitionist slave ${wife}!"`); - } else if (slave.fetish === "buttslut") { - r.push(`slave ${wife}'s butthole!"`); - } else if (slave.fetish === "boobs") { - r.push(`slave ${wife}'s boobs!"`); - } else if (slave.fetish === "pregnancy") { - r.push(`breeder ${wife}!"`); - } else if (slave.fetish === "dom") { - r.push(`slave ${wife}'s aggression!"`); - } else if (slave.fetish === "sadist") { - r.push(`slave ${wife}'s sadistic tendencies!"`); - } else if (slave.fetish === "masochist") { - r.push(`slave ${wife}'s pain!"`); - } else { - r.push(`slave ${wife}!"`); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar spreads ${hisA} legs while still hovering in the air and masturbates eagerly through hisA half-worn robes.`); + } else if (V.assistant.appearance === "pregnant fairy") { + r.push(`"To seal the deal," ${V.assistant.name} concludes, "${slave.slaveName}, you gotta drink the ${groom}'s`); + if (V.PC.dick !== 0) { + r.push(`semen`); + if (V.PC.vagina !== -1) { + r.push(`and pussy juices`); } } else { - r.push(`slave ${wife}!"`); + r.push(`pussy juices`); } - } - if (slave.relationship > 0) { - slave.relationshipTarget = 0; - relSlave.relationship = 0; - relSlave.relationshipTarget = 0; - } - if (slave.devotion+slave.trust >= 175) { - if (slave.relationship > 0) { - r.push(`${His} ex is <span class="mediumorchid">disappointed</span> that their relationship had to end and <span class="gold">worries</span> for ${his2} love's future.`); - if (slave.relationship === 4) { - relSlave.devotion -= 5; - relSlave.trust -= 5; - } else if (slave.relationship === 3) { - relSlave.devotion -= 3; - relSlave.trust -= 3; - } else { - relSlave.devotion -= 1; - relSlave.trust -= 1; - } + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s pregnant avatar curls while still hovering in the air and masturbates eagerly around ${hisA} large belly.`); + } else if (V.assistant.appearance === "goddess") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now`); + if (V.PC.dick !== 0) { + r.push(`drink the ${groom}'s seed`); + } else { + r.push(`drink the ${groom}'s female juices`); } - } else if (slave.devotion < -20) { - if (slave.relationship === -1) { - r.push(`${He} <span class="mediumorchid">hates</span> that ${he} has to be yours only and <span class="gold">fears</span> what will happen if ${he} strays.`); - slave.devotion -= 40; - slave.trust -= 40; - } else if (slave.relationship === 4) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 40; - relSlave.trust -= 40; - slave.devotion -= 40; - slave.trust -= 40; - } else if (slave.relationship === 3) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 30; - relSlave.trust -= 30; - slave.devotion -= 30; - slave.trust -= 30; - } else if (slave.relationship > 0) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); - relSlave.devotion -= 20; - relSlave.trust -= 20; - slave.devotion -= 20; - slave.trust -= 20; + genericCompliance(); + r.push(`${V.assistant.name}'s avatar looks on approvingly, cradling ${hisA} perpetual pregnancy.`); + } else if (V.assistant.appearance === "hypergoddess") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now`); + if (V.PC.dick !== 0) { + r.push(`drink the ${groom}'s seed`); + } else { + r.push(`drink the ${groom}'s female juices`); } + genericCompliance(); + r.push(`${V.assistant.name}'s avatar looks on approvingly, cradling ${hisA} massive perpetual pregnancy.`); + } else if (V.assistant.appearance === "loli") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should now`); + if (V.PC.dick !== 0) { + r.push(`suck the ${groom}'s cock${(V.PC.vagina !== -1) ? `and lick ${hisP} cunny.` : ``}`); + } else { + r.push(`lick the ${groom}'s cunny.`); + } + genericCompliance(); + r.push(`${V.assistant.name}'s avatar sneaks a hand down ${hisA} dress, blushing furiously.`); + } else if (V.assistant.appearance === "preggololi") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should now`); + if (V.PC.dick !== 0) { + r.push(`suck the ${groom}'s lovely cock${(V.PC.vagina !== -1) ? `and eat out ${hisP} cunt` : ``}.`); + } else { + r.push(`lick the ${groom}'s cunt.`); + } + genericCompliance(); + r.push(`${V.assistant.name}'s avatar attempts to sneak a hand down ${hisA} dress, but is thwarted by hisA belly. ${HeA} instead openly rubs hisA crotch through the front of hisA dress, blushing furiously.`); + } else if (V.assistant.appearance === "schoolgirl") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, the rules say you should now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar starts to jill off.`); + } else if (V.assistant.appearance === "angel") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you must now join ${PlayerName()} in their bedroom and consummate this marriage." The slave`); + if (reactionType === 0) { + r.push(`stares blankly.`); + } else { + r.push(`looks confused.`); + } + r.push(`"After the wedding ends, would be the time." ${V.assistant.name} says, covering ${hisA} face in embarrassment at the thought.`); + } else if (V.assistant.appearance === "cherub") { + r.push(`"To consummate the marriage," ${V.assistant.name} concludes, "${slave.slaveName}, you should`); + if (V.PC.dick !== 0) { + r.push(`suck the ${groom}'s cock${(V.PC.vagina !== -1) ? `and lick ${hisP} pussy` : ``},`); + } else { + r.push(`lick the ${groom}'s pussy,`); + } + r.push(`in the privacy of ${PlayerName()}'s bedroom, of course." ${V.assistant.name} hides hisA face in hisA hands at the thought.`); + } else if (V.assistant.appearance === "incubus") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Enjoying the sight, ${V.assistant.name}'s avatar begins to furiously stroke its shaft.`); + } else if (V.assistant.appearance === "succubus") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar pulls out a large dildo and begins ramming it into ${hisA} own pussy.`); + } else if (V.assistant.appearance === "imp") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`Pleased by the sight, ${V.assistant.name}'s avatar hikes ${hisA} robe and vigorously rubs hisA pussy.`); + } else if (V.assistant.appearance === "witch") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`${V.assistant.name}'s avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.`); + } else if (V.assistant.appearance === "ERROR_1606_APPEARANCE_FILE_CORRUPT") { + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, you will now`); + suckMy(); + genericCompliance(); + r.push(`${V.assistant.name}'s avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of ${slave.slaveName}. ${V.assistant.name}'s two avatars begin copying you and ${slave.slaveName}'s actions perfectly.`); } else { - if (slave.relationship === -1) { - r.push(`${He} <span class="mediumorchid">dislikes</span> that ${he} has to be yours only and <span class="gold">worries</span> what will happen if ${he} strays.`); - slave.devotion -= 10; - slave.trust -= 10; - } else if (slave.relationship === 4) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); - relSlave.devotion -= 20; - relSlave.trust -= 20; - slave.devotion -= 20; - slave.trust -= 20; - } else if (slave.relationship === 3) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are saddened</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); - relSlave.devotion -= 10; - relSlave.trust -= 10; - slave.devotion -= 10; - slave.trust -= 10; - } else if (slave.relationship > 0) { - r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + r.push(`"To get this marriage started," ${V.assistant.name} concludes, "${slave.slaveName}, the rules say you should now`); + suckMy(); + genericCompliance(); + r.push(`With only a symbol to express ${hisA} approval, ${V.assistant.name} is forced to content himselfA with spinning the symbol and making it glow in time with your new slave wife's efforts.`); + } + r.push(`"Done," ${heA} says when you climax. "Enjoy your`); + if (slave.fetishKnown === 1 && slave.fetishStrength > 60) { + if (slave.fetish === "submissive") { + r.push(`submissive slave ${wife}!"`); + } else if (slave.fetish === "cumslut") { + r.push(`slave ${wife}'s mouth!"`); + } else if (slave.fetish === "humiliation") { + r.push(`exhibitionist slave ${wife}!"`); + } else if (slave.fetish === "buttslut") { + r.push(`slave ${wife}'s butthole!"`); + } else if (slave.fetish === "boobs") { + r.push(`slave ${wife}'s boobs!"`); + } else if (slave.fetish === "pregnancy") { + r.push(`breeder ${wife}!"`); + } else if (slave.fetish === "dom") { + r.push(`slave ${wife}'s aggression!"`); + } else if (slave.fetish === "sadist") { + r.push(`slave ${wife}'s sadistic tendencies!"`); + } else if (slave.fetish === "masochist") { + r.push(`slave ${wife}'s pain!"`); + } else { + r.push(`slave ${wife}!"`); + } + } else { + r.push(`slave ${wife}!"`); + } + } + if (slave.relationship > 0) { + slave.relationshipTarget = 0; + relSlave.relationship = 0; + relSlave.relationshipTarget = 0; + } + if (slave.devotion+slave.trust >= 175) { + if (slave.relationship > 0) { + r.push(`${His} ex is <span class="mediumorchid">disappointed</span> that their relationship had to end and <span class="gold">worries</span> for ${his2} love's future.`); + if (slave.relationship === 4) { relSlave.devotion -= 5; relSlave.trust -= 5; - slave.devotion -= 5; - slave.trust -= 5; + } else if (slave.relationship === 3) { + relSlave.devotion -= 3; + relSlave.trust -= 3; + } else { + relSlave.devotion -= 1; + relSlave.trust -= 1; } } - slave.relationship = -3; - App.Events.addParagraph(el, r); - if (V.PC.slaveSurname && slave.slaveSurname !== V.PC.slaveSurname) { - App.Events.addResponses(el, [new App.Events.Result(`Give ${him} your surname`, () => { - const el = new DocumentFragment(); - const r = []; - slave.slaveSurname = V.PC.slaveSurname; - r.push(`You also command ${V.assistant.name} to rename your new slave wife ${slave.slaveName} ${slave.slaveSurname}.`); - if (slave.fetish === "mindbroken") { - r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. You are uncertain if it sunk in or not.`); - } else if (slave.devotion+slave.trust >= 175) { - r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. It would be an understatement to say ${he}'s delighted. ${He}'s a good ${SlaveTitle(slave)}, but even ${he} has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This <span class="mediumaquamarine">reassures ${him}</span> that it is. ${His} special day probably wasn't exactly like ${he} might once have imagined it, but ${he} obviously thinks it's been <span class="hotpink">very nice,</span> all things considered.`); - if (canTalk(slave)) { - r.push(`"${myName} ${playerSurname},"`); - r.push(`${he} murmurs to ${himself} occasionally, smiling.`); - } - slave.devotion += 5; - slave.trust += 5; - } else if (slave.devotion < -20 && slave.trust > 20) { - r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. <span class="mediumorchid">${He}'ll remember ${his} name, even if you try to take it away.</span>`); - if (canTalk(slave)) { - r.push(`"${myName} ${playerSurname},"`); - r.push(`${he} mutters to ${himself} occasionally; their is a distinct distaste to the way ${he} says it.`); - } - slave.devotion -= 10; - } else if (slave.devotion < -20) { - r.push(`Before you get too distracted, you tell your quivering new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. ${He} nods in terror. Not only have you taken ${his} hand, but now also ${his} name; <span class="hotpink">${he}'s yours now,</span> nothing ${he} thinks can change that.`); - if (canTalk(slave)) { - r.push(`"${myName} ${playerSurname}," ${he} mutters to ${himself} occasionally, ${his} voice wavering as ${he} struggles to hold back the tears.`); - } - slave.devotion += 5; - } else { - r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. ${He} nods acceptingly. ${He}'s a good ${SlaveTitle(slave)}, but ${he} has doubts about whether a marriage between an owner and a piece of property is really worth much. That doesn't matter, <span class="mediumaquamarine">it's worth something to ${him}.</span>`); - if (canTalk(slave)) { - r.push(`"${myName} ${playerSurname},"`); - r.push(`${he} murmurs to ${himself} occasionally${(canHear(slave)) ? `, listening to how it sounds` : ``}.`); - } - slave.trust += 5; - } - App.Events.addParagraph(el, r); - return el; - })]); + } else if (slave.devotion < -20) { + if (slave.relationship === -1) { + r.push(`${He} <span class="mediumorchid">hates</span> that ${he} has to be yours only and <span class="gold">fears</span> what will happen if ${he} strays.`); + slave.devotion -= 40; + slave.trust -= 40; + } else if (slave.relationship === 4) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 40; + relSlave.trust -= 40; + slave.devotion -= 40; + slave.trust -= 40; + } else if (slave.relationship === 3) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 30; + relSlave.trust -= 30; + slave.devotion -= 30; + slave.trust -= 30; + } else if (slave.relationship > 0) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">fear</span> for each other's future.`); + relSlave.devotion -= 20; + relSlave.trust -= 20; + slave.devotion -= 20; + slave.trust -= 20; + } + } else { + if (slave.relationship === -1) { + r.push(`${He} <span class="mediumorchid">dislikes</span> that ${he} has to be yours only and <span class="gold">worries</span> what will happen if ${he} strays.`); + slave.devotion -= 10; + slave.trust -= 10; + } else if (slave.relationship === 4) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">resent</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 20; + relSlave.trust -= 20; + slave.devotion -= 20; + slave.trust -= 20; + } else if (slave.relationship === 3) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are saddened</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 10; + relSlave.trust -= 10; + slave.devotion -= 10; + slave.trust -= 10; + } else if (slave.relationship > 0) { + r.push(`Both ${him} and ${his} ex are <span class="mediumorchid">are disappointed</span> that their relationship had to end and <span class="gold">worry</span> for each other.`); + relSlave.devotion -= 5; + relSlave.trust -= 5; + slave.devotion -= 5; + slave.trust -= 5; } - return el; } - - function straightforward() { - V.weddingPlanned = 1; - V.marrying.push(slave.ID); - cashX(-10000, "event", slave); - return `You order ${V.assistant.name} to invite deserving citizens to a straightforward ceremony for a slave being married to a slaveowner, and to make the arrangement. The wedding will take place during the upcoming week.`; + slave.relationship = -3; + App.Events.addParagraph(el, r); + if (V.PC.slaveSurname && slave.slaveSurname !== V.PC.slaveSurname) { + App.Events.addResponses(el, [new App.Events.Result(`Give ${him} your surname`, () => { + const el = new DocumentFragment(); + const r = []; + slave.slaveSurname = V.PC.slaveSurname; + r.push(`You also command ${V.assistant.name} to rename your new slave wife ${slave.slaveName} ${slave.slaveSurname}.`); + if (slave.fetish === "mindbroken") { + r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. You are uncertain if it sunk in or not.`); + } else if (slave.devotion+slave.trust >= 175) { + r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. It would be an understatement to say ${he}'s delighted. ${He}'s a good ${SlaveTitle(slave)}, but even ${he} has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This <span class="mediumaquamarine">reassures ${him}</span> that it is. ${His} special day probably wasn't exactly like ${he} might once have imagined it, but ${he} obviously thinks it's been <span class="hotpink">very nice,</span> all things considered.`); + if (canTalk(slave)) { + r.push(`"${myName} ${playerSurname},"`); + r.push(`${he} murmurs to ${himself} occasionally, smiling.`); + } + slave.devotion += 5; + slave.trust += 5; + } else if (slave.devotion < -20 && slave.trust > 20) { + r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. <span class="mediumorchid">${He}'ll remember ${his} name, even if you try to take it away.</span>`); + if (canTalk(slave)) { + r.push(`"${myName} ${playerSurname},"`); + r.push(`${he} mutters to ${himself} occasionally; their is a distinct distaste to the way ${he} says it.`); + } + slave.devotion -= 10; + } else if (slave.devotion < -20) { + r.push(`Before you get too distracted, you tell your quivering new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. ${He} nods in terror. Not only have you taken ${his} hand, but now also ${his} name; <span class="hotpink">${he}'s yours now,</span> nothing ${he} thinks can change that.`); + if (canTalk(slave)) { + r.push(`"${myName} ${playerSurname}," ${he} mutters to ${himself} occasionally, ${his} voice wavering as ${he} struggles to hold back the tears.`); + } + slave.devotion += 5; + } else { + r.push(`Before you get too distracted, you tell your lovely new ${wife} that ${he}'s now to be known as ${slave.slaveName} ${slave.slaveSurname}. ${He} nods acceptingly. ${He}'s a good ${SlaveTitle(slave)}, but ${he} has doubts about whether a marriage between an owner and a piece of property is really worth much. That doesn't matter, <span class="mediumaquamarine">it's worth something to ${him}.</span>`); + if (canTalk(slave)) { + r.push(`"${myName} ${playerSurname},"`); + r.push(`${he} murmurs to ${himself} occasionally${(canHear(slave)) ? `, listening to how it sounds` : ``}.`); + } + slave.trust += 5; + } + App.Events.addParagraph(el, r); + return el; + })]); } + return el; + } - function orgiastic() { - V.weddingPlanned = 2; - V.marrying.push(slave.ID); - cashX(-10000, "event", slave); - return `You order ${V.assistant.name} to invite deserving citizens to an orgiastic ceremony for a slave being married to a slaveowner, and to make the arrangements. The wedding orgy will take place during the upcoming week.`; - } + function straightforward() { + V.weddingPlanned = 1; + V.marrying.push(slave.ID); + cashX(-10000, "event", slave); + return `You order ${V.assistant.name} to invite deserving citizens to a straightforward ceremony for a slave being married to a slaveowner, and to make the arrangement. The wedding will take place during the upcoming week.`; + } - function impregnation() { - V.weddingPlanned = 3; - V.marrying.push(slave.ID); - cashX(-10000, "event", slave); - return `You order ${V.assistant.name} to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week.`; - } + function orgiastic() { + V.weddingPlanned = 2; + V.marrying.push(slave.ID); + cashX(-10000, "event", slave); + return `You order ${V.assistant.name} to invite deserving citizens to an orgiastic ceremony for a slave being married to a slaveowner, and to make the arrangements. The wedding orgy will take place during the upcoming week.`; + } + + function impregnation() { + V.weddingPlanned = 3; + V.marrying.push(slave.ID); + cashX(-10000, "event", slave); + return `You order ${V.assistant.name} to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week.`; } -); +}; diff --git a/src/npc/interaction/passage/fSlaveImpreg.js b/src/npc/interaction/passage/fSlaveImpreg.js index fa0e0402192d8e3d7c0914fd4dfdbc8eb63c8440..b97a0cb57bb025b023677cf4ec5bdfae2b10e29f 100644 --- a/src/npc/interaction/passage/fSlaveImpreg.js +++ b/src/npc/interaction/passage/fSlaveImpreg.js @@ -9,7 +9,7 @@ App.Interact.fSlaveImpreg = function(slave) { App.UI.DOM.appendNewElement("h3", node, `Select an eligible slave to serve as the semen donatrix`); - const eligibles = V.slaves.filter((s) => (s.ID !== V.AS) && canImpreg(slave, s) && canPenetrate(s)); + const eligibles = V.slaves.filter((s) => (s.ID !== slave.ID) && canImpreg(slave, s) && canPenetrate(s)); const kinship = ibc.kinship_one_many(slave, eligibles); for (const impregnatrix of eligibles) { const div = App.UI.DOM.appendNewElement("div", node); @@ -228,7 +228,7 @@ App.Interact.fSlaveImpreg = function(slave) { r.push(`${He} happily obeys your orders, getting ready to serve ${his} ${getWrittenTitle(slave)} by making ${himP} another slave.`); } - r.push(knockMeUp(slave, 100, 2, impregnatrix.ID, true)); + knockMeUp(slave, 100, 2, impregnatrix.ID); App.Events.addParagraph(node, r); r = []; @@ -295,7 +295,7 @@ App.Interact.fSlaveImpreg = function(slave) { impregnatrix.vagina = 1; } if (canImpreg(impregnatrix, V.PC)) { - r.push(knockMeUp(impregnatrix, 10, 0, -1, true)); + knockMeUp(impregnatrix, 10, 0, -1); } impregnatrix.counter.vaginal += penCountBonus; V.vaginalTotal += penCountBonus; @@ -307,7 +307,7 @@ App.Interact.fSlaveImpreg = function(slave) { impregnatrix.anus = 1; } if (canImpreg(impregnatrix, V.PC)) { - r.push(knockMeUp(impregnatrix, 10, 1, -1, true)); + knockMeUp(impregnatrix, 10, 1, -1); } impregnatrix.counter.anal += penCountBonus; V.analTotal += penCountBonus; @@ -410,7 +410,7 @@ App.Interact.fSlaveImpreg = function(slave) { impregnatrix.counter.vaginal += penCountBonus; V.vaginalTotal += penCountBonus; if (canImpreg(impregnatrix, V.PC)) { - r.push(knockMeUp(impregnatrix, 10, 0, -1, true)); + knockMeUp(impregnatrix, 10, 0, -1); } } else if (didImpregnatrix === 2) { if (impregnatrix.anus === 0) { @@ -421,7 +421,7 @@ App.Interact.fSlaveImpreg = function(slave) { impregnatrix.counter.anal += penCountBonus; V.analTotal += penCountBonus; if (canImpreg(impregnatrix, V.PC)) { - r.push(knockMeUp(impregnatrix, 10, 1, -1, true)); + knockMeUp(impregnatrix, 10, 1, -1); } } if (slave.anus === 0 && canDoAnal(slave)) { @@ -443,18 +443,18 @@ App.Interact.fSlaveImpreg = function(slave) { r.push(`Rumors spread about you breeding your slaves; the Societal Elite are <span class="red">displeased</span> by these rumors.`); V.failedElite += 1; } - if (V.arcologies[0].FSGenderRadicalist !== "unset" && slave.mpreg === 1) { - r.push(`Society <span class="green">approves</span> of your breeding your slave's ass; this advances the ideal all a slave needs is their rear.`); - repX(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderRadicalist / V.FSLockinLevel), "futureSocieties", slave); - V.arcologies[0].FSGenderRadicalist += 0.05 * V.FSSingleSlaveRep; - } else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.mpreg === 1) { - r.push(`Society <span class="red">is disgusted</span> by this degenerate form of reproduction.`); - repX(forceNeg(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel)), "futureSocieties", slave); - V.arcologies[0].FSGenderFundamentalist -= 0.05 * V.FSSingleSlaveRep; - } else if (V.arcologies[0].FSGenderFundamentalist !== "unset") { - r.push(`Society <span class="green">approves</span> of your breeding your slaves; this advances the ideal of a durable, self propagating race of slaves.`); - repX(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel), "futureSocieties", slave); - V.arcologies[0].FSGenderFundamentalist += 0.05 * V.FSSingleSlaveRep; + + if (V.arcologies[0].FSGenderRadicalist !== 'unset' && slave.mpreg) { + r.push(`Society <span class="reputation inc">approves</span> of your breeding your slave's ass; this advances the ideal all a slave needs is ${his} rear.`); + FutureSocieties.Change("FSGenderRadicalist", 1); + } else if (V.arcologies[0].FSGenderFundamentalist !== 'unset') { + if (slave.mpreg) { + r.push(`Society <span class="reputation dec">is disgusted</span> by this degenerate form of reproduction.`); + FutureSocieties.Change("FSGenderFundamentalist", -1); + } else { + r.push(`Society <span class="reputation inc">approves</span> of your breeding your slaves; this advances the ideal of a durable, self propagating race of slaves`); + FutureSocieties.Change("FSGenderFundamentalist", 1); + } } App.Events.addParagraph(node, r); diff --git a/src/npc/interaction/passage/fSlaveSlaveDick.js b/src/npc/interaction/passage/fSlaveSlaveDick.js new file mode 100644 index 0000000000000000000000000000000000000000..3cbb861ba7970585907e8de1c05d585f04e159ae --- /dev/null +++ b/src/npc/interaction/passage/fSlaveSlaveDick.js @@ -0,0 +1,1285 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {HTMLElement} + */ +App.Interact.fSlaveSlaveDick = function(slave) { + const node = document.createElement("div"); + + App.UI.DOM.appendNewElement("div", node, `Select a slave that will ride ${slave.slaveName}.`); + App.UI.DOM.appendNewElement("h2", node, `Select an eligible slave`); + + const _eligibles = V.slaves.filter((s) => (s.ID !== slave.ID) && isSlaveAvailable(s) && canDoVaginal(s) && canStand(s) /* amp-amp scene is not written */); + for (const eligible of _eligibles) { + const div = App.UI.DOM.appendNewElement("div", node); + div.append(App.UI.DOM.link( + SlaveFullName(eligible), + () => { + jQuery(node).empty().append(content(eligible)); + } + )); + if (eligible.custom.label) { + App.UI.DOM.appendNewElement("span", div, ` ${eligible.custom.label}`, ["yellow", "bold"]); + } + if (canImpreg(eligible, slave)) { + App.UI.DOM.appendNewElement("span", div, ` Fertile`, "green"); + } + if (totalRelatives(slave) > 0) { + const _relTerm = relativeTerm(slave, eligible); + if (_relTerm !== null) { + App.UI.DOM.appendNewElement("span", div, ` ${capFirstChar(_relTerm)}`, "lightgreen"); + } + } + } + if (_eligibles.length === 0) { + App.UI.DOM.appendNewElement("div", node, `You have no slaves capable of this act.`, "note"); + } + return node; + + function content(rapist) { + const el = new DocumentFragment(); + let r = []; + const { + He, His, + he, his, him, himself, hers + } = getPronouns(slave); + + const { + He2, + he2, his2, him2, himself2, hers2 + } = getPronouns(rapist).appendSuffix("2"); + let _bottomDrugged; + let _incestMood; + + let _dickSize; + if (slave.dick) { + if (slave.dick === 1) { + _dickSize = "tiny"; + } else if (slave.dick === 2) { + _dickSize = "tiny"; + } else if (slave.dick === 3) { + _dickSize = "average"; + } else if (slave.dick === 4) { + _dickSize = "big"; + } else if (slave.dick === 5) { + _dickSize = "huge"; + } else if (slave.dick === 6) { + _dickSize = "gigantic"; + } else if (slave.dick === 7) { + _dickSize = "titanic"; + } else if (slave.dick === 8) { + _dickSize = "absurd"; + } else if (slave.dick >= 9) { + _dickSize = "inhuman"; + } + } + + const _isIncest = areRelated(slave, rapist); + + r.push(`You take a look at the bound cock toy.`); + + if (slave.fetish === "mindbroken" && slave.career !== "a dairy cow" && slave.career !== "a breeding bull") { + r.push(`Since ${slave.slaveName} is mentally broken, the restraints don't do anything but set the scene.`); + } else if (slave.devotion > 50) { + r.push(`Since ${slave.slaveName} is devoted, ${his} restraints are more for the show than for practical purposes.`); + } else if (slave.devotion > 20) { + r.push(`${slave.slaveName} is obedient but not devoted, so ${his} restraints are firm for ${his} own good.`); + } else { + r.push(`${slave.slaveName} is unlikely to comply willingly, and is tied down tight, unable to budge more than`); + if (V.showInches === 2) { + r.push(`an inch.`); + } else { + r.push(`a centimeter.`); + } + } + + if (isAmputee(slave)) { + r.push(`${His} limbless torso lies on the bed, ready for ${rapist.slaveName}.`); + } else if (tooBigBelly(slave)) { + r.push(`${His} huge belly will limit the number of possible positions for ${rapist.slaveName} to take ${him} in.`); + } else if (tooBigBreasts(slave)) { + r.push(`The weight of ${his} tits pins ${him} helplessly in place.`); + } else if (tooBigButt(slave)) { + r.push(`${His} huge ass pushes ${his} pelvis further up, making it look as if ${he}'s trying to fuck the air.`); + } else if (tooBigDick(slave)) { + r.push(`${His} huge cock is clearly going to be a challenge.`); + } else if (tooBigBalls(slave)) { + r.push(`${His} huge balls might get a bit in the way in this position.`); + } else if (tooFatSlave(slave)) { + r.push(`${His} huge gut threatens to envelope ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} cock.`); + } + } + + if (slave.fetish === "mindbroken" && slave.career !== "a dairy cow" && slave.career !== "a breeding bull") { + if (slave.energy > 40) { + r.push(`${slave.slaveName}`); + r.push(`is broken mentally, but has a serviceable libido. After a bit of stimulation ${he}'s good to go without any further reaction on ${his} own.`); + } else { + r.push(`${slave.slaveName}`); + r.push(`is broken mentally, and ${his} low libido prevents ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`from becoming erect. A massive dose of vasodilators fixes this, and you think you see ${his} face twitch with the pain, but there is no further reaction.`); + } + } else if (slave.fetish === "mindbroken" && slave.career === "a dairy cow") { + if (slave.energy > 40) { + r.push(`${slave.slaveName}, as a good cow with a good libido, takes only a little fondling before ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`becomes erect. When you let go, ${he} gives a needy moo with a sad expression to ask you to keep going.`); + } else { + r.push(`${slave.slaveName} may be a cow, but ${his} low libido keeps ${his} mostly soft despite plenty of fondling. You inject ${him} with vasodilators so ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`becomes erect, and ${he} moos in discomfort and struggles against ${his} restraints.`); + _bottomDrugged = 1; + } + } else if (slave.fetish === "mindbroken" && slave.career === "a breeding bull") { + r.push(`${slave.slaveName}, as a good bull, was already erect while being tied down. It seems ${he} knows what's going to happen to ${him} soon. Maybe someone at the Cattle Ranch has been sampling their bulls?`); + } else { + if (slave.devotion >= -20) { + if (slave.energy > 40) { + if (slave.fetishKnown === 1) { + if (slave.fetish === "submissive") { + r.push(`${slave.slaveName}`); + r.push(`is a known sub, and seconds after ${he} is ordered to lie down to be restrained ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`is erect. ${He} knows ${he}'s going to get used, and can't hide ${his} excitement.`); + } else if (slave.fetish === "dom") { + r.push(`${slave.slaveName} is a known dom, and needs some stimulation before ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`becomes hard. Despite knowing ${he}'s going to be used, ${he} can't hide ${his} curiosity to experience what the other side feels.`); + } else if (slave.fetish === "masochist") { + r.push(`${slave.slaveName} almost gets off on being tied down tight, sporting a`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`once you have finished. ${His} nipples are firm as well, and ${he} struggles against ${his} restraints to feel them dig into ${him} tighter.`); + } else if (slave.fetish === "sadist") { + r.push(`${slave.slaveName} is a sadist, and finds ${himself} in the exact opposite position ${he}'d want to be in to get off. It's obvious ${he}'s not going to get aroused soon, so you inject ${him} with vasodilators so ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`becomes erect and hope ${he} at least learns something from being on the receiving end for once.`); + _bottomDrugged = 1; + } else if (slave.fetish === "humiliation") { + r.push(`${slave.slaveName} gets off on humiliation, and after being ordered to lay naked on a bed to be tied down, becomes flushed with arousal with ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`throbbing in anticipation at being used like a toy.`); + } else if (slave.fetish === "pregnancy" && V.arcologies[0].FSRepopulationFocus !== "unset" && canPenetrate(slave)) { + r.push(`${slave.slaveName} gets off thinking about pregnancy, and in your arcology most women are pregnant or fertile. ${He} knows someone's pussy will be around ${his} ${_dickSize} cock soon, and is clearly lost in ${his} fantasies as ${his} cock swells to a throbbing erection.`); + } + } else if (slave.attrXX > 65) { + r.push(`${slave.slaveName} has a good sex drive and likes pussy, even before ${he}'s fully bound ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`is throbbing in anticipation.`); + } else { + r.push(`Despite ${his} adequate sex drive, since ${slave.slaveName} isn't turned on by the prospect of pussy, ${he} takes some manual stimulation before ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`stands erect.`); + } + } else { + if (slave.attrXX > 65) { + r.push(`${slave.slaveName} isn't known for ${his} high libido, but since ${he} likes pussy all it takes is some teasing to get ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`erect and ready.`); + } else { + r.push(`${slave.slaveName} doesn't have a high libido, and also isn't attracted to female slaves. A dose of vasodilators injected at the base of ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`causes ${him} to quickly reach painful readiness, and the unnatural pain makes ${him} strain at ${his} bonds.`); + _bottomDrugged = 1; + } + } + } else { + if (slave.energy > 60) { + if (slave.attrXX > 65) { + r.push(`Although ${slave.slaveName} does not like being a slave, ${his} high libido and love for pussy have ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`ready for sex despite ${his} negative feelings.`); + } else { + r.push(`${slave.slaveName} does not like being a slave, and isn't attracted to women, but with ${his} high libido all it takes is simple teasing for ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`to be ready for sex.`); + } + } else { + r.push(`${slave.slaveName} does not like being a slave, and without a high sex drive ${he} is able to resist stimulation and stay soft. A quick dose of vasodilators changes that, and ${he} moans in pain and struggles against ${his} bonds in vain as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`becomes painfully hard.`); + _bottomDrugged = 1; + } + } + } + + App.Events.addParagraph(el, r); + r= []; + + r.push(`You call ${rapist.slaveName} into the room.`); + + App.Events.addParagraph(el, r); + r= []; + + if (slave.fetish === "mindbroken" && slave.career !== "a dairy cow" && slave.career !== "a breeding bull") { + r.push(`${slave.slaveName} doesn't even notice`); + if (_isIncest) { + if (slave.father === rapist.ID && slave.mother === rapist.ID) { + r.push(`the slave that is both ${his} mother and ${his} father,`); + } else if (rapist.mother === slave.ID || rapist.father === slave.ID) { + r.push(`${his} own ${relativeTerm(slave, rapist)},`); + } else if (slave.mother === rapist.ID) { + r.push(`${his} own mother,`); + } else if (slave.father === rapist.ID) { + r.push(`the slave that fathered ${him},`); + } else { + r.push(`${his} ${relativeTerm(slave, rapist)},`); + } + } else { + r.push(`the other slave,`); + } + r.push(`and simply lays still.`); + } else if (slave.fetish === "mindbroken" && (slave.career === "a dairy cow" || slave.career === "a breeding bull")) { + if (_isIncest) { + r.push(`${slave.slaveName}'s simple mind does not even acknowledge that ${rapist.slaveName} is`); + if (slave.father === rapist.ID && slave.mother === rapist.ID) { + r.push(`the slave that is both ${his} mother and ${his} father,`); + } else if (rapist.mother === slave.ID || rapist.father === slave.ID) { + r.push(`${his} own ${relativeTerm(slave, rapist)},`); + } else if (slave.mother === rapist.ID) { + r.push(`${his} own mother,`); + } else if (slave.father === rapist.ID) { + r.push(`the slave that fathered ${him},`); + } else { + r.push(`${his} ${relativeTerm(slave, rapist)},`); + } + } else { + r.push(`${slave.slaveName}`); + if (canSee(slave)) { + r.push(`sees`); + } else if (canHear(slave)) { + r.push(`hears`); + } else { + r.push(`dimly acknowledges`); + } + r.push(`the newcomer, and with ${his} simple mind`); + } + r.push(`${he} only knows that they have a pussy and ${his}`); + if (slave.clit >= 4) { + r.push(`swollen clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`is erect. Naturally, ${he} seems quite eager to put them together.`); + _incestMood = "Bottom"; + } else { + r.push(`${slave.slaveName} is fully naked and`); + if (canSee(slave)) { + r.push(`looking up at`); + } else { + r.push(`waiting in front of`); + } + if (_isIncest) { + if (slave.father === rapist.ID && slave.mother === rapist.ID) { + r.push(`the slave that is both ${his} mother and ${his} father,`); + } else if (rapist.mother === slave.ID || rapist.father === slave.ID) { + r.push(`${his} own ${relativeTerm(slave, rapist)},`); + } else if (slave.mother === rapist.ID) { + r.push(`${his} own mother,`); + } else if (slave.father === rapist.ID) { + r.push(`the slave that fathered ${him},`); + } else { + r.push(`${his} ${relativeTerm(slave, rapist)},`); + } + if (slave.sexualQuirk === "perverted" || slave.behavioralQuirk === "sinful") { + _incestMood = "Bottom"; + r.push(`unable to hide ${his} intense arousal at the impending`); + if (rapist.sexualQuirk === "perverted") { + r.push(`perverted`); + } else { + r.push(`sinful`); + } + r.push(`act.`); + if (canSee(slave)) { + r.push(`${His} eyes are locked on ${rapist.slaveName}'s pussy, and`); + } + r.push(`${rapist.slaveName} can hear ${him} moan in anticipation${(!canSee(slave)) ? ", which surprises the blind slave" : ""}.`); + } else if (slave.relationshipTarget === rapist.ID && slave.relationship > 2) { + _incestMood = "Both"; + r.push(`but since they're already in a sexual relationship, ${he} just shows a relaxed smile as ${he} waits for ${rapist.slaveName} to mount ${him}.`); + } else { + if (slave.devotion > 95) { + _incestMood = "Bottom"; + r.push(`but ${his} deep acceptance of slavery means ${he} is eager to please you,`); + if (slave.clit >= 4) { + r.push(`leaving ${his} massive clit flushed.`); + } else { + r.push(`making ${his} ${_dickSize} cock drip precum.`); + } + } else if (slave.devotion > 60) { + r.push(`and is clearly struggling between keeping ${himself} hard and acknowledging the incest. A small dose of vasodilators and ${his} impressive desire to please you should keep ${his}`); + if (slave.clit >= 4) { + r.push(`clit`); + } else { + r.push(`penis`); + } + r.push(`up for ${rapist.slaveName}.`); + _incestMood = "BottomFragile"; + } else { + if (!_bottomDrugged) { + r.push(`and once it becomes clear to ${him} that ${rapist.slaveName} will be the one mounting ${him}, ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`shrinks away. A direct injection of vasodilators changes that, bringing ${him} back to readiness to ${his} horror.`); + _bottomDrugged = 1; + } else { + r.push(`and to ${his} own horror the drugs ${he} was injected with keep ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`ready and waiting.`); + } + } + } + } else { + if (slave.relationshipTarget === rapist.ID) { + r.push(`${his} ${relationshipTerm(rapist)},`); + if (slave.relationship > 2) { + r.push(`but since they're already in a sexual relationship, ${he} just shows a relaxed smile as ${he} waits for ${rapist.slaveName} to mount ${him}.`); + } else if (slave.partners.has(rapist.ID)) { + r.push(`but since they're already done it before, ${he} just shows a relaxed smile as ${he} waits for ${rapist.slaveName} to mount ${him}.`); + } else { + r.push(`whom ${he} hasn't had sex with yet. ${He} smiles nervously as ${he} waits for ${rapist.slaveName} to mount ${him}.`); + } + } else if (slave.rivalryTarget === rapist.ID) { + r.push(`${his} ${rivalryTerm(rapist)}, ${rapist.slaveName}.`); + if (slave.partners.has(rapist.ID)) { + r.push(`They've already fucked in the past, and by ${his} reaction, unwillingly. A`); + } else { + r.push(`${He} doesn't much like what is to come, but a`); + } + r.push(`direct injection of vasodilators fixes that, forcing ${him} to readiness, much to ${his} chagrin.`); + } else if (slave.origBodyOwnerID === rapist.ID) { + r.push(`${rapist.slaveName}, who inhabits ${his} prior body.`); + if (slave.sexualQuirk === "perverted") { + r.push(`${He}'s enough of a pervert to get off over getting mounted by ${his} own form,`); + if (slave.clit >= 4) { + r.push(`leaving ${his} massive clit flushed.`); + } else { + r.push(`making ${his} ${_dickSize} cock drip precum.`); + } + } else if (slave.devotion > 95) { + r.push(`${His} deep acceptance of slavery means ${he} is eager to please you,`); + if (slave.clit >= 4) { + r.push(`leaving ${his} massive clit flushed,`); + } else { + r.push(`making ${his} ${_dickSize} cock drip precum,`); + } + r.push(`despite how odd it is to fuck one's own body.`); + } else if (slave.devotion > 60) { + r.push(`${He} is clearly struggling to keep ${himself} hard while acknowledging ${he} is expected to fuck ${his} former body. A small dose of vasodilators and ${his} impressive desire to please you should keep ${his}`); + if (slave.clit >= 4) { + r.push(`clit`); + } else { + r.push(`penis`); + } + r.push(`at attention.`); + } else { + if (!_bottomDrugged) { + r.push(`Once it becomes clear to ${him} that "${he}'ll" be the one mounting ${him}, ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`shrinks away. A direct injection of vasodilators changes that, bringing ${him} back to readiness to ${his} horror.`); + _bottomDrugged = 1; + } else { + r.push(`To ${his} own horror the drugs ${he} was injected with keep ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`ready and waiting.`); + } + } + } else { + if (slave.devotion > 95) { + r.push(`${His} deep acceptance of slavery means ${he} is eager to please you,`); + if (slave.clit >= 4) { + r.push(`leaving ${his} massive clit flushed,`); + } else { + r.push(`making ${his} ${_dickSize} cock drip precum,`); + } + r.push(`eager for ${rapist.slaveName}.`); + } else if (slave.devotion > 60) { + r.push(`${He} is eager enough to please you that ${his}`); + if (slave.clit >= 4) { + r.push(`clit`); + } else { + r.push(`penis`); + } + r.push(`is at attention and waiting for ${rapist.slaveName}.`); + } else { + if (!_bottomDrugged) { + r.push(`Once it becomes clear to ${him} that ${rapist.slaveName} be the one mounting ${him}, ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`shrinks away. A direct injection of vasodilators changes that, bringing ${him} back to a proper hardness.`); + _bottomDrugged = 1; + } else { + r.push(`To ${his} own horror the drugs ${he} was injected with keep ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`ready and waiting.`); + } + } + } + } + } + + App.Events.addParagraph(el, r); + r= []; + + if (rapist.fetish === "mindbroken" && rapist.career !== "a dairy cow" && rapist.career !== "a breeding bull") { + r.push(`${rapist.slaveName} stares blankly, and needs to be deliberately guided to straddle ${slave.slaveName}.`); + if (_isIncest) { + r.push(`Naturally, ${he2} isn't even aware of the impending incest.`); + } + if (slave.fetish === "mindbroken" && slave.career !== "a dairy cow" && slave.career !== "a breeding bull") { + r.push(`Since both slaves are essentially vegetables, this is shaping up to be a rather contrived sexual demonstration. The parts are all there, but the actors aren't going to contribute much to the show.`); + } + } else if (rapist.fetish === "mindbroken" && (rapist.career === "a dairy cow")) { + r.push(`${rapist.slaveName} sees the`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`ready and waiting, and catches on to why ${he2}'s here quickly. ${He2} takes it into ${his2} mouth before you stop ${him2} and tap ${his2} pussy, and after a few seconds of thinking ${he2} straddles ${slave.slaveName}'s hips with a moo.`); + if (_isIncest) { + r.push(`Naturally, since ${he2} thinks ${he2}'s a cow, incest means nothing to ${him2}.`); + } + } else if (rapist.fetish === "mindbroken" && (rapist.career === "a breeding bull")) { + r.push(`${rapist.slaveName} sees the`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} penis`); + } + r.push(`ready and waiting, but isn't quite sure what to do with it. ${He2}'s been brought up to use ${his2} dick when thinking, after all. It takes a few minutes to get ${him2} to straddle ${slave.slaveName}'s hips with the intent to get ${his2} pussy penetrated.`); + if (_isIncest) { + r.push(`Naturally, since ${he2} thinks ${he2}'s a breeding bull, incest means nothing to ${him2}.`); + } + } else { + r.push(`${rapist.slaveName} sees`); + if (_isIncest) { + if (rapist.father === slave.ID && rapist.mother === slave.ID) { + r.push(`the slave that is both ${his2} mother and ${his2} father`); + } else if (slave.mother === rapist.ID || slave.father === rapist.ID) { + r.push(`${his2} own ${relativeTerm(rapist, slave)}`); + } else if (rapist.mother === slave.ID) { + r.push(`${his2} own mother`); + } else if (rapist.father === slave.ID) { + r.push(`the slave that fathered ${him2}`); + } else { + r.push(`${his2} ${relativeTerm(rapist, slave)}`); + } + r.push(`tied to the bed,`); + if (rapist.sexualQuirk === "perverted" || rapist.sexualQuirk === "sinful") { + if (_incestMood === "Bottom") { + r.push(`and can't hide ${his2}`); + if (rapist.sexualQuirk === "perverted") { + r.push(`perverted`); + } else { + r.push(`sinful`); + } + r.push(`arousal at the excited glances they share.`); + _incestMood = "Both"; + } else { + _incestMood = "Top"; + r.push(`and becomes indecently aroused at their horrified expressions for the`); + if (rapist.sexualQuirk === "perverted") { + r.push(`perverted`); + } else { + r.push(`sinful`); + } + r.push(`incest to come.`); + } + } else if (rapist.relationshipTarget === slave.ID && rapist.relationship > 2) { + r.push(`and licks ${his2} lips involuntarily.`); + } else { + if (rapist.devotion > 95) { + if (_incestMood === "Bottom") { + r.push(`as well as ${his2} apparent lust. Since ${he2} is a perfect slave for you, ${his2} vagina becomes flushed with arousal quickly.`); + _incestMood = "Both"; + } else { + _incestMood = "Top"; + r.push(`as well as ${his} worried expressions. ${rapist.slaveName} seems aroused and determined to show ${him} how a proper slave should act.`); + } + } else if (rapist.devotion > 60) { + if (_incestMood === "BottomFragile") { + _incestMood = ""; + } + r.push(`and after figuring out they're just as superficially prepared as ${he2} is, resolves ${himself2} to forget they're related to stay aroused.`); + } else { + r.push(`and can't hide the look of horror that crosses ${his2} face. You assure ${him2} this is what ${he2} needs to do.`); + if (_incestMood === "Bottom") { + r.push(`To ${his2} growing disgust, ${he2} can tell ${slave.slaveName}'s`); + if (slave.clit >= 4) { + r.push(`erect clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`shows off genuine arousal despite their blood relation.`); + } else { + r.push(`${He2} might find solace in the fact that the owner of the`); + if (slave.clit >= 4) { + r.push(`erect clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`on display doesn't seem thrilled as well.`); + } + } + } + } else { + if (slave.relationshipTarget === rapist.ID) { + r.push(`${his} ${relationshipTerm(rapist)}`); + } else if (slave.rivalryTarget === rapist.ID) { + r.push(`${his} ${rivalryTerm(rapist)}`); + } else if (slave.origBodyOwnerID === rapist.ID) { + r.push(`${his} former body`); + } else { + r.push(`${slave.slaveName}`); + } + r.push(`tied to the bed,`); + if ((rapist.relationshipTarget === slave.ID && rapist.relationship > 2) || rapist.rivalryTarget === slave.ID) { + r.push(`and licks ${his2} lips involuntarily.`); + } else { + if (rapist.devotion > 95) { + if (_incestMood === "Bottom") { + r.push(`as well as ${his2} apparent lust. Since ${he2} is a perfect slave for you, ${his2} vagina becomes flushed with arousal quickly.`); + _incestMood = "Both"; + } else { + _incestMood = "Top"; + r.push(`as well as ${his} worried expressions. ${rapist.slaveName} seems aroused and determined to show ${him} how a proper slave should act.`); + } + } else if (rapist.devotion > 20) { + if (_incestMood === "BottomFragile") { + _incestMood = ""; + } + r.push(`and after figuring out they're just as superficially prepared as ${he2} is, resolves ${himself2} to try and make it pleasurable.`); + } else { + r.push(`and can't hide the look of horror that crosses ${his2} face. You assure ${him2} this is what ${he2} needs to do.`); + if (_incestMood === "Bottom") { + r.push(`To ${his2} growing disgust, ${he2} can tell ${slave.slaveName}'s`); + if (slave.clit >= 4) { + r.push(`erect clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`shows off genuine arousal despite ${his2} unwillingness.`); + } else { + r.push(`${He2} might find solace in the fact that the owner of the`); + if (slave.clit >= 4) { + r.push(`erect clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`on display doesn't seem thrilled as well.`); + } + } + } + } + + if (_incestMood === "Top" || _incestMood === "Both" || !(_isIncest)) { + if (rapist.fetishKnown === 1) { + if (rapist.fetish === "submissive") { + r.push(`${rapist.slaveName} usually prefers to be underneath someone with a`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`like that, which is obvious in ${his2} expressions. Knowing ${he2}'s riding it due to someone's orders is just about the only detail that plays to ${his2} fetish.`); + } else if (rapist.fetish === "dom") { + r.push(`${rapist.slaveName} can't hide ${his2} domineering smile at the`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} cock`); + } + r.push(`tied up and presented to ${him2}. Being on top and controlling everything is what gets ${him2} off, and you just gave ${him2} a nice human dildo to dominate.`); + } else if (rapist.fetish === "masochist") { + r.push(`${rapist.slaveName} usually prefers to be the one being abused, which is clear from ${his2} disappointed reaction as ${he2} considers the`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} erection`); + } + r.push(`tied before ${him2}. Maybe ${he2} can delude ${himself2} into thinking this is a denial play for ${himself2} and enjoy the human dildo, or maybe not.`); + } else if (rapist.fetish === "sadist") { + r.push(`${rapist.slaveName} is a sadist, and seeing a human dildo tied town for ${him2} to abuse and enjoy has ${him2} almost panting in arousal. The ecstatic look of devotion ${he2} flashes you makes it clear ${he2}'s going to enjoy ${himself2}, regardless of how the`); + if (slave.clit >= 4) { + r.push(`massive clit's`); + } else { + r.push(`${_dickSize} cock's`); + } + r.push(`owner feels.`); + } else if (rapist.fetish === "humiliation") { + r.push(`${rapist.slaveName} usually gets off on humiliation, and you know ${he2} wishes the roles were reversed here. Despite that, having ${his2} ${getWrittenTitle(rapist)} order ${him2} to get ${himself2} off with the human dildo beneath ${him2} is quite thrilling, sexually.`); + } + } + } + } + + App.Events.addParagraph(el, r); + r= []; + + if (slave.devotion < -20 && rapist.devotion < -20) { + r.push(`Since you have two restrained slaves, it's up to you to do all the work. Since ${slave.slaveName} is already lying on the bed, you maneuver ${rapist.slaveName}'s pussy into place. The two slaves make no further moves until you deal ${rapist.slaveName} a terrific swat across the ass and promise to give ${him2} more of the same until ${he2} gets going. ${rapist.slaveName} starts lowering ${himself2} very slowly, pulling back every time ${slave.slaveName}'s dick prods ${his2} womanhood. After watching the sad display for a while, you grab ${him2} by the hips and slam ${him2} down onto ${slave.slaveName}, hilting ${him2} in one, scream-inducing move.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + r.push(`${rapist.slaveName} seems more cooperative after that and you only have to occasionally prod them with an electrical jolt to keep them going at a faster pace. Both slaves resent what you made them do and fear you as a result.`); + } else if (rapist.fetish === "sadist" && rapist.fetishStrength > 20 && slave.devotion < -20) { + r.push(`You tell the grinning ${rapist.slaveName} that ${slave.slaveName}'s`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`is all ${hers2}. The slave life has so affected ${rapist.slaveName} that ${he2} is quite eager to hurt and rape another slave for ${his2} pleasure.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + + r.push(`${He2} begins playing with ${him} immediately, slapping, pinching and licking ${his} boobs while bouncing on the meaty shaft. Occasionally ${he2} stops, denying ${slave.slaveName} release by painfully squeezing and smacking the sensitive shaft. By the end of the session ${slave.slaveName}'s abused, pent-up penis has shot several massive and painful loads into the blissfully satisfied ${rapist.slaveName}, leaving ${him} lying on the bed, shaking in horror and <span class="health dec">utter exhaustion,</span> while rapist.slaveName reaps the opportunity to continue painfully tormenting ${him}.`); + + healthDamage(slave, 10); + slave.counter.penetrative += 3; + V.penetrativeTotal += 3; + rapist.counter.vaginal += 3; + V.vaginalTotal += 3; + } else if (slave.devotion < -20) { + r.push(`Since your dick slave is restrained, you order ${rapist.slaveName} to kneel on the bed on top of ${slave.slaveName}, and then maneuver ${his2} pussy into place. ${slave.slaveName} is uncooperative, so you prod and slap ${him} until ${he} starts to thrust ${his} cock into ${rapist.slaveName} with urgency.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears _h2e might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + r.push(`It doesn't take long for ${slave.slaveName} to orgasm. ${He} resents what you made ${him} do and fears you as a result.`); + } else if (rapist.fetish === "dom" && rapist.fetishStrength > 20 && rapist.devotion > 20) { + r.push(`You tell the randy ${rapist.slaveName} that ${slave.slaveName}'s`); + + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`is all ${hers2}. The slave life has so affected ${rapist.slaveName} that ${he2} is quite eager to rape another slave for ${his2} pleasure.`); + if (rapist.vagina === 0) { + r.push(`Without further instruction, ${rapist.slaveName} lowers ${his2} virgin pussy onto ${slave.slaveName} waiting`); + if (slave.clit >= 4) { + r.push(`clit-dick,`); + } else { + r.push(`${_dickSize} dick,`); + } + r.push(`impaling ${himself2} slowly and teasing ${his2} bound victim. This act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.fetishStrength += 1; + } + r.push(`${He2} begins playing with ${him2} immediately, fondling, pinching and licking while bouncing on the meaty shaft. Occasionally ${he2} stops, denying ${slave.slaveName} release and teasing ${him}, fully enjoying ${his2} dominant role.`); + if (slave.dick > 0) { + if (slave.fetish === "submissive") { + r.push(`By the end of the session ${slave.slaveName}'s abused, pent-up penis has shot a massive load into ${rapist.slaveName}'s welcoming pussy. ${He} is glad to be dominated.`); + } else { + r.push(`By the end of the session ${slave.slaveName}'s abused, pent-up penis has shot a massive load, to ${his} horror and resentment, into the blissfully satisfied ${rapist.slaveName}.`); + } + } + } else if (rapist.energy > 95 && rapist.devotion > 20) { + r.push(`You tell the randy ${rapist.slaveName} that ${slave.slaveName}'s`); + + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`is all ${hers}. The slave life has so affected ${rapist.slaveName} that ${he2} is quite eager to rape another slave, just for the perverted novelty of the act.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + + r.push(`${He2} rides the helpless ${slave.slaveName} through several ejaculating orgasms. In the short breaks between them, ${he2} teases ${his} pussy. By the end of the session ${rapist.slaveName}'s cunt is dripping cum, to ${his2} obvious satiation and bliss. ${slave.slaveName} is lying next to ${him2} on the bed in a state of fatigue, the entire experience having thoroughly exhausted ${him}.`); + slave.counter.penetrative += 3; + V.penetrativeTotal += 3; + rapist.counter.vaginal += 3; + V.vaginalTotal += 3; + } else if (slave.devotion <= 20 || rapist.devotion <= 20) { + r.push(`You toss ${slave.slaveName} onto the bed and tell ${rapist.slaveName} to get on with it.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he2} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + r.push(`They fuck mechanically, gazing with roiling emotions into each others' eyes. They do seem to come to some sort of a nonverbal understanding on the necessity of getting it done, and there is no real unhappiness in either of them when they finish and disentangle themselves. As they clean themselves and exit, you notice ${rapist.slaveName}'s looking a little more longingly at ${slave.slaveName}.`); + } else if (slave.devotion <= 50 || rapist.devotion <= 50) { + r.push(`You order ${slave.slaveName} and ${rapist.slaveName} to get on with it.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + r.push(`They fuck mechanically at first, gazing with roiling emotions into each others' eyes. Eventually, they begin to enjoy the intimacy of the act, finding the shared pleasure between them comforting. They finish and resume life as slaves, the light of this intimacy diminishing, softening with ${slave.slaveName}'s`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`and dripping away with the contents of ${rapist.slaveName}'s cum-filled pussy. You notice ${rapist.slaveName}'s looking a little more longingly at ${slave.slaveName}.`); + } else { + r.push(`The two slaves turn eagerly to the business of sex.`); + if (rapist.vagina === 0) { /* losing virginity */ + if (rapist.devotion > 20) { + r.push(`${rapist.slaveName} accepts your orders without comment and lowers ${his2} virgin pussy on ${slave.slaveName}'s ready`); + if (slave.clit >= 4) { + r.push(`massive clit.`); + } else { + r.push(`${_dickSize} dick.`); + } + r.push(`<span class="devotion inc">${rapist.slaveName} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">will break in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 10; + } else if (rapist.devotion >= -20) { + r.push(`${rapist.slaveName} is clearly unhappy at the idea of losing ${his2} pearl of great price to ${slave.slaveName}; this probably isn't what ${he2} imagined ${his2} first real sex would be like. ${He2} fears ${he2} might get pregnant. Nevertheless, <span class="devotion inc">${he} is further broken to slavery</span> by this application of ${his2} body, which naturally <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion += 4; + } else { + r.push(`As you anticipated, ${rapist.slaveName} refuses to give ${slave.slaveName} ${his2} virginity. However, since ${rapist.slaveName} is restrained ${his2} resistance amounts to <span class="mediumorchid">horrified tears</span> and <span class="trust dec">frightened begging.</span> Naturally, this cruel act <span class="lime">breaks in ${his2} pussy.</span>`); + rapist.vagina = 1; + rapist.devotion -= 5; + rapist.trust -= 5; + } + if (rapist.mother === slave.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} ${relativeTerm(slave, rapist)}'s — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} ${relativeTerm(slave, rapist)}'s vagina.`); + } + } else if (slave.mother === rapist.ID) { + if (slave.counter.penetrative === 0) { + r.push(`${slave.slaveName}`); + r.push(`gasps and ${his} eyes widen as ${he} feels the tender folds of a pussy — and none other than ${his} mother's — embracing ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`for the first time.`); + } else { + r.push(`${slave.slaveName}'s breath quickens as ${his}`); + if (slave.clit >= 4) { + r.push(`massive clit`); + } else { + r.push(`${_dickSize} dick`); + } + r.push(`disappears into ${his} mother's vagina.`); + } + } + }/* closes losing virginity */ + r.push(`${rapist.slaveName} happily rides ${slave.slaveName}, who occasionally thrusts ${his} hips up. After a little while, when ${rapist.slaveName} bends down to engage in passionate kissing, you come over and`); + if (canDoAnal(rapist) && rapist.anus > 0) { + r.push(`penetrate ${rapist.slaveName}'s free asshole with your`); + if (V.PC.dick !== 0) { + r.push(`dick.`); + } else { + r.push(`strap-on.`); + } + r.push(`With the extra stimulus of double penetration, ${he2} comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.`); + rapist.counter.anal++; + V.analTotal++; + if (canImpreg(rapist, V.PC)) { + knockMeUp(rapist, 5, 1, -1, true); + } + } else if (canDoVaginal(slave)) { + r.push(`penetrate ${slave.slaveName}'s free pussy with your`); + if (V.PC.dick !== 0) { + r.push(`dick.`); + } else { + r.push(`strap-on.`); + } + r.push(`With the double stimulus of penetrating a tight vagina and being penetrated while restrained, ${he} comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.`); + r.push(VCheck.Vaginal(slave, 1)); + } else if (canDoAnal(slave)) { + r.push(`penetrate ${slave.slaveName}'s free asshole with your`); + if (V.PC.dick !== 0) { + r.push(`dick.`); + } else { + r.push(`strap-on.`); + } + r.push(`With the double stimulus of penetrating a tight vagina and being penetrated while restrained, ${he} comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.`); + r.push(VCheck.Anal(slave, 1)); + } else { + r.push(`pull ${his2} face to your crotch. All this penetration has got you horny and there are no free holes to fuck, so a little oral will have to do. It doesn't take long for all three of you to collapse into an exhausted, satisfied pile of flesh.`); + rapist.counter.oral++; + V.oralTotal++; + } + } + + App.Events.addParagraph(el, r); + r= []; + + slave.counter.penetrative += 1; + V.penetrativeTotal += 1; + rapist.counter.vaginal += 1; + V.vaginalTotal += 1; + addPartner(slave, rapist); + + /* Friendship/lust? */ + if (([2].includes(slave.relationship) && slave.relationshipTarget === rapist.ID) && ([2].includes(rapist.relationship) && rapist.relationshipTarget === slave.ID)) { + r.push(`You keep ${slave.slaveName}'s dick intimate with ${rapist.slaveName}'s pussy for awhile, something the two friends haven't been sharing with each other. In the end, you are certain they got closer, becoming <span class="lightgreen">friends with benefits.</span>`); + slave.relationship++; + rapist.relationship++; + } + + /* pregnancy test */ + if (canImpreg(rapist, slave)) { + r.push(knockMeUp(rapist, 25, 0, slave.ID)); + } + + /* save changes */ + V.slaves[V.slaveIndices[rapist.ID]] = rapist; + + return el; + } +}; diff --git a/src/npc/interaction/passage/fSlaveSlaveDick.tw b/src/npc/interaction/passage/fSlaveSlaveDick.tw deleted file mode 100644 index 9dba1532685f68aa04b6864a0a402887f33a7d3b..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/fSlaveSlaveDick.tw +++ /dev/null @@ -1,34 +0,0 @@ -:: FSlaveSlaveDick [nobr] - -<<set $slaverapistx = 0>> -<<set $nextLink = "Slave Interact">> -<<set $nextButton = "Back">> - -<p class="scene-intro"> - Select a slave that will ride <<= getSlave($AS).slaveName>>. -</p> - -<h2>Select an eligible slave</h2> - -<<set _eligibles = $slaves.filter((s) => (s.ID != $AS) && isSlaveAvailable(s) && canDoVaginal(s) && canStand(s) /* amp-amp scene is not written */)>> -<<for _i = 0; _i < _eligibles.length; _i++>> - <div> - <<set _name = SlaveFullName(_eligibles[_i])>> - <<print "[[_name|FSlaveSlaveDick Consummate][$slaverapistx = _eligibles[" + _i + "]]]">> - <<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>> - <<if (canImpreg(_eligibles[_i], getSlave($AS)))>> - @@.green;Fertile@@ - <</if>> - <<if totalRelatives(getSlave($AS)) > 0>> - <<set _relTerm = relativeTerm(getSlave($AS), _eligibles[_i])>> - <<if _relTerm != null>> - @@.lightgreen;<<= capFirstChar(_relTerm)>>@@ - <</if>> - <</if>> /* closes extended family mode */ - </div> -<</for>> -<<if (_eligibles.length === 0)>> - <div class="note> - You have no slaves capable of this act. - </div> -<</if>> diff --git a/src/npc/interaction/passage/fSlaveSlaveVag.js b/src/npc/interaction/passage/fSlaveSlaveVag.js new file mode 100644 index 0000000000000000000000000000000000000000..e8a4820a47b27a432d1abecdd8ff429407949db6 --- /dev/null +++ b/src/npc/interaction/passage/fSlaveSlaveVag.js @@ -0,0 +1,476 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {HTMLElement} + */ +App.Interact.fSlaveSlaveVag = function(slave) { + const node = document.createElement("div"); + + App.UI.DOM.appendNewElement("div", node, `Select a slave that will fuck ${slave.slaveName}.`); + App.UI.DOM.appendNewElement("h2", node, `Select an eligible slave`); + + const _eligibles = V.slaves.filter((s) => (s.ID !== slave.ID) && isSlaveAvailable(s) && (canPenetrate(s) || s.clit >= 4)); + for (const eligible of _eligibles) { + const div = App.UI.DOM.appendNewElement("div", node); + div.append(App.UI.DOM.link( + SlaveFullName(eligible), + () => { + jQuery(node).empty().append(content(eligible)); + } + )); + if (eligible.custom.label) { + App.UI.DOM.appendNewElement("span", div, ` ${eligible.custom.label}`, ["yellow", "bold"]); + } + if (canImpreg(eligible, slave)) { + App.UI.DOM.appendNewElement("span", div, ` Virile`, "green"); + } + if (totalRelatives(slave) > 0) { + const _relTerm = relativeTerm(slave, eligible); + if (_relTerm !== null) { + App.UI.DOM.appendNewElement("span", div, ` ${capFirstChar(_relTerm)}`, "lightgreen"); + } + } + } + if (_eligibles.length === 0) { + App.UI.DOM.appendNewElement("div", node, `You have no slaves capable of this act.`, "note"); + } + return node; + /** + * + * @param {App.Entity.SlaveState} rapist + * @returns {DocumentFragment} + */ + function content(rapist) { + const el = new DocumentFragment(); + let r = []; + const { + He, His, + he, his, him, himself + } = getPronouns(slave); + + const { + He2, His2, + he2, his2, him2, himself2, hers2, wife2 + } = getPronouns(rapist).appendSuffix("2"); + let _incestMood; + + addPartner(slave, -1); + + slave.counter.vaginal += 1; + V.vaginalTotal += 1; + rapist.counter.penetrative++; + V.penetrativeTotal++; + + let _dickSize; + if (rapist.dick === 1) { + _dickSize = "pathetic"; + } else if (rapist.dick === 2) { + _dickSize = "tiny"; + } else if (rapist.dick === 3) { + _dickSize = "average"; + } else if (rapist.dick === 4) { + _dickSize = "big"; + } else if (rapist.dick === 5) { + _dickSize = "huge"; + } else if (rapist.dick === 6) { + _dickSize = "gigantic"; + } else if (rapist.dick === 7) { + _dickSize = "titanic"; + } else if (rapist.dick === 8) { + _dickSize = "absurd"; + } else if (rapist.dick === 9) { + _dickSize = "inhuman"; + } else { + _dickSize = "obscene"; + } + + const _isIncest = areRelated(slave, rapist); + + r.push(`You take a look at the slave you selected.`); + + if (rapist.fetish === "dom" && rapist.fetishStrength > 20 && rapist.devotion >= -20) { + r.push(`Since ${rapist.slaveName} loves to dominate others it's not hard to get ${his2}`); + if (rapist.dick > 0) { + r.push(`${_dickSize} dick`); + } else { + r.push(`massive clit`); + } + r.push(`ready.`); + if (rapist.attrXX > 65) { + r.push(`With ${his2} love of pussy, ${he2} becomes aroused indecently fast.`); + } else { + r.push(`${His2}`); + if (rapist.dick > 0) { + r.push(`${_dickSize} cock`); + } else { + r.push(`massive clit`); + } + r.push(`quickly swells to a throbbing erection at the prospect of forcing ${himself2} on another slave.`); + } + } else if (rapist.fetish === "sadist" && rapist.fetishStrength > 20 && rapist.devotion >= -20) { + r.push(`With the prospect of torturing another slave`); + if (rapist.dick > 0) { + r.push(`${his2} ${_dickSize} cock swells to a throbbing erection in seconds.`); + } else { + r.push(`${his2} huge clit becomes fully engorged in seconds.`); + } + } else if ((rapist.fetish === "pregnancy" && rapist.fetishStrength > 20 && rapist.devotion >= -20) && rapist.dick > 0) { + r.push(`With the prospect of raping another slave bareback, ${his2} ${_dickSize} cock swells to a throbbing erection in seconds.`); + } else if (rapist.attrXX > 65 && rapist.devotion >= -20) { + r.push(`Since ${rapist.slaveName} likes sticking ${his2}`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`in girls, ${he2} doesn't take much convincing.`); + } else if (rapist.devotion > 50) { + r.push(`Since ${rapist.slaveName} is devoted to you, ${he2}'ll eagerly fuck anything you tell ${him2} to fuck.`); + } else if (rapist.devotion > 20) { + r.push(`Since ${rapist.slaveName} is obedient, ${he2}'ll fuck anything you tell ${him2} to fuck.`); + } else if (rapist.devotion >= -20) { + r.push(`Since ${rapist.slaveName} does not resist your will, ${he2} should comply reasonably well. ${He2} has to work to get ${his2}`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`hard despite ${his2} doubts, visibly disturbed that you are ordering ${him2} to fuck someone for your entertainment.`); + } else { + r.push(`Since ${rapist.slaveName} is unlikely to comply willingly, you simply restrain ${him2} and administer a massive dose of vasodilators, directly where they will do the most good. ${rapist.slaveName} writhes with the pain of the injection, which is compounded as ${his2}`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`quickly reaches an agonizingly full erection.`); + } + + if (_isIncest) { + r.push(`${rapist.slaveName} is well aware that ${he2} is about to rape`); + if (rapist.father === slave.ID && rapist.mother === slave.ID) { + r.push(`the slave that is both ${his2} mother and ${his2} father,`); + } else if (slave.mother === rapist.ID || slave.father === rapist.ID) { + r.push(`${his2} own ${relativeTerm(rapist, slave)},`); + } else if (rapist.mother === slave.ID) { + r.push(`${his2} own mother,`); + } else if (rapist.father === slave.ID) { + r.push(`the slave that fathered ${him2},`); + } else { + r.push(`${his2} ${relativeTerm(rapist, slave)},`); + } + if (rapist.sexualQuirk === "perverted" || rapist.behavioralQuirk === "sinful") { + if (rapist.energy > 60) { + r.push(`and seems quite aroused at just how`); + if (rapist.sexualQuirk === "perverted") { + r.push(`perverted`); + } else { + r.push(`sinful`); + } + r.push(`that is.`); + if (canSee(rapist)) { + r.push(`${rapist.slaveName}'s eyes seemed locked on ${slave.slaveName}'s inviting pussy, thoroughly aroused and waiting for your order.`); + } + } else { + r.push(`but despite ${his2} conflicted feelings ${his2} arousal is clear.`); + } + _incestMood = "Top"; + } else if (rapist.relationshipTarget === slave.ID && rapist.relationship > 2) { + r.push(`but since ${he2}'s already in a sexual relationship with ${him}, it's only special because ${his2} ${getWrittenTitle(rapist)} is watching.`); + _incestMood = "Top"; + } else { + if (rapist.devotion > 95) { + r.push(`but ${his2} deep acceptance of slavery means ${he2} can't help but be eager to please everyone involved with ${his2} performance.`); + _incestMood = "Top"; + } else if (rapist.devotion > 60) { + r.push(`but ${his2} experience as a slave means ${he2} can mostly ignore it and focus on sex.`); + } else { + r.push(`and is understandably disturbed.`); + } + } + } + + App.Events.addParagraph(el, r); + r = []; + + r.push(`Next, you see to ${slave.slaveName}.`); + + if (_isIncest) { + r.push(`${slave.slaveName} is fully naked and`); + if (canSee(slave)) { + r.push(`looking up at`); + } else { + r.push(`waiting in front of`); + } + if (slave.father === rapist.ID && slave.mother === rapist.ID) { + r.push(`the slave that is both ${his} mother and ${his} father,`); + } else if (rapist.mother === slave.ID || rapist.father === slave.ID) { + r.push(`${his} own ${relativeTerm(slave, rapist)},`); + } else if (slave.mother === rapist.ID) { + r.push(`${his} own mother,`); + } else if (slave.father === rapist.ID) { + r.push(`the slave that fathered ${him},`); + } else { + r.push(`${his} ${relativeTerm(slave, rapist)},`); + } + if (slave.sexualQuirk === "perverted" || slave.behavioralQuirk === "sinful") { + if (slave.energy > 60) { + r.push(`whose`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`is standing firm above ${him}. ${He} seems indecently aroused, flushed and shivering in anticipation.`); + } else { + r.push(`but despite ${his} conflicted feelings ${his} growing arousal is clear as ${he}`); + if (canSee(slave)) { + r.push(`stares at`); + } else { + r.push(`imagines`); + } + r.push(`the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`that's soon going inside ${him}.`); + } + if (_incestMood === "Top") { + _incestMood = "Both"; + } else { + _incestMood = "Bottom"; + } + } else if (slave.relationshipTarget === rapist.ID && slave.relationship > 2) { + r.push(`and seems calm and inviting to ${his}`); + if (slave.relationship === 3) { + r.push(`sex friend's`); + } else if (slave.relationship === 4) { + r.push(`lover's`); + } else { + r.push(`slave ${wife2}'s`); + } + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`that will be penetrating ${him}.`); + if (_incestMood === "Top") { + _incestMood = "Both"; + } else { + _incestMood = "Bottom"; + } + } else { + if (slave.devotion > 95) { + r.push(`and ${his} deep acceptance of ${his} status as a slave has ${him} staring`); + if (canSee(slave)) { + r.push(`at`); + } else { + r.push(`blindly towards`); + } + r.push(`the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`above ${him} with a lusty smile.`); + if (_incestMood === "Top") { + _incestMood = "Both"; + } else { + _incestMood = "Bottom"; + } + } else if (slave.devotion > 60) { + r.push(`and if ${he} focuses, ${he} can forget the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`standing erect in front of ${him} belongs to someone related to ${him}.`); + } else { + r.push(`and is understandably disturbed,`); + if (canSee(slave)) { + r.push(`eyes glued to the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`throbbing before ${him}.`); + } else if (canHear(slave)) { + r.push(`listening to the heavy breathing of ${his} relative whose`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`will be entering ${him} soon.`); + } else { + r.push(`imagining how the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} penis`); + } else { + r.push(`massive clit`); + } + r.push(`of ${his} relative will feel inside ${him}`); + } + } + } + } + + if (slave.fetish === "submissive" && slave.fetishStrength > 60 && slave.fetishKnown === 1 && slave.vagina === 0) { + r.push(`${He} presents ${his} virgin pussy to ${rapist.slaveName} without protest. This act <span class="lime"> breaks in ${his} pussy,</span> and <span class="hotpink">reminds ${him}</span> of ${his} status as a submissive slave.`); + slave.vagina = 1; + slave.devotion += 4; + slave.fetishStrength += 1; + } else if (slave.fetish === "submissive" && slave.fetishStrength > 60 && slave.fetishKnown === 1) { + r.push(`${He} smiles as ${he} lays back and presents ${his} pussy to ${rapist.slaveName}. ${He} openly enjoys submitting ${himself} for others to make use of.`); + } else if ((slave.devotion > 20 && slave.vagina === 0) ) { + r.push(`${He} accepts your orders without comment and presents ${his} virgin pussy to ${rapist.slaveName}. ${He} gasps in shock when ${he} feels the`); + if (rapist.dick > 0) { + r.push(`${_dickSize} dick`); + } else { + r.push(`massive clit`); + } + r.push(`enter ${him}. <span class="hotpink">${He} is broken to slavery</span> by this application of ${his} body, which naturally <span class="lime">will break in ${his} pussy.</span>`); + slave.vagina = 1; + slave.devotion += 10; + } else if (slave.devotion >= -20 && slave.vagina === 0) { + r.push(`${He} is clearly unhappy at the idea of losing ${his} pearl of great price to ${rapist.slaveName}; this probably isn't what ${he} imagined ${his} first real sexual encounter would be like. Nevertheless, ${he} is <span class="hotpink">broken to slavery</span> by this application of ${his} body, which naturally <span class="lime">will break in ${his} pussy.</span>`); + slave.vagina = 1; + slave.devotion += 4; + } else if (slave.vagina === 0) { + r.push(`As you anticipated, ${he} refuses to give ${rapist.slaveName} ${his} virginity. Since ${he} is restrained, ${his} <span class="mediumorchid">horrified tears</span> and <span class="gold">frightened begging</span> are ${his} only signs on rebellion. Naturally, this cruel act <span class="lime">will break in ${his} pussy.</span>`); + slave.devotion -= 5; + slave.trust -= 5; + slave.vagina = 1; + } + + if (isAmputee(slave)) { + r.push(`You set ${his} limbless torso up for ${rapist.slaveName}.`); + } else if (tooBigBreasts(slave)) { + r.push(`You set ${him} up for ${rapist.slaveName}, face-down so the weight of ${his} tits pins ${him} helplessly in place.`); + } else if (tooBigButt(slave)) { + r.push(`You set ${him} up for ${rapist.slaveName}, face-down so the weight of ${his} giant ass pins ${him} helplessly in place and gives rapist.slaveName a lovely cushion to thrust against.`); + } else if (tooBigDick(slave)) { + r.push(`You set ${him} up for ${rapist.slaveName}, face-up so ${he} is pinned under the weight of ${his} giant cock.`); + } else if (tooBigBalls(slave)) { + r.push(`You set ${him} up for ${rapist.slaveName}, face-down so the weight of ${his} giant balls anchor ${him} helplessly in place.`); + } else if (slave.devotion < -20) { + r.push(`${He} tries to refuse, so you restrain ${him} despite ${his} resistance to the idea of being raped by another slave.`); + } else if (slave.devotion <= 20) { + r.push(`${He} obeys your orders reluctantly, arranging ${himself} for vaginal sex despite ${his} obvious hesitation to be raped by another slave.`); + } else if (slave.devotion < 10) { + r.push(`${He} obeys your orders, arranging ${himself} for vaginal sex despite ${his} slight hesitation at the idea of being another's slave sex toy.`); + } else { + r.push(`${He} happily obeys your orders, getting ready to serve another slave.`); + } + + App.Events.addParagraph(el, r); + r = []; + + if (slave.devotion < -20 && rapist.devotion < -20) { + r.push(`Since you have two restrained slaves, it's up to you to do all the work. ${slave.slaveName} is tied up on the bed with ${his} pussy available, so you maneuver ${rapist.slaveName}'s`); + if (rapist.dick > 0) { + r.push(`${_dickSize} dick`); + } else { + r.push(`strap-on`); + } + r.push(`into place. The two slaves make no further moves until you deal ${rapist.slaveName} a terrific swat across the ass and promise to give ${him2} more of the same until ${he2} gets going. rapist.slaveName starts moving very slowly, barely prodding. After watching them mechanically go at it for a while, you use your leg to suddenly push ${him2} deep into ${slave.slaveName}, fully hilting ${him2} in one motion. You occasionally prod them with an electrical jolt to keep them going at a faster pace. Both slaves resent what you made them do for you and fear you'll make them do it again.`); + } else if (rapist.devotion < -20) { + r.push(`Since your dick slave is restrained, you order ${slave.slaveName} to present ${himself} on the bed, and then maneuver ${rapist.slaveName}'s`); + if (rapist.dick > 0) { + r.push(`${_dickSize} dick`); + } else { + r.push(`strap-on`); + } + r.push(`into place. ${slave.slaveName} does ${his} best to hump ${himself} against the unwilling cock until you deal ${rapist.slaveName} a terrific swat across the ass and promise to give ${him2} more of the same until ${he2} gets going. ${He2} is still unenthusiastic, so you have ${him2} lie down and have ${slave.slaveName} ride ${himself} to orgasm. ${He2} resents what you made ${him2} do and fears you'll force ${him2} to do it again. Though ${slave.slaveName} accepts the situation, ${he} looks into ${rapist.slaveName}'s eyes with obvious apology.`); + } else if (rapist.fetish === "dom" && rapist.fetishStrength > 20 && rapist.devotion > 20) { + r.push(`${slave.slaveName} is tied and placed on the bed with ${his} pussy defenseless and available, and then you tell the randy ${rapist.slaveName} that it's all ${hers2}. The slave life has so affected rapist.slaveName that ${he2} is quite eager to rape another slave for ${his2} pleasure. ${He2} penetrates ${him2} immediately, fondling, pinching and licking while pistoning away, fully enjoying ${his2} dominant role, edging ${his2} poor toy again and again and making ${him2} beg for release.`); + if (slave.fetish === "dom") { + if (slave.devotion < -20) { + r.push(`By the end of the day ${slave.slaveName}'s abused cunt is`); + + if (rapist.dick > 0) { + r.push(`dripping with cum,`); + } else { + r.push(`overflowing with juices,`); + } + r.push(`leaving ${him} horrified and disgusted at ${his} lack of control.`); + } else { + r.push(`By the end of the day ${slave.slaveName}'s abused cunt is`); + + if (rapist.dick > 0) { + r.push(`dripping with cum,`); + } else { + r.push(`overflowing with juices,`); + } + r.push(`leaving ${him} annoyed at ${his} lack of control, though ${he} still somewhat enjoyed ${himself}.`); + } + } else if (slave.fetish === "submissive") { + if (slave.devotion < -20) { + r.push(`By the end of the day ${slave.slaveName}'s abused cunt is`); + + if (rapist.dick > 0) { + r.push(`dripping with cum,`); + } else { + r.push(`overflowing with juices,`); + } + r.push(`leaving the submissive slave horrified that ${he} found the experience sexually satisfying.`); + } else { + r.push(`By the end of the day ${slave.slaveName}'s abused cunt is`); + + if (rapist.dick > 0) { + r.push(`dripping with cum.`); + } else { + r.push(`overflowing with juices.`); + } + r.push(`This sexual encounter is everything ${he} dreamed of, leaving ${him} utterly satisfied.`); + } + } + r.push(`${rapist.slaveName} is lying next to ${him} on the bed in a state of obvious satiation and bliss.`); + } else if (rapist.energy > 95 && rapist.devotion > 20 && slave.devotion < -20) { + r.push(`${slave.slaveName} is tied and placed on the bed with ${his} pussy defenseless and available, and then you tell the randy ${rapist.slaveName} that it's all ${hers2}. The slave life has so affected rapist.slaveName that ${he2} is quite eager to rape another slave, just for the perverted novelty of the act. ${His} high libido keeps ${him} going for a long time, bringing the helpless toy to one forced orgasm after another. By the end of the day ${slave.slaveName} is lying on the bed, all worn out, ${his} cunt`); + if (rapist.dick > 0) { + r.push(`dripping with cum`); + } else { + r.push(`overflowing with juices`); + } + r.push(`to ${his} horror and resentment, while ${rapist.slaveName} is sleeping next to ${him} in a state of obvious satiation and bliss.`); + } else if (slave.devotion <= 20 || rapist.devotion <= 20) { + r.push(`You order ${slave.slaveName} onto the couch and tell ${rapist.slaveName} to get on with it. They fuck mechanically, gazing with roiling emotions into each others' eyes. They do seem to come to some sort of a non-verbal understanding on the necessity of getting it done, and there is no real unhappiness in either of them when they finish and disentangle themselves. As they clean themselves and exit, you notice rapist.slaveName's looking a little more longingly at ${slave.slaveName}.`); + } else if (slave.devotion <= 50 || rapist.devotion <= 50) { + r.push(`You order ${slave.slaveName} and ${rapist.slaveName} to get on with it. They fuck mechanically at first, gazing with roiling emotions into each others' eyes. Eventually, they begin to enjoy the intimacy of the act, finding the shared pleasure between them comforting. They finish and resume life as slaves, the light of this intimacy diminishing, softening with rapist.slaveName's dick and dripping away with the contents of ${slave.slaveName}'s cum-filled pussy.`); + } else { + r.push(`The two slaves happily and eagerly get down to business. They take their time with foreplay, humping slowly and gazing into each others' eyes, exchanging kisses almost constantly. After a little while, ${slave.slaveName} looks over ${rapist.slaveName}'s shoulder to where you're sitting, the invitation clear in ${his} eyes. As soon as you stand to come over, they roll over without being ordered to`); + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`present ${slave.slaveName}'s butthole.`); + + slave.counter.anal++; + V.analTotal++; + } else { + r.push(`invite you into ${slave.slaveName}'s crowded pussy.`); + + slave.counter.vaginal++; + V.vaginalTotal++; + } + r.push(`You take up the offer and penetrate ${slave.slaveName} with your`); + if (V.PC.dick > 0) { + r.push(`dick.`); + } else { + r.push(`strap-on.`); + } + r.push(`With the added stimulus of penetrating a tight hole alongside ${his2} dear ${getWrittenTitle(rapist)}, ${rapist.slaveName} comes indecently hard, but no where near as hard as the completely overloaded ${slave.slaveName}. All of you collapse into an exhausted, happy pile of flesh.`); + } + + if (canImpreg(slave, rapist)) { + knockMeUp(slave, 25, 0, rapist.ID); + } + + App.Events.addParagraph(el, r); + return el; + } +}; diff --git a/src/npc/interaction/passage/fSlaveSlaveVag.tw b/src/npc/interaction/passage/fSlaveSlaveVag.tw deleted file mode 100644 index 865b92c388159601eb5c225d518335ae0c02680a..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/fSlaveSlaveVag.tw +++ /dev/null @@ -1,35 +0,0 @@ -:: FSlaveSlaveVag [nobr] - -<<set $slaverapistx = 0>> -<<set $nextLink = "Slave Interact">> -<<set $nextButton = "Back">> - -<p class="scene-intro"> - Select a slave that will fuck <<= getSlave($AS).slaveName>>. -</p> - -<h2>Select an eligible slave</h2> - - -<<set _eligibles = $slaves.filter((s) => (s.ID != $AS) && isSlaveAvailable(s) && (canPenetrate(s) || s.clit >= 4))>> -<<for _i = 0; _i < _eligibles.length; _i++>> - <div> - <<set _name = SlaveFullName(_eligibles[_i])>> - <<print "[[_name|FSlaveSlaveVag Consummate][$slaverapistx = _eligibles[" + _i + "]]]">> - <<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>> - <<if (canImpreg(getSlave($AS), _eligibles[_i]))>> - @@.green;Virile@@ - <</if>> - <<if totalRelatives(getSlave($AS)) > 0>> - <<set _relTerm = relativeTerm(getSlave($AS), _eligibles[_i])>> - <<if _relTerm != null>> - @@.lightgreen;<<= capFirstChar(_relTerm)>>@@ - <</if>> - <</if>> /* closes extended family mode */ - </div> -<</for>> -<<if (_eligibles.length === 0)>> - <div class="note"> - You have no slaves capable of this act. - </div> -<</if>> diff --git a/src/npc/interaction/passage/matchmaking.js b/src/npc/interaction/passage/matchmaking.js new file mode 100644 index 0000000000000000000000000000000000000000..c5987fe23718399781cbf7f46da678c8c497035b --- /dev/null +++ b/src/npc/interaction/passage/matchmaking.js @@ -0,0 +1,228 @@ +/** + * + * @param {App.Entity.SlaveState} slave + * @returns {HTMLElement} + */ +App.Interact.matchmaking = function(slave) { + const node = document.createElement("div"); + let r = []; + + const { + He, + he, his, him, himself, girl + } = getPronouns(slave); + + const desc = SlaveTitle(slave); + + if (V.seeImages) { + node.append( + App.UI.DOM.makeElement("div", App.Art.SlaveArtElement(slave, 2, 0), ["imageRef", "medImg"]) + ); + } + + r.push(`You order ${slave.slaveName} to come to your office. The`); + if (slave.relationship === -2) { + r.push(`worshipful`); + } else { + r.push(`slutty`); + } + r.push(`${desc} arrives promptly, greets you correctly, and waits`); + if (slave.relationship === -2) { + r.push(`adoringly for a command.`); + } else { + r.push(`eagerly for you to fuck ${him}.`); + } + r.push(`You consider the situation carefully.`); + if (slave.relationship === -2) { + r.push(`${He}'s emotionally bonded to you, and loves you with all ${his} heart. ${He} would probably do anything you command and love you all the more for it. If you were to decide that you were tired of ${his} adoration, you could probably set ${him} up with another similarly broken slave. If you ordered them to love each other like they love you, they'd obey.`); + } else { + r.push(`${He}'s an emotional slut, and worships you and values ${himself} primarily in terms of sex. ${He}'s such a perfect sex slave that ${he}'d probably fuck anyone or anything you told ${him} to, and love you all the more for giving ${him} the chance. If you were to decide that even a sex slave like ${him} needs a little more structure than constant omnisexual lust, you could probably set ${him} up with another universal slut.`); + } + r.push(`Their relationship would probably be somewhat artificial at first, and they'd have to struggle at it, but after a period of adjustment, you'd have two worshipful slaves again, except that they'd be together. It'd definitely help if they had compatible behavioral quirks and sexual fetishes.`); + App.Events.addParagraph(node, r); + r = []; + + const selections = App.UI.DOM.appendNewElement("div", node); + selections.style.float = "inline-end"; + + App.UI.DOM.appendNewElement("h2", selections, `Put ${him} with another worshipful ${(slave.relationship === -2) ? "emotionally bonded slave" : "emotional slut"}`); + selections.append(App.UI.SlaveList.slaveSelectionList( + s => s.devotion >= 100 && s.relationship === slave.relationship && s.ID !== slave.ID, + App.UI.SlaveList.SlaveInteract.stdInteract, + null, + (s) => App.UI.DOM.link("Match them", () => { + // subSlave + s.relationship = 4; + s.relationshipTarget = slave.ID; + s.devotion -= 20; + // slave + slave.relationship = 4; + slave.relationshipTarget = s.ID; + slave.devotion -= 20; + jQuery(node).empty().append(matchedScene()); + }) + )); + + App.Events.addParagraph(node, r); + return node; + + function matchedScene() { + const frag = new DocumentFragment(); + const subSlave = getSlave(slave.relationshipTarget); + const { + he2, his2, him2, girl2 + } = getPronouns(subSlave).appendSuffix("2"); + App.Events.drawEventArt(node, [slave, subSlave]); + + r.push(`You decide to set ${slave.slaveName} up with ${subSlave.slaveName}. Telling the former to wait, you have the latter hurry up to your office. When the`); + if (slave.relationship === -2) { + r.push(`slaves are waiting adoringly`); + } else { + r.push(`sluts are waiting with barely concealed lust`); + } + r.push(`in front of your desk together, you inform them of your decision.`); + if (slave.relationship === -2) { + r.push(`You commend their love for you, and let them know that it's all right for it to continue, but command them to love each other, too. They look doubtful, but at your orders they obediently take each other by the hand, and share a kiss. It will do for now. You assign them to live together as much as possible for a few days, and inform them that you'll be limiting your personal contact with them during this period. They give you identical looks of horror, and fail to notice how much of a perfect couple they already are.`); + } else { + r.push(`You praise their total commitment to sexual slavery, and let them know they'll continue to be sex slaves, but tell them that it's time for them to settle down. They give you identical looks of horror, and fail to notice how much of a perfect couple they already are. Patiently, you explain that their sex lives will remain more or less unchanged; just because two slaves are together doesn't mean they can't and won't have sex with other people. They look doubtful, but cheer up when you inform them that they'll be spending a lot of alone time together for a few days.`); + } + App.Events.addParagraph(node, r); + r = []; + r.push(`Being ordered into a relationship would be difficult for anyone, but they're so obedient that <span class="lightgreen">they do their best and make it work.</span> You ensure that they do, and your determined efforts to do so <span class="mediumorchid">reduce their devotion to you,</span> though it's mostly by redirection towards each other. And in any case, they remain devoted enough, and will likely return to their earlier worshipfulness in a few weeks at most.`); + let _matched = 1; + if (slave.fetish === "submissive" && subSlave.fetish === "dom") { + r.push(`${subSlave.slaveName} is a dom and ${slave.slaveName} is a sub. It's a match out of bad fiction.`); + } else if (subSlave.fetish === "submissive" && slave.fetish === "dom") { + r.push(`${slave.slaveName} is a dom and ${subSlave.slaveName} is a sub. It's a match out of bad fiction.`); + } else if (slave.fetish === "masochist" && subSlave.fetish === "sadist") { + r.push(`${subSlave.slaveName} is a sadist and ${slave.slaveName} is a masochist. They're a perfect ouroboros of agony.`); + } else if (subSlave.fetish === "masochist" && slave.fetish === "sadist") { + r.push(`${slave.slaveName} is a sadist and ${subSlave.slaveName} is a masochist. They're a perfect ouroboros of agony.`); + } else if (slave.fetish === "cumslut" && subSlave.balls > 0) { + r.push(`${subSlave.slaveName} has balls and ${slave.slaveName} has the appetite to drain them of every drop of cum.`); + } else if (subSlave.fetish === "cumslut" && slave.balls > 0) { + r.push(`${slave.slaveName} has balls and ${subSlave.slaveName} has the appetite to drain them of every drop of cum.`); + } else if (slave.fetish === "humiliation" && subSlave.fetish === "sadist") { + r.push(`${slave.slaveName} loves to be humiliated, and ${subSlave.slaveName} can definitely get off on another ${girl}'s shame.`); + } else if (subSlave.fetish === "humiliation" && slave.fetish === "sadist") { + r.push(`${subSlave.slaveName} loves to be humiliated, and ${slave.slaveName} can definitely get off on another ${girl2}'s shame.`); + } else if (slave.fetish === "buttslut" && subSlave.fetish === "dom") { + r.push(`${subSlave.slaveName} likes fucking other girls, so once ${slave.slaveName} asks ${him2} to just do it to ${his} ass all the time, they're both happy.`); + } else if (subSlave.fetish === "buttslut" && slave.fetish === "dom") { + r.push(`${slave.slaveName} likes fucking other girls, so once ${subSlave.slaveName} asks ${him} to just do it to ${his2} ass all the time, they're both happy.`); + } else if (slave.fetish === "boobs" && subSlave.boobs > 4000) { + r.push(`${slave.slaveName} fetishized breasts so much that ${he} thinks ${subSlave.slaveName}'s udders are one of the sexiest things ${he}'s ever seen.`); + } else if (subSlave.fetish === "boobs" && slave.boobs > 4000) { + r.push(`${subSlave.slaveName} fetishized breasts so much that ${he2} thinks ${slave.slaveName}'s udders are one of the sexiest things ${he2}'s ever seen.`); + } else if ((slave.fetish === "pregnancy" && subSlave.fetish === "pregnancy") && subSlave.bellyPreg >= 300000 && slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName} and ${subSlave.slaveName} are both enormously laden with children, much to the other's delight. They can't wait to explore each other's baby filled middle.`); + } else if ((slave.fetish === "pregnancy" && subSlave.fetish === "pregnancy") && subSlave.preg > subSlave.pregData.normalBirth/2 && slave.preg > slave.pregData.normalBirth/2) { + r.push(`${slave.slaveName} and ${subSlave.slaveName} are both heavily pregnant, much to the other's delight.`); + } else if ((subSlave.fetish === "pregnancy") && slave.bellyPreg >= 300000) { + r.push(`${subSlave.slaveName} fetishizes pregnant bellies so much that ${he2} is awestruck by ${slave.slaveName}'s enormous, baby filled middle.`); + } else if ((slave.fetish === "pregnancy") && subSlave.bellyPreg >= 300000) { + r.push(`${slave.slaveName} fetishizes pregnant bellies so much that ${he} is awestruck by ${subSlave.slaveName}'s enormous, baby filled middle.`); + } else if ((subSlave.fetish === "pregnancy") && slave.preg > slave.pregData.normalBirth/2) { + r.push(`${subSlave.slaveName} fetishizes pregnant bellies so much that ${he2} thinks ${slave.slaveName} gravid middle is one of the sexiest things ${he2}'s ever seen.`); + } else if ((slave.fetish === "pregnancy") && subSlave.preg > subSlave.pregData.normalBirth/2) { + r.push(`${slave.slaveName} fetishizes pregnant bellies so much that ${he} thinks ${subSlave.slaveName}'s gravid middle is one of the sexiest things ${he}'s ever seen.`); + } else if ((slave.fetish === "pregnancy" && subSlave.fetish === "pregnancy") && subSlave.bellyPreg >= 100 && slave.bellyPreg >= 100) { + r.push(`${slave.slaveName} and ${subSlave.slaveName} are both pregnant and just beginning to show. They'll both be able to enjoy the other's swelling body.`); + } else if (slave.fetish === "pregnancy" && canAchieveErection(subSlave)) { + r.push(`${slave.slaveName} can indulge the fantasy that ${he}'s getting pregnant each and every time ${subSlave.slaveName} cums inside ${him}.`); + } else if (subSlave.fetish === "pregnancy" && canAchieveErection(slave)) { + r.push(`${subSlave.slaveName} can indulge the fantasy that ${he2}'s getting pregnant each and every time ${slave.slaveName} cums inside ${him2}.`); + } else { + _matched = 0; + } + if (_matched === 1) { + r.push(`Their sexual compatibility is excellent, and they <span class="mediumaquamarine">trust you more</span> for matching them so perfectly.`); + slave.trust += 10; + subSlave.trust += 10; + } else if (slave.fetish === subSlave.fetish) { + r.push(`They're a couple of`); + switch (slave.fetish) { + case "submissive": + r.push(`cringing submissives,`); + break; + case "cumslut": + r.push(`hungry oral fiends,`); + break; + case "humiliation": + r.push(`public sex aficionados,`); + break; + case "buttslut": + r.push(`shameless anal whores,`); + break; + case "boobs": + r.push(`breast obsessives,`); + break; + case "pregnancy": + r.push(`breeding bitches,`); + break; + case "dom": + r.push(`dominating spirits,`); + break; + case "sadist": + r.push(`inveterate sadists,`); + break; + case "masochist": + r.push(`pain sluts,`); + break; + default: + r.push(`vanilla girls,`); + } + r.push(`and they bond over their shared sexual tastes, easing their acclimation to having another slave play a major role in their sex lives. They're almost as happy sharing stories about their past sexual exploits as they are actually having sex.`); + } else { + r.push(`Their fetishes aren't very compatible, and though as a couple of inventive nymphos they do their absolute best to fuck each other senseless, they <span class="gold">trust you a less</span> out of doubt in the sexual match.`); + slave.trust -= 10; + subSlave.trust -= 10; + } + if (slave.behavioralQuirk === subSlave.behavioralQuirk && slave.behavioralQuirk !== "none") { + r.push(`They're both`); + switch (slave.behavioralQuirk) { + case "confident": + r.push(`confident, and soon come to an understanding that they'll be able to`); + if (slave.relationship === -2) { + r.push(`serve you better together.`); + } else { + r.push(`fuck third parties better as a pair.`); + } + break; + case "cutting": + r.push(`witty, and each quickly discovers that their new partner can hold up their end of a battle of quips. Their loving snippiness develops rapidly, and it's pretty cute.`); + break; + case "funny": + r.push(`a little weird. It takes a while for them to adjust to how funny their new partner is, but they learn to support each other soon enough.`); + break; + case "adores women": + r.push(`pretty crazy about ladies. They're both slave girls themselves, which helps, and they've also got a never-ending parade of female bodies to discuss together.`); + break; + case "adores men": + r.push(`guy crazy. They discuss nothing else together, and their discussions frequently turn into makeouts and then mutual masturbation.`); + break; + case "fitness": + r.push(`fitness fanatics, and being together feels natural for them, since they've already worked out together often enough.`); + break; + case "insecure": + r.push(`very insecure. Perhaps unsurprisingly, they soon grow to depend on each other, each relying on their partner to support their low self-esteem.`); + break; + case "sinful": + if (V.arcologies[0].FSChattelReligionist === "unset") { + r.push(`eagerly sinful, and they grow close by opening up and sharing their fraught histories of faith with each other.`); + } else { + r.push(`fanatical about being slave acolytes of the new faith, and their partnership is strengthened by their belief that it's divinely ordained.`); + } + break; + case "advocate": + r.push(`advocates for slavery. Not only do they share this, but they believe that your orders are good for them, including your order that they be together.`); + } + } else { + r.push(`They approach life as slaves differently, and it's <span class="gold">tough for them to reconcile their differences over their values.</span>`); + slave.trust -= 10; + subSlave.trust -= 10; + } + + return frag; + } +}; diff --git a/src/npc/interaction/passage/matchmaking.tw b/src/npc/interaction/passage/matchmaking.tw deleted file mode 100644 index b433eac905aa57a756e60b559b3b34413e0b3422..0000000000000000000000000000000000000000 --- a/src/npc/interaction/passage/matchmaking.tw +++ /dev/null @@ -1,194 +0,0 @@ -:: Matchmaking [nobr] - -<<if lastVisited("Child Interact") === 1>> - <<set $nextLink = "Incubator">> -<<else>> - <<set $nextLink = "Slave Interact">> -<</if>> -<<set $nextButton = "Continue">> - -<<if $subSlave == 0>> - -<<set $desc = SlaveTitle(getSlave($AS))>> -<<set _belly = bellyAdjective(getSlave($AS))>> -<<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<setPlayerPronouns>> -<<setAssistantPronouns>> - -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt getSlave($AS) 2 0>> - </div> -<</if>> -/* 000-250-006 */ - -You order <<= getSlave($AS).slaveName>> to come to your office. The <<if getSlave($AS).relationship == -2>>worshipful<<else>>slutty<</if>> $desc arrives promptly, greets you correctly, and waits <<if getSlave($AS).relationship == -2>>adoringly for a command<<else>>eagerly for you to fuck $him<</if>>. You consider the situation carefully. -<<if getSlave($AS).relationship == -2>> - $He's emotionally bonded to you, and loves you with all $his heart. $He would probably do anything you command and love you all the more for it. If you were to decide that you were tired of $his adoration, you could probably set $him up with another similarly broken slave. If you ordered them to love each other like they love you, they'd obey. -<<else>> - $He's an emotional slut, and worships you and values $himself primarily in terms of sex. $He's such a perfect sex slave that $he'd probably fuck anyone or anything you told $him to, and love you all the more for giving $him the chance. If you were to decide that even a sex slave like $him needs a little more structure than constant omnisexual lust, you could probably set $him up with another universal slut. -<</if>> -Their relationship would probably be somewhat artificial at first, and they'd have to struggle at it, but after a period of adjustment, you'd have two worshipful slaves again, except that they'd be together. It'd definitely help if they had compatible behavioral quirks and sexual fetishes. -<br><br> - -<span id="result"> - -<<if $seeImages == 1>><br style="clear:both"><</if>> - -<br><br>__Put $him with another worshipful <<if getSlave($AS).relationship == -2>>emotionally bonded slave<<else>>emotional slut<</if>>:__ -<<includeDOM App.UI.SlaveList.slaveSelectionList( - s => s.devotion >= 100 && s.relationship === getSlave($AS).relationship && s.ID !== $AS, - App.UI.SlaveList.SlaveInteract.stdInteract, - null, - (s) => App.UI.DOM.passageLink('Match them', 'Matchmaking', () => { variables().subSlave = s; }) -)>> -</span> - -<<else>> - -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageColumn"> - <div class="imageRef medImg"> - <<SlaveArt getSlave($AS) 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - </div> -<</if>> -/* 000-250-006 */ - -<<setLocalPronouns $subSlave 2>> - -You decide to set <<= getSlave($AS).slaveName>> up with $subSlave.slaveName. Telling the former to wait, you have the latter hurry up to your office. When the <<if getSlave($AS).relationship == -2>>slaves are waiting adoringly<<else>>sluts are waiting with barely concealed lust<</if>> in front of your desk together, you inform them of your decision. -<<if getSlave($AS).relationship == -2>> - You commend their love for you, and let them know that it's all right for it to continue, but command them to love each other, too. They look doubtful, but at your orders they obediently take each other by the hand, and share a kiss. It will do for now. You assign them to live together as much as possible for a few days, and inform them that you'll be limiting your personal contact with them during this period. They give you identical looks of horror, and fail to notice how much of a perfect couple they already are. -<<else>> - You praise their total commitment to sexual slavery, and let them know they'll continue to be sex slaves, but tell them that it's time for them to settle down. They give you identical looks of horror, and fail to notice how much of a perfect couple they already are. Patiently, you explain that their sex lives will remain more or less unchanged; just because two slaves are together doesn't mean they can't and won't have sex with other people. They look doubtful, but cheer up when you inform them that they'll be spending a lot of alone time together for a few days. -<</if>> -<br><br> -Being ordered into a relationship would be difficult for anyone, but they're so obedient that @@.lightgreen;they do their best and make it work.@@ You ensure that they do, and your determined efforts to do so @@.mediumorchid;reduce their devotion to you,@@ though it's mostly by redirection towards each other. And in any case, they remain devoted enough, and will likely return to their earlier worshipfulness in a few weeks at most. -<<set _matched = 1>> -<<if (getSlave($AS).fetish == "submissive") && ($subSlave.fetish == "dom")>> - $subSlave.slaveName is a dom and <<= getSlave($AS).slaveName>> is a sub. It's a match out of bad fiction. -<<elseif ($subSlave.fetish == "submissive") && (getSlave($AS).fetish == "dom")>> - <<= getSlave($AS).slaveName>> is a dom and $subSlave.slaveName is a sub. It's a match out of bad fiction. -<<elseif (getSlave($AS).fetish == "masochist") && ($subSlave.fetish == "sadist")>> - $subSlave.slaveName is a sadist and <<= getSlave($AS).slaveName>> is a masochist. They're a perfect ouroboros of agony. -<<elseif ($subSlave.fetish == "masochist") && (getSlave($AS).fetish == "sadist")>> - <<= getSlave($AS).slaveName>> is a sadist and $subSlave.slaveName is a masochist. They're a perfect ouroboros of agony. -<<elseif (getSlave($AS).fetish == "cumslut") && ($subSlave.balls > 0)>> - $subSlave.slaveName has balls and <<= getSlave($AS).slaveName>> has the appetite to drain them of every drop of cum. -<<elseif ($subSlave.fetish == "cumslut") && (getSlave($AS).balls > 0)>> - <<= getSlave($AS).slaveName>> has balls and $subSlave.slaveName has the appetite to drain them of every drop of cum. -<<elseif (getSlave($AS).fetish == "humiliation") && ($subSlave.fetish == "sadist")>> - <<= getSlave($AS).slaveName>> loves to be humiliated, and $subSlave.slaveName can definitely get off on another $girl's shame. -<<elseif ($subSlave.fetish == "humiliation") && (getSlave($AS).fetish == "sadist")>> - $subSlave.slaveName loves to be humiliated, and <<= getSlave($AS).slaveName>> can definitely get off on another _girl2's shame. -<<elseif (getSlave($AS).fetish == "buttslut") && ($subSlave.fetish == "dom")>> - $subSlave.slaveName likes fucking other girls, so once <<= getSlave($AS).slaveName>> asks _him2 to just do it to $his ass all the time, they're both happy. -<<elseif ($subSlave.fetish == "buttslut") && (getSlave($AS).fetish == "dom")>> - <<= getSlave($AS).slaveName>> likes fucking other girls, so once $subSlave.slaveName asks $him to just do it to _his2 ass all the time, they're both happy. -<<elseif (getSlave($AS).fetish == "boobs") && ($subSlave.boobs > 4000)>> - <<= getSlave($AS).slaveName>> fetishized breasts so much that $he thinks $subSlave.slaveName's udders are one of the sexiest things $he's ever seen. -<<elseif ($subSlave.fetish == "boobs") && (getSlave($AS).boobs > 4000)>> - $subSlave.slaveName fetishized breasts so much that _he2 thinks <<= getSlave($AS).slaveName>>'s udders are one of the sexiest things _he2's ever seen. -<<elseif (getSlave($AS).fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.bellyPreg >= 300000 && getSlave($AS).bellyPreg >= 300000>> - <<= getSlave($AS).slaveName>> and $subSlave.slaveName are both enormously laden with children, much to the other's delight. They can't wait to explore each other's baby filled middle. -<<elseif (getSlave($AS).fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.preg > $subSlave.pregData.normalBirth/2 && getSlave($AS).preg > getSlave($AS).pregData.normalBirth/2>> - <<= getSlave($AS).slaveName>> and $subSlave.slaveName are both heavily pregnant, much to the other's delight. -<<elseif ($subSlave.fetish == "pregnancy") && getSlave($AS).bellyPreg >= 300000>> - $subSlave.slaveName fetishizes pregnant bellies so much that _he2 is awestruck by <<= getSlave($AS).slaveName>>'s enormous, baby filled middle. -<<elseif (getSlave($AS).fetish == "pregnancy") && $subSlave.bellyPreg >= 300000>> - <<= getSlave($AS).slaveName>> fetishizes pregnant bellies so much that $he is awestruck by $subSlave.slaveName's enormous, baby filled middle. -<<elseif ($subSlave.fetish == "pregnancy") && getSlave($AS).preg > getSlave($AS).pregData.normalBirth/2>> - $subSlave.slaveName fetishizes pregnant bellies so much that _he2 thinks <<= getSlave($AS).slaveName>> gravid middle is one of the sexiest things _he2's ever seen. -<<elseif (getSlave($AS).fetish == "pregnancy") && $subSlave.preg > $subSlave.pregData.normalBirth/2>> - <<= getSlave($AS).slaveName>> fetishizes pregnant bellies so much that $he thinks $subSlave.slaveName's gravid middle is one of the sexiest things $he's ever seen. -<<elseif (getSlave($AS).fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.bellyPreg >= 100 && getSlave($AS).bellyPreg >= 100>> - <<= getSlave($AS).slaveName>> and $subSlave.slaveName are both pregnant and just beginning to show. They'll both be able to enjoy the other's swelling body. -<<elseif (getSlave($AS).fetish == "pregnancy") && canAchieveErection($subSlave)>> - <<= getSlave($AS).slaveName>> can indulge the fantasy that $he's getting pregnant each and every time $subSlave.slaveName cums inside $him. -<<elseif ($subSlave.fetish == "pregnancy") && canAchieveErection(getSlave($AS))>> - $subSlave.slaveName can indulge the fantasy that _he2's getting pregnant each and every time <<= getSlave($AS).slaveName>> cums inside _him2. -<<else>> - <<set _matched = 0>> -<</if>> -<<if _matched == 1>> - Their sexual compatibility is excellent, and they @@.mediumaquamarine;trust you more@@ for matching them so perfectly. - <<set getSlave($AS).trust += 10>> - <<set $subSlave.trust += 10>> -<<elseif getSlave($AS).fetish == $subSlave.fetish>> - They're a couple of - <<switch getSlave($AS).fetish>> - <<case "submissive">> - cringing submissives, - <<case "cumslut">> - hungry oral fiends, - <<case "humiliation">> - public sex aficionados, - <<case "buttslut">> - shameless anal whores, - <<case "boobs">> - breast obsessives, - <<case "pregnancy">> - breeding bitches, - <<case "dom">> - dominating spirits, - <<case "sadist">> - inveterate sadists, - <<case "masochist">> - pain sluts, - <<default>> - vanilla girls, - <</switch>> - and they bond over their shared sexual tastes, easing their acclimation to having another slave play a major role in their sex lives. They're almost as happy sharing stories about their past sexual exploits as they are actually having sex. -<<else>> - Their fetishes aren't very compatible, and though as a couple of inventive nymphos they do their absolute best to fuck each other senseless, they @@.gold;trust you a less@@ out of doubt in the sexual match. - <<set getSlave($AS).trust -= 10>> - <<set $subSlave.trust -= 10>> -<</if>> -<<if getSlave($AS).behavioralQuirk == $subSlave.behavioralQuirk && getSlave($AS).behavioralQuirk != "none">> - They're both - <<switch getSlave($AS).behavioralQuirk>> - <<case "confident">> - confident, and soon come to an understanding that they'll be able to <<if getSlave($AS).relationship == -2>>serve you better together<<else>>fuck third parties better as a pair<</if>>. - <<case "cutting">> - witty, and each quickly discovers that their new partner can hold up their end of a battle of quips. Their loving snippiness develops rapidly, and it's pretty cute. - <<case "funny">> - a little weird. It takes a while for them to adjust to how funny their new partner is, but they learn to support each other soon enough. - <<case "adores women">> - pretty crazy about ladies. They're both slave girls themselves, which helps, and they've also got a never-ending parade of female bodies to discuss together. - <<case "adores men">> - guy crazy. They discuss nothing else together, and their discussions frequently turn into makeouts and then mutual masturbation. - <<case "fitness">> - fitness fanatics, and being together feels natural for them, since they've already worked out together often enough. - <<case "insecure">> - very insecure. Perhaps unsurprisingly, they soon grow to depend on each other, each relying on their partner to support their low self-esteem. - <<case "sinful">> - <<if $arcologies[0].FSChattelReligionist == "unset">> - eagerly sinful, and they grow close by opening up and sharing their fraught histories of faith with each other. - <<else>> - fanatical about being slave acolytes of the new faith, and their partnership is strengthened by their belief that it's divinely ordained. - <</if>> - <<case "advocate">> - advocates for slavery. Not only do they share this, but they believe that your orders are good for them, including your order that they be together. - <</switch>> -<<else>> - They approach life as slaves differently, and it's @@.gold;tough for them to reconcile their differences over their values.@@ - <<set getSlave($AS).trust -= 10>> - <<set $subSlave.trust -= 10>> -<</if>> - -<<set $subSlave.relationship = 4>> -<<set $subSlave.relationshipTarget = $AS>> -<<set $subSlave.devotion -= 20>> -<<set getSlave($AS).relationship = 4>> -<<set getSlave($AS).relationshipTarget = $subSlave.ID>> -<<set getSlave($AS).devotion -= 20>> - -<<set $slaves[$slaveIndices[$subSlave.ID]] = $subSlave>> - -<</if>> diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index d9892207f7a09106fa15b875861cada7108dc621..6d8a0a0fbbc4ccea21aec518bd38f24f7bdc7d96 100644 --- a/src/npc/startingGirls/startingGirls.js +++ b/src/npc/startingGirls/startingGirls.js @@ -780,7 +780,7 @@ App.StartingGirls.physical = function(slave, cheat = false) { () => { slave[limb][side] = null; }, - passage() + "" ); if (cheat && slave.PLimb) { option.addValueList([ @@ -799,7 +799,7 @@ App.StartingGirls.physical = function(slave, cheat = false) { () => { slave[limb][side] = new App.Entity.LimbState(); }, - passage() + "" ); } } @@ -901,7 +901,7 @@ App.StartingGirls.upper = function(slave, cheat = false) { ]); option.addValue("Cybernetic", 3, () => eyeSurgery(slave, side, "cybernetic")); if (V.seeExtreme === 1) { - option.customButton("Remove eye", () => eyeSurgery(slave, side, "remove"), passage()); + option.customButton("Remove eye", () => eyeSurgery(slave, side, "remove"), ""); } } option = options.addOption(`${capFirstChar(side)} pupil shape`, "pupil", slave.eye[side]) @@ -1089,7 +1089,7 @@ App.StartingGirls.upper = function(slave, cheat = false) { ["Partially Inverted", "partially inverted"], ["Tiny", "tiny"], ["Cute", "cute"], - ["fuckable", "fuckable"], + ["Fuckable", "fuckable"], ]); if (slave.boobsImplant / slave.boobs >= 0.90) { option.addValue("Flat", "Cute"); @@ -2000,7 +2000,7 @@ App.StartingGirls.stats = function(slave) { ["PCKnockedUp", "Times knocked up PC"], ["bestiality", "Bestiality"] ]); - options.addOption("Set all counters to 0", "counter", slave).customButton("Reset", () => slave.counter = new App.Entity.SlaveActionsCountersState(), passage()); + options.addOption("Set all counters to 0", "counter", slave).customButton("Reset", () => slave.counter = new App.Entity.SlaveActionsCountersState(), ""); for (const key of counters) { const title = titles.get(key) || capFirstChar(key); options.addOption(title, key, slave.counter) diff --git a/src/npc/surgery/surgeryDegradation.js b/src/npc/surgery/surgeryDegradation.js index 616a096c4a54d4d8e940c96f4f19a98f01c198d3..e6c0bd91bb2dba359403a207a08fcc33e1b4ffbd 100644 --- a/src/npc/surgery/surgeryDegradation.js +++ b/src/npc/surgery/surgeryDegradation.js @@ -3908,7 +3908,7 @@ slave.devotion -= 5; slave.devotion -= 5; } if (isFertile(slave) && slave.preg === 0) { - r.push(knockMeUp(slave, 100, 2, slave.ID, 1)); + knockMeUp(slave, 100, 2, slave.ID); r.push(`${He} doesn't even have the chance to reach the slave quarters before ${his} new reproductive system detects ${his} unprotected fertility and begins to internally cum.`); if (canWalk(slave)) { r.push(`${He} struggles to stand as wave after wave of pleasure radiates from inside ${his} self-fertilizing womb.`); @@ -4913,7 +4913,7 @@ slave.devotion -= 5; statusChanges.push(`${He} feels a little <span class="orange">younger.</span>`); slave.visualAge -= 1; } - if (slave.voice > 0 && slave.voice < 3) { + if (slave.voice.isBetween(0, 3)) { voiceLevel = "girly"; if (slave.voice < 2) { voiceLevel = "feminine"; diff --git a/src/personalAssistant/assistantAppearance.js b/src/personalAssistant/assistantAppearance.js index 54987cad389a99201aec3a2929b05bc30889b349..57882d1df60f4701f48ae6c2ef7cfcea67c6e3b9 100644 --- a/src/personalAssistant/assistantAppearance.js +++ b/src/personalAssistant/assistantAppearance.js @@ -1207,7 +1207,7 @@ globalThis.PersonalAssistantAppearance = function() { "supremacist": `belly wearing a cute yellow dress. ${HeA} cradles ${hisA} swollen belly protectively, glowing with pride at carrying ${addA(V.arcologies[0].FSSupremacistRace)} child.`, "subjugationist": `belly, wearing nothing but a pregnancy biometrics collar. The collar's display reads 'Carrying 2 more ${V.arcologies[0].FSSubjugationistRace} subhumans!', something the ${girlA} occasionally reads aloud to ${himselfA}.`, "roman revivalist": `belly wearing a ${girlA}'s stola.`, - "neoimperialist": `${girlA} wearing a tiny elementary schooler's uniform, complete with miniature plaid skirt. ${HisA} belly swells underneath the cotton shirt.`, + "neoimperialist": `belly wearing a tiny elementary schooler's uniform, complete with miniature plaid skirt. ${HisA} belly swells underneath the cotton shirt.`, "aztec revivalist": `belly wearing only an overshirt which struggles to cover ${hisA} rounded middle; ${hisA} cute little legs are complimented by ${hisA} twin tails.`, "egyptian revivalist": `belly wearing a bulging white linen dress, kohl eye shadow and sandals.`, "edo revivalist": `belly wearing a kimono far too large for ${himselfA} but does nothing to distract from ${hisA} swollen midriff.`, @@ -1234,7 +1234,7 @@ globalThis.PersonalAssistantAppearance = function() { "statuesque glorification": `belly wearing a too small dress. ${HeA}'s growing up fast and, given the size of ${hisA} belly, so is ${hisA} child.`, }, "fairy": { - "eugenics": ``, // TODO: missing, please write. + "eugenics": `fairy wearing ${hisA} birthday suit, since ${heA} is so flawless ${heA} needs nothing else.`, "paternalist": `fairy wearing a well-sewn blue dress, with a large red bow tied to the back of ${hisA} waist length golden-blonde hair. ${HeA} looks like a little Bucuretsi doll.`, "degradationist": `fairy and completely unclothed, with ${hisA} hair in a mess and covered in dirt.`, "supremacist": `fairy with distinctly ${V.arcologies[0].FSSupremacistRace} features. ${HeA} has wrapped a golden ribbon around ${hisA} torso to fashion ${himselfA} a dress.`, @@ -1265,14 +1265,14 @@ globalThis.PersonalAssistantAppearance = function() { "statuesque glorification": `fairy wearing a simple dress. ${HeA}'s adjusted the length of ${hisA} dress to make it appear that ${heA} is taller than ${heA} really is.`, }, "pregnant fairy": { - "eugenics": ``, // TODO: missing, please write. + "eugenics": `wearing nothing but a band with insignia of the Elite emblazoned on it.`, "paternalist": `wearing a well-sewn blue dress, with a large red bow tied to the back of ${hisA} waist length golden-blonde hair. ${HeA} looks like a little Bucuresti doll.`, "degradationist": `and completely unclothed, with ${hisA} hair in a mess and covered in dirt.`, "supremacist": `and distinctly ${V.arcologies[0].FSSupremacistRace} features. ${HeA} has wrapped a golden ribbon around ${hisA} chest to create an improvised bra, and another under ${hisA} swollen belly to fashion a thong.`, "subjugationist": `and exaggerated ${V.arcologies[0].FSSubjugationistRace} features. ${HeA} is completely unclothed, with ${hisA} hair in a mess and covered in dirt.`, "roman revivalist": `wearing a small handkerchief wrapped around ${himA} like a toga, with one tiny milky breast sticking out. A wreath made of twisted clovers sits on ${hisA} head.`, - "neoimperialist": `fairy, ${hisA} tiny body encased in a tight-fitting, high-tech bodysuit. ${HisA} belly swells underneath the skintight material.`, - "aztec revivalist": `yellow paint creating tribal patterns across ${hisA} naked form and curving around ${hisA} swollen belly.`, + "neoimperialist": `whose tiny body is encased in a tight-fitting, high-tech bodysuit. ${HisA} belly swells underneath the skintight material.`, + "aztec revivalist": `smeared with yellow paint creating tribal patterns across ${hisA} naked form and curving around ${hisA} swollen belly.`, "egyptian revivalist": `wearing a simple white linen dress and has eye shadow poorly applied around ${hisA} eyes.`, "edo revivalist": `wearing a fine kimono and holding a little fan. ${HeA} looks like a little Hina doll.`, "arabian revivalist": `wearing a strip of silk as a dress.`, @@ -1412,7 +1412,7 @@ globalThis.PersonalAssistantAppearance = function() { }, "subjugationist": `${HisA} cartoonishly exaggerated ${V.arcologies[0].FSSubjugationistRace} body is just begging for a whipping, even when ${heA} isn't doing something mischievous and sneaky, which is rare.`, "roman revivalist": `${HeA}'d fit in perfectly tormenting the condemned in Tartarus.`, - "neoimperialist": `${HeA}'s bound himself up with high-tech holographic chains, reminiscent of a slave locked in your cellblocks with ${hisA} devilish features.`, + "neoimperialist": `${HeA}'s bound ${himselfA} up with high-tech holographic chains, reminiscent of a slave locked in your cellblocks with ${hisA} devilish features.`, "aztec revivalist": `${HeA}'s taken to carrying a pair of ceremonial daggers perfect for bloodletting and even an impromptu sacrifice. Two things ${heA} really enjoys performing.`, "egyptian revivalist": `${HeA} has recently adjusted ${hisA} appearance to resemble an Egyptian slave; that combined with a manufactured rebellious streak are sure to earn ${himA} a whipping.`, "edo revivalist": `${HeA} has tightly bound ${himselfA} in shibari ropes, although they don't achieve much given ${heA} can still fly freely.`, @@ -1521,7 +1521,7 @@ globalThis.PersonalAssistantAppearance = function() { "gender radicalist": `wearing nothing at all. Even though ${heA} lacks a penis, you can't shake the feeling that it's a trap.`, "gender fundamentalist": `full breasts, wide hips and wearing absolutely nothing. You swear ${hisA} tits are moving slightly and an unusual bulge can be seen writhing in ${hisA} lower belly.`, "asset expansionist": `wearing nothing at all; not that anything could fit ${himA}. ${HeA} is absolutely massive; ${hisA} breasts easily dwarfing the rest of ${hisA} body and quivering obscenely. Every so often, a bulge moves up a nipple as a wormlike creature is born into the world.`, - "transformation fetishist": `wearing nothing at all; not that anything could fit ${himA}. ${HisA} breasts and ass are splitting around the massive, round objects distending them. The orbs are slightly translucent; lots of small wormlike creatures can be seen squirming within inside.`, + "transformation fetishist": `wearing nothing at all; not that anything could fit ${himA}. ${HisA} breasts and ass are splitting around the massive, round objects distending them. The orbs are slightly translucent; lots of small wormlike creatures can be seen squirming within.`, "pastoralist": `wearing nothing at all; not that anything could fit ${himA}. ${HeA} is absolutely massive; ${hisA} breasts easily dwarfing the rest of ${hisA} body and quivering obscenely. An extremely dense, white liquid is steadily forcing its way from ${hisA} gaping nipples.`, "maturity preferentialist": `wearing nothing at all. ${HeA} seems to be quite old and vulnerable, but something feels off about ${himA}.`, get "youth preferentialist"() { diff --git a/src/player/electiveSurgery.js b/src/player/electiveSurgery.js new file mode 100644 index 0000000000000000000000000000000000000000..cc473307cb1d050e2e124167363e30c7cdcec309 --- /dev/null +++ b/src/player/electiveSurgery.js @@ -0,0 +1,913 @@ +App.UI.electiveSurgery = function() { + const el = document.createElement("div"); + const { + HeU, + heU, hisU + } = getNonlocalPronouns(V.seeDicks === 100 ? 100 : 0).appendSuffix("U"); + + App.Events.addParagraph(el, [ + `You arrive at your favorite plastic surgeon for your appointment to find them as busy as ever, but you find yourself quickly hurried into an exam room by their cute assistant. ${HeU} wastes no time in hurrying you into ${hisU} office, stripping you down, measuring you and making sure you are healthy enough for surgery, all the while not so subtly running ${hisU} hands across every part of you. "So, what can I help you with?"` + ]); + + face(); + skin(); + breasts(); + belly(); + butt(); + balls(); + vagina(); + ovaries(); + sexType(); + + return el; + + function face() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + App.Events.addNode(p, [ + `"You sure you want to mess with that lovely face?" ${heU} teases, caressing your cheek. "<span class="cash">${cashFormat(5000)}.</span> Also wouldn't recommend changing your eyes, face shape or skin color; some security systems get real uppity over things like that. Though I s'pose race and hair can fall under that as well, but hey, we don't handle racial surgery and this isn't a hair salon, so nothing to worry about, right? Yes, I'm certain your systems will recognize you after we finish working on you — give us some credit."` + ], "div"); + r.push(`You're <span class="intro question">${V.PC.actualAge} years old.</span>`); + if (V.PC.actualAge >= 65) { + if (V.PC.visualAge > V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look older.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else if (V.PC.visualAge < V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look younger.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else { + r.push(`You could benefit from a face lift.`); + if (V.PC.visualAge >= 25) { + linkArray.push(surgeryLink("Get a face lift", "ageDown", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + linkArray.push(surgeryLink("Remodel your face to appear older", "ageUp", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + } else if (V.PC.actualAge >= 50) { + if (V.PC.visualAge > V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look older.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else if (V.PC.visualAge < V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look younger.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else { + r.push(`You could benefit from a face lift.`); + if (V.PC.visualAge >= 25) { + linkArray.push(surgeryLink("Get a face lift", "ageDown", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + linkArray.push(surgeryLink("Remodel your face to appear older", "ageUp", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + } else if (V.PC.actualAge >= 35) { + if (V.PC.visualAge > V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look older.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else if (V.PC.visualAge < V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look younger.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else { + r.push(`You could go for a face lift, though making yourself look older could be useful.`); + if (V.PC.visualAge >= 25) { + linkArray.push(surgeryLink("Get a face lift", "ageDown", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + linkArray.push(surgeryLink("Remodel your face to appear older", "ageUp", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + } else { + if (V.PC.visualAge > V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look older.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else if (V.PC.visualAge < V.PC.actualAge) { + r.push(`You've had surgery to make yourself <span class="lime">look younger.</span>`); + linkArray.push(surgeryLink("Undo Facial surgery", "restoreFace", () => { + V.PC.faceImplant = 0; + V.PC.visualAge = V.PC.physicalAge; + cashX(forceNeg(5000), "PCmedical"); + })); + } else { + r.push(`You could undergo facial surgery to make yourself look older${(V.PC.visualAge >= 25) ? ", though you could also make yourself look even younger" : ""}.`); + if (V.PC.visualAge >= 25) { + linkArray.push(surgeryLink("Remodel your face to appear younger", "ageDown", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + linkArray.push(surgeryLink("Remodel your face to appear older", "ageUp", () => { + V.PC.faceImplant = 1; + cashX(forceNeg(5000), "PCmedical"); + })); + } + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + } + + function skin() { + const p = document.createElement("p"); + const r = []; + App.Events.addNode(p, [ + `"Your skin is beautiful as is, but we can change it if you want," ${heU} says, pulling a large tanning bed-like cart out of a closet. "<span class="cash">${cashFormat(2000)}.</span> This thing just came out of testing. I assure you it doesn't cause cancer anymore! But still, mind your security systems. We won't be held accountable if you get arrested for trying to enter your penthouse." ${HeU} looks a little worrisome, "Now, there are some side effects, and we will have to keep you under special care for a few days. It's similar to a severe sunburn, across your entire body, all of it, even down there. Now don't give me that look, we have special ointments to soothe the pain and have a little fun with." ${HeU} tosses you a wink alongside a hesitant giggle. "Now all your typical skin tones are preprogrammed into it, and with a couple button presses... There! I unlocked the option for custom hues. Now this thing is going to recolor your skin pigment permanently, so you might want to take it seriously. It'll all be on you if I choke with laughter ${(V.PC.dick !== 0) ? `sucking on your big polka-dotted cock` : `going down on your polka-dotted pussy`}!"` + ], "div"); + + r.push(`You have <span class="intro question">${V.PC.skin} skin.</span>`); + if (V.PC.skin !== V.PC.origSkin) { + r.push(`Your original skin tone was ${V.PC.origSkin}.`); + } + App.Events.addNode(p, r, "div"); + + const choiceDiv = document.createElement("div"); + const choices = new Map([]); + if (V.PC.skin !== V.PC.origSkin) { + choices.set(V.PC.origSkin, capFirstChar(`Restore natural ${V.PC.origSkin}`)); + } + for (const skin of App.Medicine.Modification.naturalSkins) { + choices.set(skin, capFirstChar(skin)); + } + + const select = document.createElement("select"); + let matchFound; + for (const [value, text] of choices) { + const option = document.createElement("option"); + option.text = text; + option.value = value; + if (V.PC.skin === option.value) { + option.selected = true; + matchFound = true; + } + select.append(option); + } + if (!matchFound) { + select.selectedIndex = -1; + } + select.onchange = () => { + V.PC.skin = select.options[select.selectedIndex].value; + cashX(forceNeg(2000), "PCmedical"); + showDegradation("skinTone"); + }; + + choiceDiv.append(select, " or custom ", App.UI.DOM.makeTextBox( + V.PC.skin, v => { + V.PC.skin = v; + cashX(forceNeg(2000), "PCmedical"); + showDegradation("skinTone"); + } + )); + p.append(choiceDiv); + el.append(p); + } + + function breasts() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + App.Events.addNode(p, [ + `"Maybe some breast work? I assure you they are lovely," ${heU} says as ${heU} brushes the back of your head with ${hisU} own pair. "<span class="cash">${cashFormat(5000)}</span> for a reduction, <span class="cash">${cashFormat(10000)}</span> for implants, that includes size ups, and <span class="cash">${cashFormat(15000)}</span> for additional breast tissue. That last one might as well be real!${(V.PC.boobs < 700) ? " With a little work, we can even remove a small amount of fat from your breasts to bring your cup size down without damaging their inner workings. Though we'll have to build them up some before we can stick reasonable implants into you." : ""}"` + ], "div"); + if (V.PC.boobs >= 1400) { + if (V.PC.boobsImplant > 0) { + r.push(`You have a <span class="intro question">pair of round H-cup breasts;</span> they are very obviously implants.`); + linkArray.push( + App.UI.DOM.disabledLink("Get the next size up", ["You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology."]), + breastReductionImplant() + ); + } else { + r.push(`You have a <span class="intro question">heavy H-cup bust.</span> They tend to sag a little when you free them from your top, though they have some perk to them.`); + linkArray.push( + App.UI.DOM.disabledLink("Add additional breast tissue", ["You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology."]), + breastShrinkageAbsolute(1300) + ); + } + } else if (V.PC.boobs >= 1200) { + if (V.PC.boobsImplant > 0) { + r.push(`You have a <span class="intro question">pair of rounded G-cup breasts;</span> they are a little too perky for their size to pass as natural.`); + linkArray.push( + breastEnlargementImplant(), + breastReductionImplant() + ); + } else { + r.push(`You have a <span class="intro question">huge G-cup bust.</span>`); + linkArray.push( + breastEnlargement(), + breastShrinkageRelative() + ); + } + } else if (V.PC.boobs >= 1000) { + if (V.PC.boobsImplant > 0) { + r.push(`You have a <span class="intro question">pair of perky F-cup breasts;</span> you can barely tell they are implanted.`); + linkArray.push( + breastEnlargementImplant(), + breastReductionImplant() + ); + } else { + r.push(`You have a <span class="intro question">hefty F-cup bust.</span>`); + linkArray.push( + breastEnlargement(), + breastShrinkageRelative() + ); + } + } else if (V.PC.boobs >= 800) { + r.push(`You have a <span class="intro question">big pair of DD-cup breasts.</span>`); + linkArray.push( + getImplants(), + breastEnlargement(), + breastShrinkageAbsolute(700), + flatChest() + ); + } else if (V.PC.boobs >= 650) { + r.push(`You have a <span class="intro question">pair of D-cup breasts.</span>`); + linkArray.push( + breastEnlargement(), + breastShrinkageAbsolute(600), + flatChest() + ); + } else if (V.PC.boobs >= 500) { + r.push(`You have a <span class="intro question">average pair of C-cup breasts.</span>`); + linkArray.push( + breastEnlargement(), + breastShrinkageAbsolute(400), + flatChest() + ); + } else if (V.PC.boobs >= 400) { + r.push(`You have a <span class="intro question">small pair of B-cup breasts.</span>`); + linkArray.push( + breastEnlargement(), + App.UI.DOM.disabledLink("Have fatty tissue removed", ["You lack sufficient fatty tissue to permit additional size reduction short of total breast removal"]), + flatChest() + ); + } else if (V.PC.boobs >= 300) { + r.push(`You have a <span class="intro question">small pair of A-cup breasts.</span>`); + linkArray.push( + breastEnlargement(100), + App.UI.DOM.disabledLink("Have fatty tissue removed", ["You lack sufficient fatty tissue to permit additional size reduction short of total breast removal"]), + flatChest() + ); + } else if (V.PC.title === 1) { + r.push(`You have a <span class="intro question">masculine chest.</span> At your request, breast tissue could be added until you have a healthy bust, though society is unlikely to approve.`); + linkArray.push(breasts()); + } else { + r.push(`<span class="intro question">You're flat.</span> "We can fix that, if you want."`); + linkArray.push(breasts()); + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + + function breastReductionImplant() { + return surgeryLink("Have your implants removed", "breastReductionImplant", () => { + V.PC.boobs -= V.PC.boobsImplant; + V.PC.boobsImplant = 0; + V.PC.boobsImplantType = "none"; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function breastEnlargementImplant() { + return surgeryLink("Get the next size up", "breastEnlargementImplant", () => { + V.PC.boobs += 200; + V.PC.boobsImplant += 200; + cashX(forceNeg(10000), "PCmedical"); + }); + } + + function breastEnlargement(boobGrowth = 200) { + return surgeryLink("Add additional breast tissue", "breastEnlargement", () => { + V.PC.boobs += boobGrowth; + cashX(forceNeg(15000), "PCmedical"); + }); + } + + function breastShrinkageRelative() { + return surgeryLink("Have tissue removed", "breastShrinkage", () => { + V.PC.boobs -= 200; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function getImplants() { + return surgeryLink("Get a pair of breast implants", "breastEnlargementImplant", () => { + V.PC.boobs += 200; + V.PC.boobsImplant += 200; + V.PC.boobsImplantType = "normal"; + cashX(forceNeg(10000), "PCmedical"); + }); + } + + /** + * + * @param {number} newSize + * @returns + */ + function breastShrinkageAbsolute(newSize) { + return surgeryLink("Have fatty tissue removed", "breastShrinkage", () => { + V.PC.boobs = newSize; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function flatChest() { + return surgeryLink("Have them removed", "flatChest", () => { + V.PC.boobs = 100; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function breasts() { + return surgeryLink("Get a pair of breasts", "breasts", () => { + V.PC.boobs = 650; + cashX(forceNeg(15000), "PCmedical"); + }); + } + } + + function belly() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + if (V.PC.belly >= 100 && V.PC.preg > 3) { + r.push(`${HeU} darts for your middle.`); + if (V.PC.belly >= 120000) { + r.push(`"My god! What happened to you? You might not want to hit the fertility drugs so hard next time. Then again, I don't think you'll see us complaining when you come in for a tummy tuck to get everything back where it used to be," ${heU} says with a wink as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-bursting belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`over-crowded belly.`); + } + } else if (V.PC.belly >= 110000) { + r.push(`"My god! What happened to you? You might not want to hit the fertility drugs so hard next time. Then again, I don't think you'll see us complaining when you come in for a tummy tuck to get everything back where it used to be," ${heU} says with a wink as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-stuffed belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`over-crowded belly.`); + } + } else if (V.PC.belly >= 95000) { + r.push(`Oh wow! It's like a party in there!" ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-stuffed belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`crowded belly.`); + } + } else if (V.PC.belly >= 80000) { + r.push(`You must feel so full, like all the time. What's it feel like? Do they ever calm down?" ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-filled belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`crowded belly.`); + } + } else if (V.PC.belly >= 64000) { + r.push(`Oh wow! You're immense! I almost can't wrap my arms around it!" ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-filled belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`crowded belly.`); + } + } else if (V.PC.belly >= 48000) { + r.push(`"Oh wow! You're gigantic! Are you sure you want to have surgery in this state? Things start to get complicated when you're this pregnant," ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-filled belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`crowded belly.`); + } + } else if (V.PC.belly >= 32000) { + r.push(`"My word, are you sure you want to have surgery in this state? You're gigantic! Plus things start to get complicated when you're this pregnant," ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue ${pregNumberName(V.PC.pregType, 1)}-filled belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`crowded belly.`); + } + } else if (V.PC.belly >= 16000) { + r.push(`"My word, are you sure you want to have surgery in this state? You're giant!" ${heU} says as ${heU} uses both hands to massage your`); + if (V.PC.preg > 40) { + r.push(`overdue belly, enjoying the kicks from your ${(V.PC.pregType > 1) ? "children" : "child"} within. "If you go into labor, we have everything you'll need, so don't worry."`); + } else { + r.push(`belly, taking note of the extra occupants.`); + } + } else if (V.PC.belly >= 14000) { + r.push(`"Wow, are you going to be ok? That looks really heavy," ${heU} says as ${heU} uses both hands to grope your massive belly, paying extra attention to your navel. "Are you sure you don't want to take a seat?"`); + } else if (V.PC.belly >= 12000) { + r.push(`"You're huge! Look at that adorable navel!" ${heU} says as ${heU} uses both hands to grope your huge belly, paying extra attention to your navel.`); + } else if (V.PC.belly >= 10000) { + r.push(`"Look how big you are!" ${heU} says as ${heU} uses both hands to grope your huge belly.`); + } else if (V.PC.belly >= 7000) { + r.push(`"You're getting so big!" ${heU} says as ${heU} uses both hands to massage your big pregnant belly.`); + } else if (V.PC.belly >= 5000) { + r.push(`"You're getting so big!" ${heU} says as ${heU} uses both hands to massage your pregnant belly.`); + } else if (V.PC.belly >= 3000) { + r.push(`"Looks like fun!" ${heU} says as ${heU} uses both hands to rub your pregnant belly.`); + } else if (V.PC.belly >= 1500) { + r.push(`"Awwww, you're getting soo big!" ${heU} says as ${heU} rubs your pregnant belly.`); + } else if (V.PC.belly >= 500) { + r.push(`"Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," ${heU} says as ${heU} pats your rounded middle.`); + } else if (V.PC.belly >= 300) { + r.push(`"Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," ${heU} says as ${heU} rubs your slightly rounded middle.`); + } else if (V.PC.belly >= 100) { + r.push(`"Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," ${heU} says as ${heU} rubs your slightly swollen belly. No denying it now.`); + } + } else if (V.PC.belly >= 100 && V.PC.preg < 1) { + r.push(`${HeU} pinches your belly. "How about a tummy tuck? We can smooth this right out, cheaply too, <span class="cash">${cashFormat(500)}.</span>" ${HeU} lets your saggy middle flop back to its usual drooping state.`); + linkArray.push(surgeryLink("Firm up your stomach", "tummyTuck", () => { + V.PC.belly = 0; + cashX(forceNeg(500), "PCmedical"); + })); + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + } + + function butt() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + App.Events.addNode(p, [`"How about a new butt?" ${heU} says as ${heU} wiggles ${hisU} own at you. "Same prices as the breasts."`], "div"); + if (V.PC.butt >= 5) { + if (V.PC.buttImplant >= 1) { + r.push(`You have an <span class="intro question">enormous, round, hard butt;</span> it is very obviously a pair of huge implants.`); + linkArray.push( + App.UI.DOM.disabledLink("Get the next size up", ["You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology."]), + buttReductionImplantRemove() + ); + } else { + r.push(`You have an <span class="intro question">enormous, jiggly butt.</span>`); + linkArray.push( + App.UI.DOM.disabledLink("Add additional fatty tissue", ["You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology."]), + buttShrinkage() + ); + } + } else if (V.PC.butt >= 4) { + if (V.PC.buttImplant >= 1) { + r.push(`You have a <span class="intro question">huge, round, firm butt;</span> it's easily identifiable as fake.`); + linkArray.push( + buttEnlargementImplant(), + buttReductionImplantRemove() + ); + } else { + r.push(`You have a <span class="intro question">huge, soft butt.</span>`); + linkArray.push( + buttEnlargement(), + buttShrinkage() + ); + } + } else if (V.PC.butt >= 3) { + if (V.PC.buttImplant >= 1) { + r.push(`You have a <span class="intro question">big firm butt;</span> anyone that feels it can tell it's fake, but at a glance you can't tell otherwise.`); + linkArray.push( + buttEnlargementImplant(), + buttReductionImplantRemove() + ); + } else { + r.push(`You have a <span class="intro question">big butt.</span>`); + linkArray.push( + buttEnlargement(), + buttShrinkage() + ); + } + } else { + r.push(`You have a <span class="intro question">cute, but normal butt.</span> At your request, fat could be added until you have a healthy rear; alternatively, a pair of implants could be inserted instead.`); + linkArray.push( + surgeryLink("Get a pair of butt implants", "buttEnlargementImplant", () => { + V.PC.butt += 1; + V.PC.buttImplant += 1; + V.PC.buttImplantType = "normal"; + cashX(forceNeg(10000), "PCmedical"); + }), + buttEnlargement(), + ); + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + + function buttReductionImplantRemove() { + return surgeryLink("Have your implants removed", "buttReductionImplant", () => { + V.PC.butt -= V.PC.buttImplant; + V.PC.buttImplant = 0; + V.PC.buttImplantType = "none"; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function buttShrinkage() { + return surgeryLink("Have fat removed", "buttShrinkage", () => { + V.PC.butt -= 1; + cashX(forceNeg(5000), "PCmedical"); + }); + } + + function buttEnlargementImplant() { + return surgeryLink("Get the next size up", "buttEnlargementImplant", () => { + V.PC.butt += 1; + V.PC.buttImplant += 1; + cashX(forceNeg(10000), "PCmedical"); + }); + } + + function buttEnlargement() { + return surgeryLink("Add additional fatty tissue", "buttEnlargement", () => { + V.PC.butt += 1; + cashX(forceNeg(15000), "PCmedical"); + }); + } + } + + function balls() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + if (V.PC.balls !== 0 && V.PC.scrotum !== 0) { + App.Events.addNode(p, [ + `"We could add gel around your testes to make your balls look bigger. Would also dampen any impacts to them as well, if that is anything to consider," ${heU} says, running a finger down the length of your shaft. "<span class="cash">${cashFormat(7500)}</span> for draining and <span class="cash">${cashFormat(12000)}</span> for filling, it's not the most simple procedure, you know? Anyway, they'll be very obvious, if that turns you on." ${HeU} takes another look at you before offering another option. "Of course, if you want bigger balls in a <i>functional</i> sense, we can do that too. The doctor's research in advanced targeted growth hormones has shown promising results in test subjects, and he's been able to use them successfully on a few citizen patients so far. A direct injection of hormones, and your testes will grow on their own. Unlike the cosmetic gel, there's no easily reversing this treatment, unless you are willing to subject yourself to slave drugs. It's expensive too, for the high quality drugs you want; <span class="cash">${cashFormat(25000)}</span> for one round of therapy. I should also warn you that repeated doses tend to have an increased effect."` + ], "div"); + if (V.PC.balls >= 30) { + r.push(`You have a <span class="intro question">monstrous, massive pair of balls</span> roughly the size of small watermelons; it's impossible to sit normally, so you've had to buy special chairs, you've given up on wearing pants, and they're so obvious that people probably assume they're fake, but every slave you fuck gets to really feel the load you pump into them, and you love it.`); + if (V.PC.ballsImplant) { + linkArray.push( + surgeryLink("Have gel extracted", "ballShrinkage", () => { + V.PC.balls = 14; + V.PC.ballsImplant = 11; + cashX(forceNeg(7500), "PCmedical"); + }), + surgeryLink("Have a lot of gel extracted", "ballBigShrinkage", () => { + V.PC.balls = 5; + V.PC.ballsImplant = 2; + cashX(forceNeg(7500), "PCmedical"); + }), + ); + } + } else if (V.PC.balls >= 14) { + r.push(`You have an <span class="intro question">enormous, heavy pair of balls</span> roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone can tell they are fake, but every slave you fuck gets a distinct slap with each thrust and you love it.`); + linkArray.push(App.UI.DOM.disabledLink("Have even more gel added", ["You're beginning to have trouble moving around and using furniture thanks to your over-sized nuts, even bringing your legs together is a pain; any bigger and they might seriously impede your ability to run your arcology, or walk, for that matter."])); + if (V.PC.ballsImplant) { + linkArray.push( + surgeryLink("Have even more gel added", "ballEnlargement", () => { + V.PC.balls = 30; + V.PC.ballsImplant = 27; + cashX(forceNeg(15000), "PCmedical"); + }), + surgeryLink("Have gel extracted", "ballShrinkage", () => { + V.PC.balls = 9; + V.PC.ballsImplant = 6; + cashX(forceNeg(7500), "PCmedical"); + }), + ); + } else { + linkArray.push(surgeryLink("Get another round of growth hormones anyway", "ballEnlargementHorm", () => { + V.PC.balls = 30; + cashX(forceNeg(15000), "PCmedical"); + })); + } + } else if (V.PC.balls >= 9) { + r.push(`You have a <span class="intro question">huge pair of balls</span> roughly the size of softballs; they make quite a bulge in your clothes and dangle heavily any other time.`); + if (V.PC.ballsImplant) { + linkArray.push( + surgeryLink("Have more gel added", "ballEnlargement", () => { + V.PC.balls = 14; + V.PC.ballsImplant = 11; + cashX(forceNeg(15000), "PCmedical"); + }), + surgeryLink("Have gel extracted", "ballShrinkage", () => { + V.PC.balls = 5; + V.PC.ballsImplant = 2; + cashX(forceNeg(7500), "PCmedical"); + }), + ); + } else { + linkArray.push(surgeryLink("Get another round of growth hormones", "ballEnlargementHorm", () => { + V.PC.balls = 14; + cashX(forceNeg(15000), "PCmedical"); + })); + } + } else if (V.PC.balls >= 5) { + r.push(`You have a <span class="intro question">large pair of balls;</span> you can certainly feel them as you move.`); + if (V.PC.ballsImplant) { + linkArray.push( + surgeryLink("Have more gel added", "ballEnlargement", () => { + V.PC.balls = 9; + V.PC.ballsImplant = 6; + cashX(forceNeg(15000), "PCmedical"); + }), + surgeryLink("Have gel extracted", "ballShrinkage", () => { + V.PC.balls = 3; + V.PC.ballsImplant = 0; + cashX(forceNeg(7500), "PCmedical"); + }), + ); + } else { + linkArray.push(surgeryLink("Get another round of growth hormones", "ballEnlargementHorm", () => { + V.PC.balls = 9; + cashX(forceNeg(15000), "PCmedical"); + })); + } + } else { + r.push(`You have a <span class="intro question">normal, uneventful pair of balls.</span>`); + linkArray.push( + surgeryLink("Get hormone treatment", "ballEnlargementHorm", () => { + V.PC.balls = 5; + cashX(forceNeg(15000), "PCmedical"); + }), + surgeryLink("Have the gel added", "ballEnlargement", () => { + V.PC.balls = 5; + V.PC.ballsImplant = 2; + cashX(forceNeg(15000), "PCmedical"); + }), + ); + } + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + } + + function vagina() { + const p = document.createElement("p"); + const r = []; + if (V.PC.vagina >= 3 && V.PC.newVag === 0) { + r.push(`"Looking a little loose down there; I can fix that for you. Get you nice and tight again. Oh, and our pussies are guaranteed to not lose their tightness, or your money back! <span class="cash">${cashFormat(15000)}</span> for a brand new vagina."`); + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", surgeryLink("Get a tighter vagina", "tightPussy", () => { + V.PC.vagina = 1; + V.PC.newVag = 1; + cashX(forceNeg(15000), "PCmedical"); + }))); + } + + el.append(p); + } + + function ovaries() { + const p = document.createElement("p"); + const r = []; + if (V.PC.preg === -2 && V.PC.physicalAge < 70) { + r.push(`Now we can only do this so many times before your body just can't handle it, but if you absolutely must have a child with your, um, vintage, then we can do something for you. For <span class="cash">${cashFormat(50000)},</span> we can clone and replace your depleted ovaries with slightly younger ones. They'll get you a couple more years of ovulation before they dry up too, but if you're desperate for a child, they may be your last option.`); + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", surgeryLink("Regenerate your ovaries and cheat menopause for a couple more years", "ovulationRestart", () => { + V.PC.ovaryAge = 45; + V.PC.preg = 0; + cashX(forceNeg(50000), "PCmedical"); + }))); + } + el.append(p); + } + + function sexType() { + const p = document.createElement("p"); + const r = []; + const linkArray = []; + App.Events.addNode(p, [ + `"Now, if what you are looking for is sex reassignment surgery, that's going to be more complicated. Personally I think you are fine the way you are, but if you insist on paying me, I won't say no to it. We'll need to take a DNA sample to clone the required organs, and that will take some time to complete, so tell me early if this is what you really want. I've had a few patients seeking a working set of both sexes, so if that gets you off, it is an option. As for prices, <span class="cash">${cashFormat(50000)}</span> for a sex swap, <span class="cash">${cashFormat(150000)}</span> to be a fully functional herm, oh and <span class="red">breasts are not included unless you undergo a full body remodeling.</span> You'll have to set up another appointment for that, however. Oh, and I guess <span class="cash">${cashFormat(25000)}</span> is fair for having a sex organ removed, if you have both. It's a very invasive procedure, as we will be near completely remodeling your body. I assure you, we do such fantastic work that no one will know you weren't naturally born that way! Oh, and due to the extent of the surgery, we will not perform the procedure if you are pregnant; please clean yourself out before you arrive."` + ], "div"); + if (V.PC.preg > 0) { + r.push(`${HeU} pokes your belly. "You're pregnant. What did I tell you?"`); + } else { + if (V.PC.dick !== 0 && V.PC.vagina !== -1) { + r.push(`You have working <span class="intro question">male and female reproductive organs</span> and a <span class="intro question">`); + if (V.PC.title > 0) { + r.push(`masculine`); + } else { + r.push(`feminine`); + } + r.push(`appearance.</span> "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!"`); + linkArray.push( + surgeryLink("Remove your male half", "herm2female", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 0; + V.PC.scrotum = 0; + V.PC.dick = 0; + V.PC.prostate = 0; + V.PC.counter.storedCum += 10; + cashX(forceNeg(25000), "PCmedical"); + }), + surgeryLink("Remove your female half", "herm2male", () => { + V.PC.vagina = -1; + V.PC.vaginaLube = 0; + V.PC.ovaries = 0; + V.PC.preg = 0; + WombFlush(V.PC); + cashX(forceNeg(25000), "PCmedical"); + }), + ); + if (V.PC.title > 0) { + linkArray.push(surgeryLink("Remove your male half completely", "herm2truefemale", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 0; + V.PC.scrotum = 0; + V.PC.dick = 0; + V.PC.prostate = 0; + V.PC.counter.storedCum += 10; + V.PC.title = 0; + generatePlayerPronouns(V.PC); + cashX(forceNeg(25000), "PCmedical"); + })); + } else { + linkArray.push(surgeryLink("Remove your female half completely", "herm2truemale", () => { + V.PC.vagina = -1; + V.PC.vaginaLube = 0; + V.PC.ovaries = 0; + V.PC.preg = 0; + WombFlush(V.PC); + V.PC.boobs = 100; + V.PC.boobsImplant = 0; + V.PC.title = 1; + generatePlayerPronouns(V.PC); + cashX(forceNeg(25000), "PCmedical"); + })); + } + } else if (V.PC.dick !== 0) { + r.push(`You have <span class="intro question">male genitalia</span> and a <span class="intro question">`); + if (V.PC.title > 0) { + r.push(`masculine`); + } else { + r.push(`feminine`); + } + r.push(`appearance.</span> "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!"`); + linkArray.push( + surgeryLink("Have your male organs replaced with female ones", "male2female", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 0; + V.PC.scrotum = 0; + V.PC.dick = 0; + V.PC.prostate = 0; + V.PC.vagina = 1; + V.PC.newVag = 1; + V.PC.vaginaLube = 1; + V.PC.ovaries = 1; + cashX(forceNeg(50000), "PCmedical"); + }), + surgeryLink("Add a female reproductive tract", "male2herm", () => { + V.PC.vagina = 1; + V.PC.newVag = 1; + V.PC.vaginaLube = 1; + V.PC.ovaries = 1; + V.PC.preg = 0; + WombFlush(V.PC); + cashX(forceNeg(150000), "PCmedical"); + }), + ); + if (V.PC.title > 0) { + linkArray.push( + surgeryLink("Become a woman", "male2truefemale", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 0; + V.PC.scrotum = 0; + V.PC.dick = 0; + V.PC.prostate = 0; + V.PC.counter.storedCum += 10; + V.PC.vagina = 1; + V.PC.newVag = 1; + V.PC.vaginaLube = 1; + V.PC.ovaries = 1; + V.PC.preg = 0; + V.PC.title = 0; + generatePlayerPronouns(V.PC); + cashX(forceNeg(50000), "PCmedical"); + }), + surgeryLink("Become a hermaphrodite girl", "male2hermfemale", () => { + V.PC.vagina = 1; + V.PC.newVag = 1; + V.PC.vaginaLube = 1; + V.PC.ovaries = 1; + V.PC.preg = 0; + WombFlush(V.PC); + V.PC.title = 0; + generatePlayerPronouns(V.PC); + cashX(forceNeg(150000), "PCmedical"); + }), + ); + } + } else { + r.push(`You have <span class="intro question">female genitalia</span> and a <span class="intro question">`); + if (V.PC.title > 0) { + r.push(`masculine`); + } else { + r.push(`feminine`); + } + r.push(`appearance.</span>`); + linkArray.push( + surgeryLink("Have your female organs replaced with male ones", "female2male", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.dick = 4; + V.PC.prostate = 1; + V.PC.vagina = -1; + V.PC.vaginaLube = 0; + V.PC.ovaries = 0; + cashX(forceNeg(50000), "PCmedical"); + }), + surgeryLink("Add a male reproductive tract", "female2herm", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.dick = 4; + V.PC.prostate = 1; + cashX(forceNeg(150000), "PCmedical"); + }), + ); + if (V.PC.title === 0) { + linkArray.push( + surgeryLink("Become a man", "female2truemale", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.dick = 4; + V.PC.prostate = 1; + V.PC.vagina = -1; + V.PC.vaginaLube = 0; + V.PC.ovaries = 0; + V.PC.preg = 0; + WombFlush(V.PC); + V.PC.title = 1; + generatePlayerPronouns(V.PC); + V.PC.boobs = 100; + V.PC.boobsImplant = 0; + cashX(forceNeg(50000), "PCmedical"); + }), + surgeryLink("Become a hermaphrodite boy", "female2hermmale", () => { + V.PC.ballsImplant = 0; + V.PC.balls = 3; + V.PC.scrotum = 3; + V.PC.dick = 4; + V.PC.prostate = 1; + V.PC.title = 1; + generatePlayerPronouns(V.PC); + V.PC.boobs = 100; + V.PC.boobsImplant = 0; + cashX(forceNeg(150000), "PCmedical"); + }), + ); + } + } + } + App.Events.addNode(p, r, "div"); + p.append(App.UI.DOM.makeElement("div", App.UI.DOM.generateLinksStrip(linkArray))); + el.append(p); + } + + /** + * + * @param {string} title + * @param {string} type + * @param {function():void} func + * @returns {HTMLAnchorElement} + */ + function surgeryLink(title, type, func) { + return App.UI.DOM.link( + title, + () => { + func(); + showDegradation(type); + } + ); + } + + function showDegradation(type) { + V.nextButton = "Continue"; + V.nextLink = "Manage Personal Affairs"; + App.Utils.scheduleSidebarRefresh(); + jQuery(el).empty().append(App.UI.PCSurgeryDegradation(type)); + } +}; diff --git a/src/player/electiveSurgery.tw b/src/player/electiveSurgery.tw deleted file mode 100644 index 502a18a9d4da947f8ac095e616a7087a75f4066b..0000000000000000000000000000000000000000 --- a/src/player/electiveSurgery.tw +++ /dev/null @@ -1,402 +0,0 @@ -:: Elective Surgery [nobr] - -<<if $seeDicks == 100>> - <<setNonlocalPronouns 100>> -<<else>> - <<setNonlocalPronouns 0>> -<</if>> - -You arrive at your favorite plastic surgeon for your appointment to find them as busy as ever, but you find yourself quickly hurried into an exam room by their cute assistant. _HeU wastes no time in hurrying you into _hisU office, stripping you down, measuring you and making sure you are healthy enough for surgery, all the while not so subtly running _hisU hands across every part of you. "So, what can I help you with?" - -<br><br> -"You sure you want to mess with that lovely face?" _heU teases, caressing your cheek. "@@.yellowgreen;<<print cashFormat(5000)>>.@@ Also wouldn't recommend changing your eyes, face shape or skin color; some security systems get real uppity over things like that. Though I s'pose race and hair can fall under that as well, but hey, we don't handle racial surgery and this isn't a hair salon, so nothing to worry about, right? Yes, I'm certain your systems will recognize you after we finish working on you — give us some credit." -<br> -You're @@.orange;$PC.actualAge years old.@@ -<<if $PC.actualAge >= 65>> - <<if $PC.visualAge > $PC.actualAge>> - You've had surgery to make yourself @@.lime;look older.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<elseif $PC.visualAge < $PC.actualAge>> - You've had surgery to make yourself @@.lime;look younger.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<else>> - You could benefit from a face lift. - <br> - <<if $PC.visualAge >= 25>> - [[Get a face lift|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageDown"]] | - <</if>> - [[Remodel your face to appear older|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageUp"]] - <</if>> -<<elseif $PC.actualAge >= 50>> - <<if $PC.visualAge > $PC.actualAge>> - You've had surgery to make yourself @@.lime;look older.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<elseif $PC.visualAge < $PC.actualAge>> - You've had surgery to make yourself @@.lime;look younger.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<else>> - You could benefit from a face lift. - <br> - <<if $PC.visualAge >= 25>> - [[Get a face lift|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageDown"]] | - <</if>> - [[Remodel your face to appear older|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageUp"]] - <</if>> -<<elseif $PC.actualAge >= 35>> - <<if $PC.visualAge > $PC.actualAge>> - You've had surgery to make yourself @@.lime;look older.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<elseif $PC.visualAge < $PC.actualAge>> - You've had surgery to make yourself @@.lime;look younger.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<else>> - You could go for a face lift, though making yourself look older could be useful. - <br> - <<if $PC.visualAge >= 25>> - [[Get a face lift|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageDown"]] | - <</if>> - [[Remodel your face to appear older|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageUp"]] - <</if>> -<<else>> - <<if $PC.visualAge > $PC.actualAge>> - You've had surgery to make yourself @@.lime;look older.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<elseif $PC.visualAge < $PC.actualAge>> - You've had surgery to make yourself @@.lime;look younger.@@ - <br>[[Undo Facial surgery|PC Surgery Degradation][$PC.faceImplant = 0, $PC.visualAge = $PC.physicalAge, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "restoreFace"]] - <<else>> - You could undergo facial surgery to make yourself look older<<if $PC.visualAge >= 25>>, though you could also make yourself look even younger<</if>>. - <br> - <<if $PC.visualAge >= 25>> - [[Remodel your face to appear younger|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageDown"]] | - <</if>> - [[Remodel your face to appear older|PC Surgery Degradation][$PC.faceImplant = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "ageUp"]] - <</if>> -<</if>> - -<br><br> -"Your skin is beautiful as is, but we can change it if you want," _heU says, pulling a large tanning bed-like cart out of a closet. "@@.yellowgreen;<<print cashFormat(2000)>>.@@ This thing just came out of testing. I assure you it doesn't cause cancer anymore! But still, mind your security systems. We won't be held accountable if you get arrested for trying to enter your penthouse." _HeU looks a little worrisome, "Now, there are some side effects, and we will have to keep you under special care for a few days. It's similar to a severe sunburn, across your entire body, all of it, even down there. Now don't give me that look, we have special ointments to soothe the pain and have a little fun with." _HeU tosses you a wink alongside a hesitant giggle. "Now all your typical skin tones are preprogrammed into it, and with a couple button presses... There! I unlocked the option for custom hues. Now this thing is going to recolor your skin pigment permanently, so you might want to take it seriously. It'll all be on you if I choke with laughter <<if $PC.dick != 0>>sucking on your big polka-dotted cock<<else>>going down on your polka-dotted pussy<</if>>!" -<br> -You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original skin tone was $PC.origSkin.<</if>> -<br> -<<if $PC.skin != $PC.origSkin>> - [[Restore natural color|PC Surgery Degradation][$PC.skin = $PC.origSkin, cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "pure white">> - [[Pure White|PC Surgery Degradation][$PC.skin = "pure white", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "ivory">> - [[Ivory|PC Surgery Degradation][$PC.skin = "ivory", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "white">> - [[White|PC Surgery Degradation][$PC.skin = "white", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "extremely pale">> - [[Extremely Pale|PC Surgery Degradation][$PC.skin = "extremely pale", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "very pale">> - [[Very Pale|PC Surgery Degradation][$PC.skin = "very pale", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "pale">> - [[Pale|PC Surgery Degradation][$PC.skin = "pale", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "extremely fair">> - [[Extremely Fair|PC Surgery Degradation][$PC.skin = "extremely fair", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "very fair">> - [[Very Fair|PC Surgery Degradation][$PC.skin = "very fair", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "fair">> - [[Fair|PC Surgery Degradation][$PC.skin = "fair", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "light">> - [[Light|PC Surgery Degradation][$PC.skin = "light", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "light olive">> - [[Light Olive|PC Surgery Degradation][$PC.skin = "light olive", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "tan">> - [[Tan|PC Surgery Degradation][$PC.skin = "tan", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "olive">> - [[Olive|PC Surgery Degradation][$PC.skin = "olive", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "bronze">> - [[Bronze|PC Surgery Degradation][$PC.skin = "bronze", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "dark olive">> - [[Dark Olive|PC Surgery Degradation][$PC.skin = "dark olive", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "dark">> - [[Dark|PC Surgery Degradation][$PC.skin = "dark", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "light beige">> - [[Light Beige|PC Surgery Degradation][$PC.skin = "light beige", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "beige">> - [[Beige|PC Surgery Degradation][$PC.skin = "beige", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "dark beige">> - [[Dark Beige|PC Surgery Degradation][$PC.skin = "dark beige", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "light brown">> - [[Light Brown|PC Surgery Degradation][$PC.skin = "light brown", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "brown">> - [[Brown|PC Surgery Degradation][$PC.skin = "brown", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "dark brown">> - [[Dark Brown|PC Surgery Degradation][$PC.skin = "dark brown", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "black">> - [[Black|PC Surgery Degradation][$PC.skin = "black", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "ebony">> - [[Ebony|PC Surgery Degradation][$PC.skin = "ebony", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] | -<</if>> -<<if $PC.skin != "pure black">> - [[Pure Black|PC Surgery Degradation][$PC.skin = "pure black", cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] -<</if>> -[[Custom Color|PC Skin Workaround][cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]] - - -<br><br>"Maybe some breast work? I assure you they are lovely," _heU says as _heU brushes the back of your head with _hisU own pair. "@@.yellowgreen;<<print cashFormat(5000)>>@@ for a reduction, @@.yellowgreen;<<print cashFormat(10000)>>@@ for implants, that includes size ups, and @@.yellowgreen;<<print cashFormat(15000)>>@@ for additional breast tissue. That last one might as well be real!<<if $PC.boobs < 700>> With a little work, we can even remove a small amount of fat from your breasts to bring your cup size down without damaging their inner workings. Though we'll have to build them up some before we can stick reasonable implants into you.<</if>>"<br> -<<if $PC.boobs >= 1400>> - <<if $PC.boobsImplant > 0>> - You have a @@.orange;pair of round H-cup breasts;@@ they are very obviously implants. - <br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, $PC.boobsImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] - <<else>> - You have a @@.orange;heavy H-cup bust.@@ They tend to sag a little when you free them from your top, though they have some perk to them. - <br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have tissue removed|PC Surgery Degradation][$PC.boobs = 1300, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] - <</if>> -<<elseif $PC.boobs >= 1200>> - <<if $PC.boobsImplant > 0>> - You have a @@.orange;pair of rounded G-cup breasts;@@ they are a little too perky for their size to pass as natural. - <br>[[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, $PC.boobsImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]] - <<else>> - You have a @@.orange;huge G-cup bust.@@ - <br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobs -= 200, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] - <</if>> -<<elseif $PC.boobs >= 1000>> - <<if $PC.boobsImplant > 0>> - You have a @@.orange;pair of perky F-cup breasts;@@ you can barely tell they are implanted. - <br>[[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, $PC.boobsImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]] - <<else>> - You have a @@.orange;hefty F-cup bust.@@ - <br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobs -= 200, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] - <</if>> -<<elseif $PC.boobs >= 800>> - You have a @@.orange;big pair of DD-cup breasts.@@ - <br>[[Get a pair of breast implants|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, $PC.boobsImplantType = "normal", cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]] | [[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 700, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] -<<elseif $PC.boobs >= 650>> - You have a @@.orange;pair of D-cup breasts.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 600, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] -<<elseif $PC.boobs >= 500>> - You have a @@.orange;average pair of C-cup breasts.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 400, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] -<<elseif $PC.boobs >= 400>> - You have a @@.orange;small pair of B-cup breasts.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.// -<<elseif $PC.boobs >= 300>> - You have a @@.orange;small pair of A-cup breasts.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 100, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.// -<<elseif $PC.title == 1>> - You have a @@.orange;masculine chest.@@ At your request, breast tissue could be added until you have a healthy bust, though society is unlikely to approve. - <br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 650, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]] -<<else>> - @@.orange;You're flat.@@ "We can fix that, if you want." - <br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 650, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]] -<</if>> - -<<if $PC.belly >= 100 && $PC.preg > 3>> - <br><br>_HeU darts for your middle. - <<if $PC.belly >= 120000>> - "My god! What happened to you? You might not want to hit the fertility drugs so hard next time. Then again, I don't think you'll see us complaining when you come in for a tummy tuck to get everything back where it used to be," _heU says with a wink as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-bursting belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>over-crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 110000>> - "My god! What happened to you? You might not want to hit the fertility drugs so hard next time. Then again, I don't think you'll see us complaining when you come in for a tummy tuck to get everything back where it used to be," _heU says with a wink as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-stuffed belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>over-crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 95000>> - Oh wow! It's like a party in there!" _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-stuffed belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 80000>> - You must feel so full, like all the time. What's it feel like? Do they ever calm down?" _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-filled belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 64000>> - Oh wow! You're immense! I almost can't wrap my arms around it!" _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-filled belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 48000>> - "Oh wow! You're gigantic! Are you sure you want to have surgery in this state? Things start to get complicated when you're this pregnant," _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-filled belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 32000>> - "My word, are you sure you want to have surgery in this state? You're gigantic! Plus things start to get complicated when you're this pregnant," _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue <<print pregNumberName($PC.pregType, 1)>>-filled belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>crowded belly. - <</if>> - <br> - <<elseif $PC.belly >= 16000>> - "My word, are you sure you want to have surgery in this state? You're giant!" _heU says as _heU uses both hands to massage your - <<if $PC.preg > 40>>overdue belly, enjoying the kicks from your child<<if $PC.pregType > 1>>ren<</if>> within. "If you go into labor, we have everything you'll need, so don't worry." - <<else>>belly, taking note of the extra occupants. - <</if>> - <br> - <<elseif $PC.belly >= 14000>> - "Wow, are you going to be ok? That looks really heavy," _heU says as _heU uses both hands to grope your massive belly, paying extra attention to your navel. "Are you sure you don't want to take a seat?"<br> - <<elseif $PC.belly >= 12000>> - "You're huge! Look at that adorable navel!" _heU says as _heU uses both hands to grope your huge belly, paying extra attention to your navel.<br> - <<elseif $PC.belly >= 10000>> - "Look how big you are!" _heU says as _heU uses both hands to grope your huge belly.<br> - <<elseif $PC.belly >= 7000>> - "You're getting so big!" _heU says as _heU uses both hands to massage your big pregnant belly.<br> - <<elseif $PC.belly >= 5000>> - "You're getting so big!" _heU says as _heU uses both hands to massage your pregnant belly.<br> - <<elseif $PC.belly >= 3000>> - "Looks like fun!" _heU says as _heU uses both hands to rub your pregnant belly.<br> - <<elseif $PC.belly >= 1500>> - "Awwww, you're getting soo big!" _heU says as _heU rubs your pregnant belly.<br> - <<elseif $PC.belly >= 500>> - "Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," _heU says as _heU pats your rounded middle.<br> - <<elseif $PC.belly >= 300>> - "Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," _heU says as _heU rubs your slightly rounded middle.<br> - <<elseif $PC.belly >= 100>> - "Awwww, you have a bun in the oven! That's so adorable; didn't think you the type," _heU says as _heU rubs your slightly swollen belly. No denying it now.<br> - <</if>> -<<elseif $PC.belly >= 100 && $PC.preg < 1>> - _HeU pinches your belly. "How about a tummy tuck? We can smooth this right out, cheaply too, @@.yellowgreen;<<print cashFormat(500)>>.@@" _HeU lets your saggy middle flop back to its usual drooping state. - [[Firm up your stomach|PC Surgery Degradation][$PC.belly = 0, cashX(forceNeg(500), "PCmedical"), $surgeryType = "tummyTuck"]] -<</if>> - -<br><br>"How about a new butt?" _heU says as _heU wiggles _hisU own at you. "Same prices as the breasts."<br> -<<if $PC.butt >= 5>> - <<if $PC.buttImplant >= 1>> - You have an @@.orange;enormous, round, hard butt;@@ it is very obviously a pair of huge implants. - <br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, $PC.buttImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] - <<else>> - You have an @@.orange;enormous, jiggly butt.@@ - <br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]] - <</if>> -<<elseif $PC.butt >= 4>> - <<if $PC.buttImplant >= 1>> - You have a @@.orange;huge, round, firm butt;@@ it's easily identifiable as fake. - <br>[[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, $PC.buttImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]] - <<else>> - You have a @@.orange;huge, soft butt.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]] - <</if>> -<<elseif $PC.butt >= 3>> - <<if $PC.buttImplant >= 1>> - You have a @@.orange;big firm butt;@@ anyone that feels it can tell it's fake, but at a glance you can't tell otherwise. - <br>[[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, $PC.buttImplantType = "none", cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]] - <<else>> - You have a @@.orange;big butt.@@ - <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]] - <</if>> -<<else>> - You have a @@.orange;cute, but normal butt.@@ At your request, fat could be added until you have a healthy rear; alternatively, a pair of implants could be inserted instead. - <br>[[Get a pair of butt implants|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, $PC.buttImplantType = "normal", cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]] | [[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] -<</if>> - -<<if $PC.balls != 0 && $PC.scrotum != 0>> - <br><br>"We could add gel around your testes to make your balls look bigger. Would also dampen any impacts to them as well, if that is anything to consider," _heU says, running a finger down the length of your shaft. "@@.yellowgreen;<<print cashFormat(7500)>>@@ for draining and @@.yellowgreen;<<print cashFormat(12000)>>@@ for filling, it's not the most simple procedure, you know? Anyway, they'll be very obvious, if that turns you on." _HeU takes another look at you before offering another option. "Of course, if you want bigger balls in a <i>functional</i> sense, we can do that too. The doctor's research in advanced targeted growth hormones has shown promising results in test subjects, and he's been able to use them successfully on a few citizen patients so far. A direct injection of hormones, and your testes will grow on their own. Unlike the cosmetic gel, there's no easily reversing this treatment, unless you are willing to subject yourself to slave drugs. It's expensive too, for the high quality drugs you want; @@.yellowgreen;<<print cashFormat(25000)>>@@ for one round of therapy. I should also warn you that repeated doses tend to have an increased effect." - <<if $PC.balls >= 30>> - You have a @@.orange;monstrous, massive pair of balls@@ roughly the size of small watermelons; it's impossible to sit normally, so you've had to buy special chairs, you've given up on wearing pants, and they're so obvious that people probably assume they're fake, but every slave you fuck gets to really feel the load you pump into them, and you love it. - <<if $PC.ballsImplant>> - <br>[[Have gel extracted|PC Surgery Degradation][$PC.balls = 14, $PC.ballsImplant = 11, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballShrinkage"]] | [[Have a lot of gel extracted|PC Surgery Degradation][$PC.balls = 5, $PC.ballsImplant = 2, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballBigShrinkage"]] - <</if>> - <<elseif $PC.balls >= 14>> - You have an @@.orange;enormous, heavy pair of balls@@ roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone can tell they are fake, but every slave you fuck gets a distinct slap with each thrust and you love it. - <br>//You're beginning to have trouble moving around and using furniture thanks to your over-sized nuts, even bringing your legs together is a pain; any bigger and they might seriously impede your ability to run your arcology, or walk, for that matter.// | - <<if $PC.ballsImplant>> - [[Have even more gel added|PC Surgery Degradation][$PC.balls = 30, $PC.ballsImplant = 27, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargement"]] | [[Have gel extracted|PC Surgery Degradation][$PC.balls = 9, $PC.ballsImplant = 6, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballShrinkage"]] - <<else>> - [[Get another round of growth hormones anyway|PC Surgery Degradation][$PC.balls = 30, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargementHorm"]] - <</if>> - <<elseif $PC.balls >= 9>> - You have a @@.orange;huge pair of balls@@ roughly the size of softballs; they make quite a bulge in your clothes and dangle heavily any other time. - <br> - <<if $PC.ballsImplant>> - [[Have more gel added|PC Surgery Degradation][$PC.balls = 14, $PC.ballsImplant = 11, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargement"]] | [[Have gel extracted|PC Surgery Degradation][$PC.balls = 5, $PC.ballsImplant = 2, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballShrinkage"]] - <<else>> - [[Get another round of growth hormones|PC Surgery Degradation][$PC.balls = 14, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargementHorm"]] - <</if>> - <<elseif $PC.balls >= 5>> - You have a @@.orange;large pair of balls;@@ you can certainly feel them as you move. - <br> - <<if $PC.ballsImplant>> - [[Have more gel added|PC Surgery Degradation][$PC.balls = 9, $PC.ballsImplant = 6, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargement"]] | [[Have gel extracted|PC Surgery Degradation][$PC.balls = 3, $PC.ballsImplant = 0, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballShrinkage"]] - <<else>> - [[Get another round of growth hormones|PC Surgery Degradation][$PC.balls = 9, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargementHorm"]] - <</if>> - <<else>> - You have a @@.orange;normal, uneventful pair of balls.@@ - <br>[[Get hormone treatment|PC Surgery Degradation][$PC.balls = 5, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargementHorm"]] | [[Have the gel added|PC Surgery Degradation][$PC.balls = 5, $PC.ballsImplant = 2, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "ballEnlargement"]] - <</if>> -<</if>> - -<<if $PC.vagina >= 3 && $PC.newVag == 0>> - <br><br> - "Looking a little loose down there; I can fix that for you. Get you nice and tight again. Oh, and our pussies are guaranteed to not lose their tightness, or your money back! @@.yellowgreen;<<print cashFormat(15000)>>@@ for a brand new vagina." - <br> - [[Get a tighter vagina|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "tightPussy"]] -<</if>> - -<<if $PC.preg == -2 && $PC.physicalAge < 70>> - <br><br> - Now we can only do this so many times before your body just can't handle it, but if you absolutely must have a child with your, um, vintage, then we can do something for you. For @@.yellowgreen;<<print cashFormat(50000)>>,@@ we can clone and replace your depleted ovaries with slightly younger ones. They'll get you a couple more years of ovulation before they dry up too, but if you're desperate for a child, they may be your last option. - [[Regenerate your ovaries and cheat menopause for a couple more years|PC Surgery Degradation][$PC.ovaryAge = 45, $PC.preg = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "ovulationRestart"]] -<</if>> - -<br><br> -"Now, if what you are looking for is sex reassignment surgery, that's going to be more complicated. Personally I think you are fine the way you are, but if you insist on paying me, I won't say no to it. We'll need to take a DNA sample to clone the required organs, and that will take some time to complete, so tell me early if this is what you really want. I've had a few patients seeking a working set of both sexes, so if that gets you off, it is an option. As for prices, @@.yellowgreen;<<print cashFormat(50000)>>@@ for a sex swap, @@.yellowgreen;<<print cashFormat(150000)>>@@ to be a fully functional herm, oh and @@.red;breasts are not included unless you undergo a full body remodeling.@@ You'll have to set up another appointment for that, however. Oh, and I guess @@.yellowgreen;<<print cashFormat(25000)>>@@ is fair for having a sex organ removed, if you have both. It's a very invasive procedure, as we will be near completely remodeling your body. I assure you, we do such fantastic work that no one will know you weren't naturally born that way! Oh, and due to the extent of the surgery, we will not perform the procedure if you are pregnant; please clean yourself out before you arrive." -<br> -<<if $PC.preg > 0>> - _HeU pokes your belly. "You're pregnant. What did I tell you?" -<<else>> - <<if $PC.dick != 0 && $PC.vagina != -1>> - You have working @@.orange;male and female reproductive organs@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!" - <br> - [[Remove your male half|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.counter.storedCum += 10, cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2female"]] | - [[Remove your female half|PC Surgery Degradation][$PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2male"]] - <<if $PC.title > 0>> - | [[Remove your male half completely|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.counter.storedCum += 10, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truefemale"]] - <<else>> - | [[Remove your female half completely|PC Surgery Degradation][$PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), $PC.boobs = 100, $PC.boobsImplant = 0, $PC.title = 1, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truemale"]] - <</if>> - <<elseif $PC.dick != 0>> - You have @@.orange;male genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!" - <br> - [[Have your male organs replaced with female ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2female"]] | - [[Add a female reproductive tract|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2herm"]] - <<if $PC.title > 0>> - | [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.counter.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2truefemale"]] - | [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2hermfemale"]] - <</if>> - <<else>> - You have @@.orange;female genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ - <br> - [[Have your female organs replaced with male ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2male"]] | - [[Add a male reproductive tract|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2herm"]] - <<if $PC.title == 0>> - | [[Become a man|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 100, $PC.boobsImplant = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2truemale"]] - | [[Become a hermaphrodite boy|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 100, $PC.boobsImplant = 0, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2hermmale"]] - <</if>> - <</if>> -<</if>> diff --git a/src/player/fSelf.js b/src/player/fSelf.js new file mode 100644 index 0000000000000000000000000000000000000000..c195963620149a1cc2d9b9c3d33a5a33e9e68c1b --- /dev/null +++ b/src/player/fSelf.js @@ -0,0 +1,51 @@ +/** + * + * @returns {DocumentFragment} + */ +App.Interact.fSelf = function() { + const node = new DocumentFragment(); + let r = []; + + const cumSources = []; + for (const slave of App.Entity.facilities.dairy.employees()) { + if (slave.balls > 0 && slave.ballType === "human" && slave.vasectomy !== 1) { + cumSources.push(slave.ID); + } + } + if (V.arcologies[0].FSPastoralistLaw === 1) { + for (let i = 0; i < 6; i++) { + cumSources.push(0); + } + } + + if (V.PC.skill.cumTap === 0) { + r.push(`Taking the hose and attaching the delectable cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the perfect sized cock quickly gets you moist${(V.PC.dick !== 0) ? " and hard" : ""}, itching for the fake dick inside you. You know yourself well, and it fits perfectly; as you thrust it into your cunt you can't help but buck with pleasure. Just as you reach your climax, you accidentally kick the tap on. Needless to say, you are quite surprised when your "lover" orgasms and begins releasing inside you, forcing you to lose your grip on the nozzle, allowing it to free itself from you along with a torrent of cum. Panting and rubbing your tender belly, you quickly pull your clothes back on and head to clean yourself out. You can't help but notice your waist feels rather tight; it shot so much into you — that cum wasn't virile, right?`); + } else if (V.PC.skill.cumTap < 5) { + r.push(`Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet a little more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your bloated belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you imagine you belly swelling even larger, be it with child or more cum.`); + } else if (V.PC.skill.cumTap < 10) { + r.push(`Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your rounded belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you cradle your bloated middle, you practically look pregnant already!`); + } else if (V.PC.skill.cumTap < 15) { + r.push(`Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your huge belly, you struggle to your feet and waddle towards your private bath to relax while you drain. You giggle as you cradle your round middle, anyone who saw you like this would certainly say you were heavily pregnant!`); + } else if (V.PC.skill.cumTap < 20) { + r.push(`Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your enormous belly, you struggle to even get off the bed, eventually making it to your feet so that you may slowly stagger to the bath. You moan lewdly as the pressure within your full belly sets another orgasm coursing through your body, making it jiggle delightfully. Anyone who saw you like this would swear you were about to give birth!`); + } else if (V.PC.skill.cumTap < 25) { + r.push(`Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets; imagine what the public would say if they saw you in this state.`); + } else { + r.push(`Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your`); + const bodyParts = []; + if (V.PC.boobs >= 300) { + bodyParts.push(`breasts`); + } + if (V.PC.dick > 0) { + bodyParts.push(`dick`); + } + bodyParts.push(`belly`); + bodyParts.push(`pussy`); + r.push(`${toSentence(bodyParts)}. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a slave to clean up your bed — the same slave whose cum you just enjoyed with the hose, of course.`); + } + + V.PC.skill.cumTap++; + knockMeUp(V.PC, 50, 0, cumSources.random()); + App.Events.addParagraph(node, r); + return node; +}; diff --git a/src/player/fSelf.tw b/src/player/fSelf.tw deleted file mode 100644 index 86fe2c1482823e3b1381d8b2d7cb7a13870e99a6..0000000000000000000000000000000000000000 --- a/src/player/fSelf.tw +++ /dev/null @@ -1,47 +0,0 @@ -:: FSelf [nobr] - -<<set $nextButton = "Back", $nextLink = "Main">> - -<<set _CumSources = []>> -<<for _slave range App.Entity.facilities.dairy.employees()>> - <<if _slave.balls > 0 && _slave.ballType == "human" && _slave.vasectomy != 1>> - <<set _CumSources.push(_slave.ID)>> - <</if>> -<</for>> -<<if $arcologies[0].FSPastoralistLaw == 1>> - <<set _CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0)>> -<</if>> - -<<if $PC.skill.cumTap == 0>> - - Taking the hose and attaching the delectable cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the perfect sized cock quickly gets you moist<<if $PC.dick != 0>> and hard<</if>>, itching for the fake dick inside you. You know yourself well, and it fits perfectly; as you thrust it into your cunt you can't help but buck with pleasure. Just as you reach your climax, you accidentally kick the tap on. Needless to say, you are quite surprised when your "lover" orgasms and begins releasing inside you, forcing you to lose your grip on the nozzle, allowing it to free itself from you along with a torrent of cum. Panting and rubbing your tender belly, you quickly pull your clothes back on and head to clean yourself out. You can't help but notice your waist feels rather tight; it shot so much into you — that cum wasn't virile, right? - -<<elseif $PC.skill.cumTap < 5>> - - Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet a little more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your bloated belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you imagine you belly swelling even larger, be it with child or more cum. - -<<elseif $PC.skill.cumTap < 10>> - - Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your rounded belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you cradle your bloated middle, you practically look pregnant already! - -<<elseif $PC.skill.cumTap < 15>> - - Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your huge belly, you struggle to your feet and waddle towards your private bath to relax while you drain. You giggle as you cradle your round middle, anyone who saw you like this would certainly say you were heavily pregnant! - -<<elseif $PC.skill.cumTap < 20>> - - Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your enormous belly, you struggle to even get off the bed, eventually making it to your feet so that you may slowly stagger to the bath. You moan lewdly as the pressure within your full belly sets another orgasm coursing through your body, making it jiggle delightfully. Anyone who saw you like this would swear you were about to give birth! - -<<elseif $PC.skill.cumTap < 25>> - - Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets; imagine what the public would say if they saw you in this state. - -<<else>> - - Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs >= 300>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly, and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a slave to clean up your bed — the same slave whose cum you just enjoyed with the hose, of course. - -<</if>> - -<<set $PC.skill.cumTap++>> -<<set _CumSources = _CumSources.random()>> -<<= knockMeUp($PC, 50, 0, _CumSources)>> diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index befb2e66c94e4b8f9bc05aa7ca1b03bc6fecdd58..dd4173e855497fa45df1def71a10920719d7c37c 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -312,7 +312,7 @@ App.Entity.PlayerState = class PlayerState { * * 90 - : Unnaturally healthy */ condition: 0, - /** your short term health damage */ + /** your short term health damage, used to determine how long you are in recovery */ shortDamage: 0, /** your long term health damage */ longDamage: 0, @@ -609,7 +609,7 @@ App.Entity.PlayerState = class PlayerState { * * 70000-89999 - door-crowding * * 90000-100000 - door-jamming */ - this.boobs = 100; + this.boobs = 200; /** breast engorgement from unmilked tits */ this.boobsMilk = 0; /** @@ -1879,13 +1879,13 @@ App.Entity.PlayerState = class PlayerState { /** Have you gone through female puberty. * @type {FC.Bool} * 0: no; 1: yes */ - this.pubertyXX = 1; + this.pubertyXX = 0; /** Target .physicalAge for male puberty to occur. */ this.pubertyAgeXY = 13; /** Have you slave gone through male puberty. * @type {FC.Bool} * 0: no; 1: yes */ - this.pubertyXY = 1; + this.pubertyXY = 0; /** * scar * Sub-object: diff --git a/src/player/pcSkinWorkaround.tw b/src/player/pcSkinWorkaround.tw deleted file mode 100644 index 38e52022bb3d703484d7669a82561f412609d88e..0000000000000000000000000000000000000000 --- a/src/player/pcSkinWorkaround.tw +++ /dev/null @@ -1,6 +0,0 @@ -:: PC Skin Workaround [nobr] - -<<set $nextButton = "Get in", $nextLink = "PC Surgery Degradation">> - -You can enter any color for your skin to be changed to. Once you have chosen, you just have to get in and let the machine do its thing. -<br><<textbox "$PC.skin" $PC.skin "PC Surgery Degradation">> \ No newline at end of file diff --git a/src/player/pcSurgeryDegradation.js b/src/player/pcSurgeryDegradation.js index bd8be877a09108943d2ea2a223afd17867270300..7325c8fc705f2ee9ecdc8bb0e433528611932004 100644 --- a/src/player/pcSurgeryDegradation.js +++ b/src/player/pcSurgeryDegradation.js @@ -1,4 +1,4 @@ -App.UI.PCSurgeryDegradation = function() { +App.UI.PCSurgeryDegradation = function(surgeryType) { const frag = new DocumentFragment(); let r = []; @@ -7,7 +7,7 @@ App.UI.PCSurgeryDegradation = function() { heU, hisU, himU, himselfU } = getNonlocalPronouns(V.seeDicks).appendSuffix("U"); - switch (V.surgeryType) { + switch (surgeryType) { case "skinTone": r.push(`After a few hours, you awaken in the recovery wing to find every`); if (V.showInches === 2) { @@ -580,7 +580,7 @@ App.UI.PCSurgeryDegradation = function() { } r.push(`"So, how do you feel?", asks the surgeon's assistant, seating ${himselfU} beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." ${HeU} circles around until ${heU} is between your legs and disappears between your thighs. You feel`); if (V.PC.balls >= 9) { - + // FIXME: review this } else { r.push(`${hisU} head brush against your sack`); } diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js index b0500438feb10ba97d28bafe2127fcedfa00b040..84a052a88b4c5cfe5fd74c2f296e7ff7b16f66be 100644 --- a/src/pregmod/FCTV/FCTV.js +++ b/src/pregmod/FCTV/FCTV.js @@ -97,7 +97,7 @@ globalThis.FctvDisplay = function() { p.append(` to turn on the TV and `); if (!usedRemote) { p.append(`set FCTV to find a random show. Your larger-than-life screen flashes on, and is soon playing content from the popular streaming service. `); - if (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote) { + if (V.cheatMode > 0 || (V.debugMode > 0 && V.debugModeEventSelection > 0) || V.FCTV.remote) { // Create "Use remote" link. Hide once clicked. span = document.createElement("span"); span.id = "use-remote"; @@ -114,7 +114,7 @@ globalThis.FctvDisplay = function() { p.append(span); } p.append(randomShow()); - } else if (usedRemote && (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote)) { + } else if (usedRemote && (V.cheatMode > 0 || (V.debugMode > 0 && V.debugModeEventSelection > 0) || V.FCTV.remote)) { p.append(`bring you the remote so you can choose whatever show you find interesting. `); if (selectedChannel === V.FCTV.channel.last) { App.UI.DOM.appendNewElement("div", p, `You tuned into this channel last week, you may want to choose something else.`); @@ -133,7 +133,7 @@ globalThis.FctvDisplay = function() { p.classList.add("FCTV"); span = document.createElement("span"); span.id = "remote"; - if (usedRemote && (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote)) { + if (usedRemote && (V.cheatMode > 0 || (V.debugMode > 0 && V.debugModeEventSelection > 0) || V.FCTV.remote)) { span.append(createRemote()); } p.append(span); @@ -225,7 +225,7 @@ globalThis.FctvDisplay = function() { ), ["fctv-remote-button"] ); - if (V.cheatMode > 0 || V.debugMode > 0) { + if (V.debugMode > 0 && V.debugModeEventSelection > 0) { App.UI.DOM.appendNewElement( "div", p, diff --git a/src/pregmod/FCTV/FCTVshows.js b/src/pregmod/FCTV/FCTVshows.js index d040f5107c41cd5b2e8f432c188f03aa205c57a8..e079cd39682ac44417bd0027e694ba20d3258aff 100644 --- a/src/pregmod/FCTV/FCTVshows.js +++ b/src/pregmod/FCTV/FCTVshows.js @@ -93,7 +93,7 @@ App.Data.FCTV.actors = { const slave = BaseSlave(); slave.devotion = 0; slave.trust = 0; - slave.muscles = 600; + slave.muscles = 60; slave.boobs = 700; slave.butt = 3; slave.hLength = 50; @@ -1981,7 +1981,7 @@ App.Data.FCTV.channels = { S.Concubine.counter.vaginal++; V.vaginalTotal++; if (canImpreg(S.Concubine, V.PC)) { - r.push(knockMeUp(S.Concubine, 10, 0, -1, true)); + knockMeUp(S.Concubine, 10, 0, -1); } } else if (V.fuckSlaves > 0) { r.push(`grab the nearest slave watching with you, who is overjoyed to recreate the entire ending with you.`); @@ -1994,7 +1994,7 @@ App.Data.FCTV.channels = { if (S.Concubine && canPenetrate(S.Concubine) && canImpreg(V.PC, S.Concubine) && (V.policies.sexualOpenness === 1 || S.Concubine.toyHole === "dick")) { const {him} = getPronouns(S.Concubine); r.push(`get ${S.Concubine.slaveName} nice and hard before recreating the entire ending with ${him}. You've never had a more hope-filled orgasm.`); - r.push(knockMeUp(V.PC, 10, 0, S.Concubine.ID, true)); + knockMeUp(V.PC, 10, 0, S.Concubine.ID); S.Concubine.counter.penetrative++; V.penetrativeTotal++; } else if (V.policies.sexualOpenness === 1) { diff --git a/src/pregmod/eliteBreedingExam.js b/src/pregmod/eliteBreedingExam.js index bc5ebdf955f4c8cca87f01984512433cd14e6839..3cf0f12c73e8293e50a8f00d947ad669ab897aa4 100644 --- a/src/pregmod/eliteBreedingExam.js +++ b/src/pregmod/eliteBreedingExam.js @@ -1,20 +1,24 @@ globalThis.eliteBreedingExam = function(slave = null) { + const frag = new DocumentFragment(); const eliteAngered = V.failedElite > 100; const SlaveProfessionalismEstablished = V.arcologies[0].FSSlaveProfessionalism > 20; const preferYounger = V.arcologies[0].FSYouthPreferentialist > 20; const partyAnimal = V.arcologies[0].FSHedonisticDecadence > 20; const cost = 5000; - let r = [], test, passing = 0, fixable; + let r = []; + let test; + let passing = 0; + let fixable; const result = function() { if (slave) { if (test === true) { - return `<span class="lime">PASSED</span>`; + return App.UI.DOM.makeElement("span", "PASSED", "lime"); } else if (fixable) { - return `<span class="yellow">Within fixable range.</span>`; + return App.UI.DOM.makeElement("span", "Within fixable range.", "yellow"); } else { passing--; - return `<span class="red">FAILED</span>`; + return App.UI.DOM.makeElement("span", "FAILED", "red"); } } return ``; @@ -28,31 +32,33 @@ globalThis.eliteBreedingExam = function(slave = null) { } else { r.push(`${slave.slaveName} is up for review:`); } - + App.Events.addNode(frag, r, "div"); + r = []; + const list = App.UI.DOM.appendNewElement("ul", frag); if (slave) { test = slave.intelligence + slave.intelligenceImplant >= (eliteAngered ? 95 : 50); } - r.push(`Must be ${eliteAngered ? 'highly intelligent' : 'very smart'}. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be ${eliteAngered ? 'highly intelligent' : 'very smart'}. `).append(result()); if (slave) { test = Beauty(slave) >= (eliteAngered ? 120 : 100); } - r.push(`Must be ${eliteAngered ? 'unbelievably' : ''} beautiful. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be ${eliteAngered ? 'unbelievably' : ''} beautiful. `).append(result()); if (slave) { test = slave.face >= (eliteAngered ? 95 : 40); } - r.push(`Their face must be ${eliteAngered ? 'breathtaking' : 'gorgeous'}. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Their face must be ${eliteAngered ? 'breathtaking' : 'gorgeous'}. `).append(result()); if (slave) { test = slave.chem <= 20; } - r.push(`Their health must not be overly impacted by drug use. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Their health must not be overly impacted by drug use. `).append(result()); if (slave) { test = slave.addict === 0; } - r.push(`They must not be addicted to drugs. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `They must not be addicted to drugs. `).append(result()); if (V.arcologies[0].FSMaturityPreferentialist > 20 || V.arcologies[0].FSYouthPreferentialist > 20) { const targetAge = 24; @@ -63,23 +69,23 @@ globalThis.eliteBreedingExam = function(slave = null) { test = slave.physicalAge < targetAge; } } - r.push(`Must be ${preferYounger ? 'younger' : 'older'} than ${targetAge}. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be ${preferYounger ? 'younger' : 'older'} than ${targetAge}. `).append(result()); } if (V.arcologies[0].FSIntellectualDependency > 20) { if (slave) { test = slave.energy >= 96; } - r.push(`Must be sexually receptive at all times. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be sexually receptive at all times. `).append(result()); } else if (V.arcologies[0].FSSlaveProfessionalism > 20) { if (slave) { test = slave.skill.vaginal + slave.skill.anal + slave.skill.oral + slave.skill.entertainment + slave.skill.whoring >= (eliteAngered ? 500 : 400); } - r.push(`Must be capable of mastering skills. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be capable of mastering skills. `).append(result()); if (slave) { test = slave.accent <= 1; } - r.push(`Must be capable of eloquent and accurate speech. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be capable of eloquent and accurate speech. `).append(result()); } if (V.arcologies[0].FSPetiteAdmiration > 20 || V.arcologies[0].FSStatuesqueGlorification > 20) { const targetHeight = V.arcologies[0].FSPetiteAdmiration > 20 ? 150 : 186; @@ -87,16 +93,16 @@ globalThis.eliteBreedingExam = function(slave = null) { if (slave) { test = (slave.height - (slave.heightImplant * 10)) < targetHeight; } - r.push(`Must naturally be very short. (${targetHeight} cm) ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must naturally be very short. (${targetHeight} cm) `).append(result()); if (slave) { test = (slave.height - (slave.heightImplant * 10)) < Height.mean(slave) - 15; } - r.push(`Must naturally be very short for their age. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must naturally be very short for their age. `).append(result()); } else if (V.arcologies[0].FSStatuesqueGlorification > 20) { if (slave) { test = (slave.height - (slave.heightImplant * 10)) > targetHeight; } - r.push(`Must naturally be very tall. (${targetHeight} cm) ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must naturally be very tall. (${targetHeight} cm) `).append(result()); } } @@ -106,12 +112,12 @@ globalThis.eliteBreedingExam = function(slave = null) { if (slave) { test = slave.race === targetRace; } - r.push(`Must be ${targetRace}. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be ${targetRace}. `).append(result()); } else { if (slave) { test = slave.race !== targetRace; } - r.push(`Must not be ${targetRace}. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must not be ${targetRace}. `).append(result()); } } @@ -119,22 +125,22 @@ globalThis.eliteBreedingExam = function(slave = null) { if (slave) { test = slave.dick >= 1 && slave.balls >= 1; } - r.push(`Must have a functional penis. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must have a functional penis. `).append(result()); } else if (V.arcologies[0].FSGenderFundamentalist > 20) { if (slave) { test = slave.dick === 0 && slave.balls === 0; } - r.push(`Must be physically female. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be physically female. `).append(result()); } if (V.arcologies[0].FSPaternalist > 20) { if (slave) { test = slave.intelligenceImplant >= (SlaveProfessionalismEstablished ? 30 : 15); } - r.push(`Must be ${SlaveProfessionalismEstablished ? 'well' : ''} educated. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be ${SlaveProfessionalismEstablished ? 'well' : ''} educated. `).append(result()); if (slave) { test = slave.health.condition >= 60; } - r.push(`Must be in good health. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be in good health. `).append(result()); // } else if (V.arcologies[0].FSDegradationist > 20) { } @@ -142,18 +148,18 @@ globalThis.eliteBreedingExam = function(slave = null) { if (slave) { test = slave.intelligenceImplant >= 15; } - r.push(`Must be well educated. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be well educated. `).append(result()); } if (V.arcologies[0].FSBodyPurist > 20) { if (slave) { test = slave.chem <= (eliteAngered ? 0 : 15); } - r.push(`Must have low carcinogen levels. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must have low carcinogen levels. `).append(result()); if (slave) { test = slave.boobsImplant + slave.buttImplant + slave.lipsImplant + slave.hipsImplant + slave.shouldersImplant === 0 && slave.faceImplant <= 5 && slave.bellyImplant === -1; } - r.push(`Must be implant free. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be implant free. `).append(result()); // } else if (V.arcologies[0].FSTransformationFetishist > 20) { // idealSlave.chem = 20; } @@ -162,33 +168,33 @@ globalThis.eliteBreedingExam = function(slave = null) { test = slave.weight <= (partyAnimal ? 30 : 0); } if (partyAnimal) { - r.push(`May be no larger than "plush". ${result()}`); + App.UI.DOM.appendNewElement("li", list, `May be no larger than "plush". `).append(result()); } else { - r.push(`Must be thin. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be thin. `).append(result()); } if (slave) { test = slave.butt <= 2; } - r.push(`Must have a trim rear. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must have a trim rear. `).append(result()); if (slave) { test = slave.boobs <= 400; } - r.push(`Must have a sleek chest. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must have a sleek chest. `).append(result()); } else if (V.arcologies[0].FSAssetExpansionist > 20) { if (slave) { test = (slave.butt - slave.buttImplant) >= 6; } - r.push(`Must have a naturally gigantic rear. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must have a naturally gigantic rear. `).append(result()); if (slave) { test = (slave.boobs - slave.boobsImplant) >= 1000; } - r.push(`Must be naturally busty. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be naturally busty. `).append(result()); } if (V.arcologies[0].FSPastoralist > 20) { if (slave) { test = slave.lactation === 1; } - r.push(`Must be lactating naturally. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be lactating naturally. `).append(result()); } if (V.arcologies[0].FSPhysicalIdealist > 20) { if (V.arcologies[0].FSPhysicalIdealistLaw === 1) { @@ -197,7 +203,7 @@ globalThis.eliteBreedingExam = function(slave = null) { if (slave) { test = slave.weight <= 30; } - r.push(`Must not be overweight. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must not be overweight. `).append(result()); if (slave) { test = slave.muscles.isBetween(musclesMin, musclesMax); fixable = (slave.muscles <= musclesMin && slave.muscles > musclesMax - musclesMin) || (slave.muscles >= musclesMax && slave.muscles < musclesMin + 30); @@ -205,12 +211,12 @@ globalThis.eliteBreedingExam = function(slave = null) { passing = 2; } } - r.push(`Must be fit, but not too muscular. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be fit, but not too muscular. `).append(result()); } else { if (slave) { test = slave.muscles > 95; } - r.push(`Must be extremely muscular. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be extremely muscular. `).append(result()); } } else if (V.arcologies[0].FSHedonisticDecadence > 20) { const targetWeight = V.arcologies[0].FSSlimnessEnthusiast > 20 ? 10 : 95; @@ -218,9 +224,9 @@ globalThis.eliteBreedingExam = function(slave = null) { test = slave.weight > targetWeight; } if (V.arcologies[0].FSSlimnessEnthusiast > 20) { - r.push(`Must be more than "trim". ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be more than "trim". `).append(result()); } else { - r.push(`Must be big, soft and fat. ${result()}`); + App.UI.DOM.appendNewElement("li", list, `Must be big, soft and fat. `).append(result()); } } @@ -240,6 +246,6 @@ globalThis.eliteBreedingExam = function(slave = null) { } cashX(-cost, "capEx"); } - - return r.map(t => `<div>${t}</div>`).join(""); + App.Events.addNode(frag, r, "div"); + return frag; }; diff --git a/src/pregmod/managePersonalAffairs.js b/src/pregmod/managePersonalAffairs.js index cc591564431ba01a000cb4de23b3b19fcd1716f1..af95308071ca2f8cc8679081e5413ba637c0b010 100644 --- a/src/pregmod/managePersonalAffairs.js +++ b/src/pregmod/managePersonalAffairs.js @@ -234,6 +234,7 @@ App.UI.managePersonalAffairs = function() { } else { links.push(App.UI.DOM.link(`Watch every week`, () => { V.FCTV.pcViewership.frequency = 1; + App.UI.DOM.replace(FCTVDiv, FCTV); })); } if (V.FCTV.pcViewership.frequency === 2) { @@ -243,6 +244,7 @@ App.UI.managePersonalAffairs = function() { } else { links.push(App.UI.DOM.link(`Watch every other week`, () => { V.FCTV.pcViewership.frequency = 2; + App.UI.DOM.replace(FCTVDiv, FCTV); })); } if (V.FCTV.pcViewership.frequency === 4) { @@ -252,6 +254,7 @@ App.UI.managePersonalAffairs = function() { } else { links.push(App.UI.DOM.link(`Watch once a month`, () => { V.FCTV.pcViewership.frequency = 4; + App.UI.DOM.replace(FCTVDiv, FCTV); })); } if (V.FCTV.pcViewership.frequency === -1) { @@ -261,6 +264,7 @@ App.UI.managePersonalAffairs = function() { } else { links.push(App.UI.DOM.link(`Ignore it`, () => { V.FCTV.pcViewership.frequency = -1; + App.UI.DOM.replace(FCTVDiv, FCTV); })); } @@ -1129,7 +1133,7 @@ App.UI.managePersonalAffairs = function() { function breederExam() { App.UI.DOM.appendNewElement("h2", breederExamDiv, `Elite Breeder Qualifications`); - App.Events.addNode(breederExamDiv, [eliteBreedingExam()]); + breederExamDiv.append(eliteBreedingExam()); return breederExamDiv; } diff --git a/src/pregmod/reMaleCitizenHookup.tw b/src/pregmod/reMaleCitizenHookup.tw index 8a7c68f1e8e3aacf43fdf44284ec90a359509141..584d220f7b98075f7c46df7c4f5fe04dd99cd044 100644 --- a/src/pregmod/reMaleCitizenHookup.tw +++ b/src/pregmod/reMaleCitizenHookup.tw @@ -296,7 +296,7 @@ He's clearly attracted to you; even the most consummate actor would have difficu The quantity of cum quickly overwhelms you and backflows out of you as you fall into your lover's waiting arms. He lays you to his side as he continues showering you both with cum. <<set $PC.skill.cumTap++>> <<elseif $PC.skill.cumTap < 5>> - You last for several seconds before the sheer size of his load forces you off his dick and into his waiting arms. He lays you to his side, gently patting you cum bloated middle, as he continues showering you both with cum. + You last for several seconds before the sheer size of his load forces you off his dick and into his waiting arms. He lays you to his side, gently patting your cum-bloated middle, as he continues showering you both with cum. <<set $PC.skill.cumTap++>> <<elseif $PC.skill.cumTap < 10>> You manage to take a respectable portion of his load before it begins backflowing out of you. He massages your cum-filled belly as he finishes unloading across your back. "Most girls can't even come close to handling it at all, I'm impressed." diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw deleted file mode 100644 index 4d897a06853fd85951b5946d47a81103f4726cc2..0000000000000000000000000000000000000000 --- a/src/pregmod/sePlayerBirth.tw +++ /dev/null @@ -1,584 +0,0 @@ -:: SE Player Birth [nobr] - -<<set $nextButton = "Continue", $nextLink = "Scheduled Event">> - -<<set _gaveBirth = 0, _PCDegree = 0, _pregTypeDecrecement = WombReserveCount($PC, "incubator"), _pregTypeDecrecementNursery = WombReserveCount($PC, "incubator")>> - -/* -PC.pregSource documentation -0 - unknown --1 - Player - self-impreg --2 - citizen --3 - former Master --4 - male arc owner --5 - client --6 - Societal Elite --7 - designer baby --9 - Futanari Sister -*/ - -/* expand me with new variables to behave like slave birth */ -<<if $PC.counter.birthsTotal == 0>> - <<set _badBirth = 30+($PC.pregType*4)>> -<<else>> - <<set _badBirth = 10>> -<</if>> -<<set _wounded = 0>> -<<set $PC.curBabies = WombBirth($PC, 35)>> -<<set _curBabies = $PC.curBabies.length>> -<<set _stillBirth = $PC.womb.length>> -<<if _curBabies == 1>> - <<if $PC.curBabies[0].genetics.gender == "XX">> - <<set _gender = "XX">> - <<else>> - <<set _gender = "XY">> - <</if>> -<</if>> - -/* Difference in code below: - * _curBabies - count of live babies after birth - * $PC.pregType = all babies in PC. - * I assume that dead fetuses do not count to reputation, etc., and PC manages to hide them. This mainly for future possibilities, or early birth triggers. - * PC will not support partial birth - even if she happens to be pregnant at different stages at once, undeveloped babies will be dead as result. - * _stillBirth currently not used - it's just for future improvements. */ -<<set $PC.preg = 0, $PC.pregKnown = 0, $PC.labor = 0, $PC.counter.birthsTotal += _curBabies>> - -/* setting the tallies for each type of child born */ -<<set _others = 0, _self = 0, _citizens = 0, _oldMaster = 0, _arcOwner = 0, _clients = 0, _elite = 0, _lab = 0, _futaS = 0, _slavesLength = 0, _babies = []>> -<<for _spb = 0; _spb < $PC.curBabies.length; _spb++>> - <<if $PC.curBabies[_spb].fatherID == 0>> - <<set _others++>> - <<set _babies.push("some guy")>> - <<elseif $PC.curBabies[_spb].fatherID == -1>> - <<set _self++>> - <<set _babies.push("your own")>> - <<elseif $PC.curBabies[_spb].fatherID == -2>> - <<set _citizens++>> - <<set _babies.push("an arcology citizen")>> - <<elseif $PC.curBabies[_spb].fatherID == -3>> - <<set _oldMaster++>> - <<set _babies.push("your Master")>> - <<elseif $PC.curBabies[_spb].fatherID == -4>> - <<set _arcOwner++>> - <<set _babies.push("another arcology owner")>> - <<elseif $PC.curBabies[_spb].fatherID == -5>> - <<set _clients++>> - <<set _babies.push("your client")>> - <<elseif $PC.curBabies[_spb].fatherID == -6>> - <<set _elite++>> - <<set _babies.push("the Societal Elite")>> - <<elseif $PC.curBabies[_spb].fatherID == -7>> - <<set _lab++>> - <<set _babies.push("designer")>> - <<elseif $PC.curBabies[_spb].fatherID == -9>> - <<set _futaS++>> - <<set _babies.push("a Futanari Sister")>> - <<else>> - <<set _babyDaddy = $slaveIndices[$PC.curBabies[_spb].fatherID]>> - <<if def _babyDaddy>> - <<set _slavesLength++>> - <<set _babies.push(String($slaves[_babyDaddy].slaveName))>> - <<else>> - <<set _others++>> - <<set _babies.push("some guy")>> - <</if>> - <</if>> -<</for>> -<<set _babiesReduced = removeDuplicates(_babies)>> - -<<if (_elite > 0 || _self > 0) && $arcologies[0].FSRestart != "unset">> /* for simplicity's sake, not going to allow other embryos to be added during an elite pregnancy */ - Since you are heavily pregnant with <<if (_elite + _self >= 2)>>children<<else>>a child<</if>> of the Societal Elite, you are quickly taken to the finest clinic the arcology has to offer. After a quick sedation, you awake to find your belly no longer round with child; that, and a note stating your next breeding partner and a notice that <<print cashFormat(50000)>> has been added to your account. The Societal Elite are @@.green;very pleased@@ at their new addition to the ranks. You just wish you could have seen your <<if _curBabies == 1>>little <<if _gender == "XX">>girl<<else>>boy<</if>> before they took <<if _gender == "XX">>her<<else>>him<</if>><<else>>babies before they took them<</if>> away to be raised into <<if _curBabies > 1>>proper members<<else>>a proper member<</if>> of the future world. - <<set $PC.counter.birthElite += _elite>> - <<if $PC.ovaryAge >= 47 && $playerAging == 2>> - You are getting too old to have children; you feel like <<if _curBabies > 1>>they<<else>>this<</if>> may be your last. - <<set $PC.preg = -2>> - <</if>> -<<else>> -While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoroughly soaking your crotch and the slave servicing it. You <<if $PC.belly >= 60000>>struggle to<</if>> pull your laboring body to its feet, notify $assistant.name that it's time, and begin heading towards -<<if $masterSuite != 0 && $masterSuiteUpgradePregnancy == 1>> - $masterSuiteName, since you had it redesigned to accommodate pregnant slaves. You should be able to give birth in both luxury and privacy there. -<<elseif $clinic != 0>> - $clinicName; everything you'll need to give birth can be found there. Although you don't know how much privacy you'll be able to get there. -<<elseif $masterSuite != 0>> - $masterSuiteName, since you'd like to be as comfortable as possible for the upcoming birth. You should be able to give birth in relative privacy there. -<<else>> - your bed, since you'd like to be as comfortable as possible for the upcoming birth. You should be able to give birth in complete privacy there. -<</if>> -<br><br> -<<if $PC.belly < 100000>> - <<if _S.Concubine>><<set _concubinePresent = 1>><<setLocalPronouns _S.Concubine 2>><</if>> - After what feels like a <<if $showInches == 2>>mile<<else>>kilometer<</if>> run, you finally waddle into your destination finding - <<if _S.Nurse>> - <<setLocalPronouns _S.Nurse>> - @@.pink;_S.Nurse.slaveName@@ waiting for you with everything $he needs to be a capable midwife to you.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ <<if hasAnyArms(_S.Concubine)>>wraps _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> - <<elseif $BodyguardID != 0>> - <<setLocalPronouns _S.Bodyguard>> - @@.pink;_S.Bodyguard.slaveName@@ waiting for you. Ever since $he realized $he was protecting for <<if $PC.pregType > 1>>many<<else>>two<</if>>, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ <<if hasAnyArms(_S.Concubine)>>wraps _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> - <<elseif $HeadGirlID != 0>> - <<setLocalPronouns _S.HeadGirl>> - @@.pink;_S.HeadGirl.slaveName@@ is waiting for you. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ <<if hasAnyArms(_S.Concubine)>>wraps _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> - <<elseif _concubinePresent == 1>> - @@.pink;_S.Concubine.slaveName@@ is waiting for you. _He2 believes, if anything, that _he2 could at least comfort you while you give birth. - <<else>> - it quite empty. At least $assistant.name knows where you are should anything go wrong. - <</if>> -<<else>> - <<if _S.Concubine>><<setLocalPronouns _S.Concubine 2>><<if !canWalk(_S.Concubine)>><<set _concubinePresent = 2>><<else>><<set _concubinePresent = 1>><</if>><</if>> - You barely make it half-way down the hall before you feel the first of your many children drop into position at the entrance to your birth canal. You try to keep going, but as it forces its way through your pelvis, spreading it wider, you're forced to the ground. Fortunately the penthouse is littered with supply rooms and closets, so you drag your laboring body into the nearest one instead. Fortunately, $assistant.name discretely directs - <<if _S.Nurse>> - <<setLocalPronouns _S.Nurse>> - @@.pink;_S.Nurse.slaveName@@ to you with everything $he'll need to deliver your child<<if $PC.pregType > 1>>ren<</if>>.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms(_S.Concubine)>>wrapping _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> - <<elseif $BodyguardID != 0>> - <<setLocalPronouns _S.Bodyguard>> - @@.pink;_S.Bodyguard.slaveName@@ to your location. Ever since $he realized $he was protecting for not only you, but the lives you bear too, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers. $He apologizes profusely for not being there when you needed $him most; $he wanted to make sure everything was ready for your arrival.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms(_S.Concubine)>>wrapping _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> - <<elseif $HeadGirlID != 0>> - <<setLocalPronouns _S.HeadGirl>> - @@.pink;_S.HeadGirl.slaveName@@ to your location. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;_S.Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms(_S.Concubine)>>wrapping _his2 arm<<if hasBothArms(_S.Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> - <<elseif _concubinePresent == 1>> - @@.pink;_S.Concubine.slaveName@@ to your location. _He2 believes, if anything, that _he2 could at least comfort you while you give birth. - <<else>> - a camera on the room you crawled into. At least $assistant.name knows where you are should anything go wrong. - <</if>> -<</if>> -<br><br> -You arrange yourself to give birth, relaxing until your body urges you to begin bearing down and pushing your child into the world.<<if _concubinePresent == 1>>_S.Concubine.slaveName settles in beside you, one hand soothing your contraction wracked middle and the other <<if $PC.dick != 0>>stroking your hardening dick<<else>>teasing your stiffening clit<</if>>.<</if>> -<<if _badBirth > random(1,100)>> /* shits going wrong */ - <<if _S.Nurse>> - <<setLocalPronouns _S.Nurse>> - You keep pushing and pushing, but your child is not coming out.<<if _concubinePresent == 1>> _S.Concubine.slaveName shifts to massaging your gravid middle<<if canTalk(_S.Concubine)>>, while whispering words of encouragement into your ear<</if>>. Until _S.Nurse.slaveName shoos _him2 away so $he can take over and get this baby out of you.<</if>> _S.Nurse.slaveName was prepared for this possibility, adjusts your position and timings, and before long is holding your @@.lime;new baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ in $his arms. - <<if $PC.pregType >= 8>> - But you're far from done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If _S.Nurse.slaveName weren't here, you and your children would likely have perished. - <<elseif $PC.pregType >= 4>> - But you aren't close to done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If _S.Nurse.slaveName weren't here, you and your children would likely have perished. - <<elseif $PC.pregType == 3>> - But you aren't done; your swollen belly still houses another pair of infants. You moan as the next child begins its descent; if _S.Nurse.slaveName weren't here, you and your children would likely have perished. - <<elseif $PC.pregType == 2>> - But you aren't done; your rounded belly still houses another infant. You moan as they begin their decent; if _S.Nurse.slaveName weren't here, you and your children would likely have perished. - <</if>> - <<elseif $BodyguardID != 0>> - <<setLocalPronouns _S.Bodyguard>> - You keep pushing and pushing, but your child is not coming out.<<if _concubinePresent == 1>> _S.Concubine.slaveName shifts to massaging your gravid middle<<if canTalk(_S.Concubine)>>, while whispering words of encouragement into your ear<</if>>. _He2 begins to worry as _his2 lover weakens in front of _him2. _S.Bodyguard.slaveName quickly pulls _him2 away from you, fearing the worst.<</if>> _S.Bodyguard.slaveName read about this possibility and tries everything $he can to coax your child out. As time passes, $he notices your consciousness begin to fade as exhaustion kicks in. Fearing for your lives, and desperate to save you, $he draws $his sword from its sheath, hands unsteady from what $he is about to do. Carefully, $he slits your lower abdomen, allowing your baby-<<if $PC.pregType < 3>>filled<<elseif $PC.pregType < 5>>stuffed<<elseif $PC.pregType < 8>>packed<<else>>bursting<</if>> womb to pop out through the incision. Doing $his best, $he cuts open your uterus, pulls your child<<if $PC.pregType > 1>>ren<</if>> from you and severs the umbilical cord<<if $PC.pregType > 1>>s all at once<</if>>. - <br><br> - You awake some time later in the remote surgery, your stomach extremely sore; you quickly realize you're no longer round with child. As you try to rise, _S.Bodyguard.slaveName stops you; $he hefts you into a bridal carry and takes you to a recovery room, before gently placing you into a warm bed, tucking you in, and hurrying out of the room. Before you can call out, $he returns carrying - <<if _curBabies == 1>> - @@.lime;your baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ - <<elseif _curBabies < 6>> - @@.lime;your newborn <<print pregNumberName(_curBabies, 2)>>@@ - <<else>> - a big bassinet containing @@.lime;your newborn <<print pregNumberName(_curBabies, 2)>>@@ - <</if>> - in $his arms. - <<set _wounded = 1>> - <<elseif $HeadGirlID != 0>> - <<setLocalPronouns _S.HeadGirl>> - You keep pushing and pushing, but your child is not coming out. - <<if _concubinePresent == 1>> - _S.Concubine.slaveName shifts to massaging your gravid middle<<if canTalk(_S.Concubine)>>, while whispering words of encouragement into your ear<</if>>. _He2 begins to worry as _his2 lover weakens in front of _him2. _S.HeadGirl.slaveName quickly pulls _him2 to <<if hasBothLegs(_S.Concubine)>>_his2 feet<<else>>upright<</if>> and orders _him2 to help $him carry you to the remote surgery<<if !canWalk(_S.Concubine)>>; in $his rush, $he completely forgot <<if tooBigBreasts(_S.Concubine)>>_S.Concubine.slaveName's breasts have _him2 pinned to the bed<<elseif tooBigBelly(_S.Concubine)>>_S.Concubine.slaveName's pregnancy renders _him2 immobile<<elseif tooBigDick(_S.Concubine)>>_S.Concubine.slaveName can't walk with a dick that big<<elseif tooBigButt(_S.Concubine)>>_S.Concubine.slaveName's butt pins _him2 to the bed<<elseif tooBigBalls(_S.Concubine)>>_S.Concubine.slaveName's balls act as a giant anchor<<elseif tooFatSlave(_S.Concubine)>>_S.Concubine.slaveName is so fat, the bed is _his2 home now<<else>>_S.Concubine.slaveName can't walk<</if>><</if>>. - <<else>> - _S.HeadGirl.slaveName notices your distress and carries you to the remote surgery<<if $PC.pregType >= 8>>, a daunting task given your extreme gravidity<</if>>. - <</if>> - <br><br> - You awake some time later in a recovery room<<if _concubinePresent > 0>>, _S.Concubine.slaveName beside you<</if>>, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. Seeing you're awake, _S.HeadGirl.slaveName catches your attention. In $his arms - <<if _curBabies == 1>> - is @@.lime;your baby <<if _gender == "XX">>girl<<else>>boy<</if>>,@@ <<if _S.HeadGirl.lactation > 0>>happily nursing from $his breast,<</if>> - <<else>> - are @@.lime;your newborn <<print pregNumberName(_curBabies, 2)>>,@@ <<if _S.HeadGirl.lactation > 0>>happily nursing from $his breasts,<</if>> - <</if>> - alive and well. - <<set _wounded = 1>> - <<elseif _concubinePresent == 1>> - You keep pushing and pushing, but your child is not coming out. <<if canWalk(_S.Concubine)>>In a panic, _S.Concubine.slaveName carries you to the remote surgery<<else>>The last thing you remember as you fade is _S.Concubine.slaveName's look of panic<</if>>. - <br><br> - You awake some time later in a recovery room, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. A content sigh comes from beside you; _S.Concubine.slaveName is snuggled next to you, snoozing with - <<if _curBabies == 1>> - @@.lime;your baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ in _his2 arms.<<if _S.Concubine.lactation > 0>> Your child has managed to free one of _S.Concubine.slaveName's breasts and is eagerly suckling from its milky nipple.<</if>> - <<else>> - @@.lime;your newborn <<print pregNumberName(_curBabies, 2)>>@@ in _his2 arms.<<if _S.Concubine.lactation > 0>> Your children have managed to free _S.Concubine.slaveName's breasts and are eagerly suckling from their milky nipples.<</if>> - <</if>> - <<if !canWalk(_S.Concubine)>> - <<if tooBigBreasts(_S.Concubine)>> - You don't know how _he2 managed to get you here when _his2 breasts prevent _him2 from walking<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give the pair a gentle caress as thanks. - <<elseif tooBigBelly(_S.Concubine)>> - You don't know how _he2 managed to get you here when _he2's so gravid _he2 can't walk<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give the taut dome a gentle caress as thanks. - <<elseif tooBigDick(_S.Concubine)>> - You don't know how _he2 managed to get you here when _his2 dick prevents _him2 from walking<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give the serpent a gentle caress as thanks. - <<elseif tooBigButt(_S.Concubine)>> - You don't know how _he2 managed to get you here when _his2 ass prevent _him2 from walking<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give the jiggling giant a gentle caress as thanks. - <<elseif tooBigBalls(_S.Concubine)>> - You don't know how _he2 managed to get you here when _his2 balls prevent _him2 from walking<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give the pair a gentle caress as thanks. _He2 returns the kindness with a shudder and a large wet spot forming over _his2 crotch. - <<elseif tooFatSlave(_S.Concubine)>> - You don't know how _he2 managed to get you here when _he2's so fat _he2 can't walk<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give _his2 soft body a gentle caress as thanks. - <<elseif !hasAnyLegs(_S.Concubine)>> - You don't know how _he2 managed to get you here when _he2 has no legs to walk on<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you give _his2 stumps a gentle caress as thanks. - <<else>> - You don't know how _he2 managed to get you here, since _he2 can't walk<<if $PC.pregType >= 8>>, especially with how heavy your pregnancy was<</if>>, but you're thankful either way. - <</if>> - <</if>> - <<set _wounded = 1>> - <<else>> - You keep pushing and pushing, but your child is not coming out. @@.red;Something is wrong,@@ but you keep persisting. - <<set _gaveBirth = 1>> - <<set $gameover = "birth complications", $nextButton = "Have to keep trying!", $nextLink = "Gameover">> - <</if>> -<<else>> - <<if _S.Nurse>> - <<setLocalPronouns _S.Nurse>> - Under _S.Nurse.slaveName's guidance, childbirth is a breeze for you. - <<if $PC.pregType == 1>> - <<if _concubinePresent == 1>> Or it would have been, had _S.Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.Nurse.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> _S.Nurse.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@ - <<else>> - <<if _concubinePresent == 1>> - Or it would have been, had _S.Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.Nurse.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. _S.Concubine.slaveName slides in behind you to snuggle with you as you return to your senses. - <<else>> - With one out, you realize - <<if $PC.pregType >= 6>> - you still have <<print num($PC.pregType - 1)>> more to go. - <<elseif $PC.pregType == 5>> - your taut dome of a belly still houses four more. - <<elseif $PC.pregType == 4>> - your swollen belly still houses three more. - <<elseif $PC.pregType == 3>> - your swollen belly still houses another pair. - <<elseif $PC.pregType == 2>> - your rounded belly still houses another. - <</if>> - You moan as - <<if $PC.pregType >= 3>> - the next child begins its - <<else>> - they begin their - <</if>> - descent; you'll be at this for awhile. With _S.Nurse.slaveName around, you aren't worried at all. - <</if>> - _S.Nurse.slaveName cuts the cords, swaddles your children, and hands you @@.lime;your new <<print pregNumberName(_curBabies, 2)>>.@@ - <</if>> - <<elseif $BodyguardID != 0>> - <<setLocalPronouns _S.Bodyguard>> - With _S.Bodyguard.slaveName watching over you, you feel safe enough to let your guard down and focus on giving birth. Once you are relaxed, you feel your child begin to inch down your birth canal. Before long you've completed the job without any trouble. - <<if $PC.pregType == 1>> - <<if _concubinePresent == 1>> - Or it would have, had _S.Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>> - <</if>> - _S.Bodyguard.slaveName cuts the cord with $his blade, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@ - <<else>> - <<if _concubinePresent == 1>> - Or you would have, had _S.Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over; before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious, nearly panicking _S.Bodyguard.slaveName. _S.Concubine.slaveName slides in behind you to snuggle with you as you return to your senses. - <<else>> - With one out, you realize - <<if $PC.pregType >= 6>> - you still have <<print num($PC.pregType - 1)>> more to go. - <<elseif $PC.pregType == 5>> - your taut dome of a belly still houses four more. - <<elseif $PC.pregType == 4>> - your swollen belly still houses three more. - <<elseif $PC.pregType == 3>> - your swollen belly still houses another pair. - <<elseif $PC.pregType == 2>> - your rounded belly still houses another. - <</if>> - You moan as - <<if $PC.pregType >= 3>> - the next child begins its - <<else>> - they begin their - <</if>> - descent; you'll be at this for awhile. With _S.Bodyguard.slaveName around, you feel completely safe. - <</if>> - _S.Bodyguard.slaveName cuts the cords with $his blade, and hands you @@.lime;your new <<print pregNumberName(_curBabies, 2)>>.@@ - <</if>> - <<elseif $HeadGirlID != 0>> - With _S.HeadGirl.slaveName waiting with everything you need, childbirth goes by without a hitch. - <<if $PC.pregType == 1>> - <<if _concubinePresent == 1>> Or it would have been, had _S.Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> _S.HeadGirl.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@ - <<else>> - <<if _concubinePresent == 1>> - Or it would have been, had _S.Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in _S.Concubine.slaveName, _S.HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. _S.Concubine.slaveName slides in behind you to snuggle with you as you return to your senses. - <<else>> - With one out, you realize - <<if $PC.pregType >= 6>> - you still have <<print num($PC.pregType - 1)>> more to go. - <<elseif $PC.pregType == 5>> - your taut dome of a belly still houses four more. - <<elseif $PC.pregType == 4>> - your swollen belly still houses three more. - <<elseif $PC.pregType == 3>> - your swollen belly still houses another pair. - <<elseif $PC.pregType == 2>> - your rounded belly still houses another. - <</if>> - You moan as - <<if $PC.pregType >= 3>> - the next child begins its - <<else>> - they begin their - <</if>> - descent; you'll be at this for awhile. With _S.HeadGirl.slaveName around, you know everything is under control. - <</if>> - _S.HeadGirl.slaveName cuts the cords, swaddles your children, and hands you @@.lime;your new <<print pregNumberName(_curBabies, 2)>>.@@ - <</if>> - <<elseif _concubinePresent == 1>> - _S.Concubine.slaveName alternates between calming your nerves and driving your to orgasm. It works fairly well, as your child rapidly enters the world alongside a particularly powerful climax. You reach down and draw @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ into your arms, while _S.Concubine.slaveName shifts to eagerly "clean" your crotch with _his2 tongue.<<if $PC.pregType > 1>> _His2 over-stimulation of you quickly has _him2 licking the crowning head of your second child. _He2 diligently works you over until all of your children are born, making sure you are thoroughly exhausted; both from the birth and from _his2 ministrations.<<if canPenetrate(_S.Concubine) && canImpreg($PC, _S.Concubine)>> _S.Concubine.slaveName <<if canSee(_S.Concubine)>>eyes<<else>>faces<</if>> your spread pussy hungrily as _his2 erection bobs with anticipation. But you're too tired right now and _he2 realizes it.<</if>> _He2 helps gather your child<<if $PC.pregType > 1>>ren<</if>> to<<if _S.Concubine.lactation > 0>> _his2 and <</if>> your breasts with the hope that you'll reward _him2 when you recover.<</if>> - <<else>> - You keep pushing and pushing, your child slowly working its way from your body. With the last of your strength, you bear down, freeing your child from your body at last. Panting, you gather @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ <<if $PC.pregType > 1>>as another contraction ushers your next child into your birth canal<<else>>and drift off into a much deserved rest<</if>>. - <<if $PC.pregType >= 2>> - You struggle to pass the second baby<<if $PC.pregType >= 3>>, knowing full well a third will quickly follow suit<<if $PC.pregType >= 4>> and a fourth after that<</if>><</if>>. - <<if $PC.pregType >= 5>> - You dread the challenge that will be the fifth one<<if $PC.pregType >= 6>> and worry for your health over the sixth<</if>>. - <</if>> - <<if $PC.pregType >= 7>> - You are nearly delirious by the time - <<if $PC.pregType >= 8>> - it comes to the final <<print num($PC.pregType - 6)>>; your efforts to push them out are falling flat. You're just too tired. With one final push, you feel the first crown then exit your ruined pussy; the second <<if $PC.pregType >= 9>>and the rest follow<<else>>follows<</if>> closely, finally allowing you relief. - <<else>> - they are all born; you still look pregnant. It dawns on you as your cervix stretches wide; you forgot one. - <</if>> - <</if>> - You are <<if $PC.pregType >= 6>>thoroughly <</if>>exhausted by the time you've pushed out your <<print pregNumberName(_curBabies, 2)>>, - <<if $PC.pregType >= 8>> - unable to even - <<else>> - barely able to - <</if>> - gather them to your chest. Fortunately, $assistant.name calls several devoted slaves to your aid; you're helped to your bed and left to connect with your children. - <</if>> - <</if>> -<</if>> - -<<if _gaveBirth == 0>> - - <<set $PC.counter.birthOther += _others, $PC.counter.birthSelf += _self, $PC.counter.birthCitizen += _citizens, $PC.counter.birthMaster += _oldMaster, $PC.counter.birthArcOwner += _arcOwner, $PC.counter.birthClient += _clients, $PC.counter.birthElite += _elite, $PC.counter.birthLab += _lab, $PC.counter.birthDegenerate += _slavesLength>> - - <<if _curBabies == 1>> - <<set _p = 0>> - <<if $PC.curBabies[_p].genetics.race == $PC.origRace>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.hColor == $PC.hColor>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.skin == $PC.skin>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>> - <<set _PCDegree++>> - <</if>> - - Your little <<if _gender == "XX">>girl<<else>>boy<</if>> - <<if $PC.pregSource == -1>> - looks exactly like you, in fact, the resemblance seems uncanny. Since <<if _gender == "XX">>she<<else>>he<</if>> has the exact same genetics as you, <<if _gender == "XX">>she<<else>>he<</if>>'ll likely look almost identical to you when <<if _gender == "XX">>she<<else>>he<</if>>'s your age. - <<elseif _PCDegree == 4>> - looks just like you; <<if _gender == "XX">>she<<else>>he<</if>> will likely grow up to closely resemble yourself. - <<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>> - has your lovely $PC.eye.origColor eyes. - <<elseif _PCDegree > 0>> - looks a little like you, enough that <<if _gender == "XX">>she<<else>>he<</if>>'ll be recognizable as yours. - <<else>> - looks nothing like you; it's hard to believe <<if _gender == "XX">>she's your daughter<<else>>he's you son<</if>> - <</if>> - - <<if $PC.curBabies[0].reserve === "incubator">> - @@.pink;You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ - <<if $incubator.tanks.length < $incubator.capacity>> - <<run App.Facilities.Incubator.newChild(generateChild($PC, $PC.curBabies[0], true))>> - <</if>> - <<elseif $PC.curBabies[0].reserve === "nursery">> - @@.pink;You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ - <<if $cribs.length < $nursery>> - <<run App.Facilities.Nursery.newChild(generateChild($PC, $PC.curBabies[0]))>> - <</if>> - <</if>> - <<set $PC.curBabies.shift()>> - - <<elseif _curBabies > 1>> - - <<set _firstChild = 1>> - <<for _p = 0; _p < _curBabies; _p++>> - - <<set _PCDegree = 0>> - <<if $PC.curBabies[0].genetics.race == $PC.origRace>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.hColor == $PC.hColor>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.skin == $PC.skin>> - <<set _PCDegree++>> - <</if>> - <<if $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>> - <<set _PCDegree++>> - <</if>> - - <<if _firstChild == 1>> - Your first - <<set _firstChild = 0>> - <<else>> - The next - <</if>> - little <<if $PC.curBabies[_p].genetics.gender == "XX">>girl<<else>>boy<</if>> - <<if _identicalChildGen == 1>> - looks exactly like the previous; they're identical twins. - <<elseif $PC.pregSource == -1>> - looks exactly like you<<if _p == 0>>, in fact, the resemblance seems uncanny. Since <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>> has the exact same genetics as you, <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'ll likely look almost identical to you when <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'s your age<</if>>. Every one of your children look this way; it's kind of hard to tell them apart. - <<elseif _PCDegree == 4>> - looks just like you; <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>> will likely grow up to closely resemble yourself. - <<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>> - has your lovely $PC.eye.origColor eyes. - <<elseif _PCDegree > 0>> - looks a little like you, enough that <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'ll be recognizable as yours. - <<else>> - looks nothing like you; it's hard to believe <<if $PC.curBabies[_p].genetics.gender == "XX">>she's your daughter<<else>>he's your son<</if>> - <</if>> - <<if $PC.curBabies[_p].reserve == "incubator">> - @@.pink;You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ - <<if $incubator.tanks.length < $incubator.capacity>> - <<run App.Facilities.Incubator.newChild(generateChild($PC, $PC.curBabies[_p], true))>> - <</if>> - <<run $PC.curBabies.splice($PC.curBabies[_p], 1)>> - <<set _p--, _curBabies-->> - <<elseif $PC.curBabies[_p].reserve == "nursery">> - @@.pink;You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside to be raised in the penthouse.@@ - <<if $cribs.length < $nursery>> - <<run App.Facilities.Nursery.newChild(generateChild($PC, $PC.curBabies[_p]))>> - <</if>> - <<run $PC.curBabies.splice($PC.curBabies[_p], 1)>> - <<set _p--, _curBabies-->> - <</if>> - <</for>> - - All in all, you've bought a healthy group of - <<if _babiesReduced.length > 2>> - <<for _spb = 0; _spb < _babiesReduced.length; _spb++>> - <<if _spb < _babiesReduced.length-1>> - _babiesReduced[_spb], - <<else>> - and _babiesReduced[_spb]'s - <</if>> - <</for>> - <<elseif _babiesReduced.length > 1>> - _babiesReduced[0] and _babiesReduced[1]'s - <<else>> - _babiesReduced[0]<<if _babiesReduced[0] != "your own" && _babiesReduced[0] != "designer">>'s<</if>> - <</if>> - babies into the world. - - <</if>> - - - <<if $PC.pregSource > 0 && _curBabies > 0>> - <<set _pb = findFather($PC.pregSource)>> - <<if def _pb>> - <<if $arcologies[0].FSRestartDecoration == 100 && $eugenicsFullControl != 1>> - Word spreads fast through your peers that you gave birth to <<if _curBabies > 1>>low class infants<<else>>a low class child<</if>> @@.red;utterly devastating your standing among the Elite.@@ - <<set $failedElite += 200>> - <<elseif $arcologies[0].FSChattelReligionistLaw == 1>> - Rumors spread that The Prophet gave birth to a slave's child<<if _curBabies > 1>>ren<</if>>. - <<if $arcologies[0].FSSupremacist != "unset">> - <<if _pb.race != $arcologies[0].FSSupremacistRace>> - Word is that your child<<if _curBabies > 1>>ren were<<else>> was<</if>> not $arcologies[0].FSSupremacistRace. As The Prophet saw fit to bear such a child, society views it as a sign to @@.red;reject $arcologies[0].FSSupremacistRace supremacy.@@ - <<set $arcologies[0].FSSupremacist -= 120>> - <</if>> - <</if>> - <<if $arcologies[0].FSSubjugationist != "unset">> - <<if _pb.race == $arcologies[0].FSSubjugationistRace>> - In addition, The Prophet's womb bore <<if _curBabies == 1>>a <</if>>$arcologies[0].FSSubjugationistRace child<<if _curBabies > 1>>ren<</if>>, surely a sign to @@.red;reject $arcologies[0].FSSubjugationistRace subjugation.@@ - <<set $arcologies[0].FSSubjugationist -= 120>> - <</if>> - <</if>> - <<else>> - Rumors spread that your child<<if _curBabies > 1>>ren were<<else>> was<</if>> fathered by a slave, @@.red;harming your lasting reputation.@@ - <<set $PC.degeneracy += 20>> - <<if $arcologies[0].FSSupremacist != "unset">> - <<if _pb.race != $arcologies[0].FSSupremacistRace>> - Furthermore, word is that your child<<if _curBabies > 1>>ren were<<else>> was<</if>> not $arcologies[0].FSSupremacistRace, @@.red;further hurting your lasting reputation.@@ - <<set $PC.degeneracy += 10>> - <</if>> - <</if>> - <<if $arcologies[0].FSSubjugationist != "unset">> - <<if _pb.race == $arcologies[0].FSSubjugationistRace>> - In addition, there is a nasty rumor that you gave birth to <<if _curBabies == 1>>a <</if>>$arcologies[0].FSSubjugationistRace child<<if _curBabies > 1>>ren<</if>>, @@.red;devastating your lasting reputation.@@ - <<set $PC.degeneracy += 50>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - - /* -------------------- Now curBabies counts live, birthed babies who haven't been placed in the incubator. */ - <<set _curBabies = $PC.curBabies.length>> - - <<if _curBabies > 0>> - <br><br> - Now you are faced with a decision of what to do with your <<if _pregTypeDecrecement > 0>>remaining<<else>>new<</if>> child<<if _curBabies > 1>>ren<</if>>. You're far too busy to keep <<if _curBabies > 1>>them<<else>>it<</if>> yourself, but you could @@.orange;send them to a boarding school to be raised until they are of age to serve as your heir.@@ Other options include sending them to @@.orange;become a slave at a slave orphanage,@@ sending them to @@.orange;a citizen school,@@ to be brought up coequal with the arcology's other young people, or sending them to be @@.orange;raised privately,@@ with expert care and tutoring. - <<if $arcologies[0].FSRepopulationFocus > 40>> - Of course, there are also the @@.orange;breeding schools,@@ where your - <<if _curBabies == 1>> - <<if _gender == "XX">> - daughter will be taught the joys of motherhood up until she is around <<if $minimumSlaveAge > $fertilityAge>>$minimumSlaveAge<<else>>$fertilityAge<</if>> years old, when she will be impregnated with her first child. - <<else>> - son will be taught it is his duty to fuck every slavegirl he sees without a baby bump pregnant. - <</if>> - <<else>> - <<if _gender == "XX">> - daughters will be taught the joys of motherhood up until they are around <<if $minimumSlaveAge > $fertilityAge>>$minimumSlaveAge<<else>>$fertilityAge<</if>> years old, when they will be impregnated for the first time.<<if _curBabies > 1>> They say multiples run in families, so your daughters should blossom into quite the fertile breeders.<</if>> - <<else>> - sons will be taught it is their duty to fuck every slavegirl they see without a baby bump pregnant. - <</if>> - <</if>> - <</if>> - <<if $policies.cash4Babies == 1>> - <<set _seed = random(1,10)>> - Alternatively, since it is @@.orange;legal to sell slave babies,@@ your child should be worth quite a pretty ¤ at auction. - <</if>> - <<if (($eliteFail > 0 || $eugenicsFullControl > 0) && $PC.pregSource == -1) || $PC.pregSource == -6>> - The Societal Elite should look forward @@.orange;to raising them.@@ - <</if>> - <<if $PC.pregSource == -9>> - The Futanari Sisters would happily @@.orange;take them in.@@ - <</if>> - <br><br> - <span id="choice">What will it be? - <br> - <<link "Boarding School">><<replace "#choice">><<print "You have decided to send them away to be raised in your stead.">><</replace>><</link>> | - <<link "Slave Orphanage">><<replace "#choice">><<print "You have decided to send them to a slave orphanage to be raised to $minimumSlaveAge and sold. Perhaps you'll even see them again, though you are unlikely to recognize them if you do.">><</replace>><<set $slaveOrphanageTotal += _curBabies>><</link>> | - <<link "Citizen School">><<replace "#choice">><<print "You have decided to send them to a citizen school to become a future citizen. Perhaps you'll even see them again, though you are unlikely to recognize them if you do.">><</replace>><<set $citizenOrphanageTotal += _curBabies>><</link>> | - <<link "Privately Raised">><<replace "#choice">><<print "You have decided to send them to be privately raised. Perhaps you'll even see them again, though it's unlikely that there will be any connection between you. At least you'll know they've been properly reared.">><</replace>><<set $privateOrphanageTotal += _curBabies>><</link>> - <<if $arcologies[0].FSRepopulationFocus > 40>> - | <<link "Breeding School">><<replace "#choice">><<print "You have decided to send them to be raised into a proper breeder. Perhaps you'll even see them again, though it's unlikely you'll recognize them with their reproduction focused body.">><</replace>><<set $breederOrphanageTotal += _curBabies>><</link>> - <</if>> - <<if $policies.cash4Babies == 1>> - | <<link "Auction Them">><<replace "#choice">><<print "You send the child<<if _curBabies > 1>>ren<</if>> to be sold at auction amongst other prestigious slaves. The winning bid for your offspring came in at @@.yellowgreen;<<print cashFormat(1000*_seed*_curBabies)>>.@@">><</replace>><<run cashX((1000*_seed*_curBabies), "babyTransfer")>><</link>> - <</if>> - <<if (($eliteFail > 0 || $eugenicsFullControl > 0) && $PC.pregSource == -1) || $PC.pregSource == -6>> - | <<link "Societal Elite">><<replace "#choice">><<print "You have decided to gift them to the Societal Elite to be raised as <<if _curBabies > 1>>proper members<<else>>a proper member<</if>> of the future world.">><</replace>><</link>> - <</if>> - <<if $PC.pregSource == -9>> - | <<link "Futanari Sisters">><<replace "#choice">><<print "You have decided to gift them to the Futanari Sisters to be raised to join them. They are more than happy to cover all the expenses for the gift you gave them — especially after they gave you a gift in return.">><</replace>><</link>> - <</if>> - </span> - <</if>> - - <<if $PC.ovaryAge >= 47 && $playerAging == 2>> - <br> - You are getting too old to have children; you feel like this may be your last. - <<set $PC.preg = -2>> - <</if>> - - <<if _wounded == 1>> - Things didn't quite go as planned, leaving you @@.health.dec;weak and wounded.@@ You'll need a couple weeks to recover from the ordeal before you're back on your feet. - <<run healthDamage($PC, 40)>> - <</if>> - -<</if>> /*closes gaveBirth*/ -<</if>> /*closes SE*/ - -/* belly sag is a thing now, USE IT! */ -<<set _badBirth = 0, WombFlush($PC)>> -<<if $PC.geneticQuirks.fertility+$PC.geneticQuirks.hyperFertility >= 4>> - <<set $PC.pregWeek = -2>> -<<elseif $PC.geneticQuirks.hyperFertility == 2>> - <<set $PC.pregWeek = -3>> -<<else>> - <<set $PC.pregWeek = -4>> -<</if>> -<<set $PC.belly = getPregBellySize($PC)>> -<<run delete $PC.curBabies>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index b9a614a2f4fae061c3708ecc1bc3fdaa4ceb407b..bf16a27359639fd4676eab13b952a96fb4a5b463 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -24,7 +24,7 @@ <<if Array.isArray($PESSevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random single slave event would have been selected from the following:'' <br> @@ -635,7 +635,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br>ERROR: bad PESS event $PESSevent <</switch>> -<<if $cheatMode == 1>> +<<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/uncategorized/PETS.tw b/src/uncategorized/PETS.tw index 9dea1f679fb981190e059363a442aa945a305a51..21ae86029cd23548bc3d2270e1c9e595057a8f96 100644 --- a/src/uncategorized/PETS.tw +++ b/src/uncategorized/PETS.tw @@ -24,7 +24,7 @@ <<if Array.isArray($PETSevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random two slave event would have been selected from the following:'' <br> @@ -363,7 +363,7 @@ You decide to knit up care's raveled sleave with a break in the spa. You have yo <br>ERROR: bad PETS event $PETSevent <</switch>> -<<if $cheatMode == 1>> +<<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw index 176d914f34e55baf3ab819bb96d8fe495efa8f38..48e119d2380cd6be003a6cac842fab038516de38 100644 --- a/src/uncategorized/REFS.tw +++ b/src/uncategorized/REFS.tw @@ -23,7 +23,7 @@ /* Some scenes are also stored in useGuard.tw, walkPast.tw, and toychest.tw */ <<if Array.isArray($REFSevent)>> - <<if $cheatMode === 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random future societies event would have been selected from the following:'' <br> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 02cf5d442326de2e2c739484032de1dd9ef86c90..117ddd93685468492db28755d61b62ecf25b63c2 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -24,7 +24,7 @@ <<if Array.isArray($RESSevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random single slave event would have been selected from the following:'' <br> @@ -44,11 +44,8 @@ <<set _clothesTemp = $activeSlave.clothes>> <<switch $RESSevent>> /*Some events start with the slave naked (any event that starts with the daily inspection, for example). Here we switch their clothing just for the image to load, then switch it back quickly so the player's choice is not messed up.*/ -<<case "age implant" "ara ara" "back stretch" "bad dream" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mindbroken morning" "modest clothes" "mods please" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave dick huge" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">> +<<case "age implant" "ara ara" "back stretch" "bad dream" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mods please" "orchiectomy please" "PA flirting" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave dick huge" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">> <<set $activeSlave.clothes = "no clothing">> -<<case "whore rebellious">> - /* this scene states they are wearing "thick, durable latex with temperature regulation and anchor points for restraint" no matter what they are assigned to wear. */ - <<set $activeSlave.clothes = "restrictive latex">> <<case "inconvenient labia">> /* "pulling down the compression shorts $he was wearing" */ <<if isItemAccessible.entry("sport shorts", "clothes")>> @@ -304,58 +301,6 @@ With $his back arched and $his thighs together $his <<if $activeSlave.butt > 5>> "<<S>>orry, <<Master>>," $he <<say>>s apologetically. "I'm okay. Ye<<s>>terday wa<<s>> arm day for me, and I went out a little too hard. My <<sh>>oulder<<s>> are kinda <<s>>ore, but I'm alright." <</if>> -<<case "bed snuggle">> - -<<= capFirstChar($assistant.name)>> wakes you in the morning, -<<if $assistant.personality <= 0>> - _hisA voice -<<else>> - <<switch $assistant.appearance>> - <<case "monstergirl">> - _hisA monster<<= _girlA>> avatar's sultry voice - <<case "shemale">> - _hisA shemale avatar's syrupy voice - <<case "amazon">> - _hisA amazon avatar's powerful voice - <<case "businesswoman">> - _hisA business<<= _womanA>> avatar's confident voice - <<case "fairy" "pregnant fairy">> - _hisA fairy avatar's adorable voice - <<case "schoolgirl">> - _hisA school<<= _girlA>> avatar's bubbly voice - <<case "loli" "preggololi">> - _hisA _loliA avatar's childish voice - <<case "angel">> - _hisA angel avatar's heavenly voice - <<case "cherub">> - _hisA cherub avatar's cheerful voice - <<case "incubus">> - _hisA incubus avatar's forceful voice - <<case "succubus">> - _hisA succubus avatar's sultry voice - <<case "imp">> - _hisA imp avatar's mischievous voice - <<case "witch">> - _hisA witch avatar's cocky voice - <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - _hisA avatar's piecemeal voice - <<default>> - _hisA voice - <</switch>> -<</if>> -gently calling your name. As you regain consciousness, you become aware of a weight on your chest<<if $PC.boobs >= 1400>> other than your heavy tits<</if>>. <<= App.UI.slaveDescriptionDialog($activeSlave)>> has snuggled up against you in $his sleep. $He's nude, and so are you; everyone sleeps naked in your penthouse. The sheet is down at your hips, leaving your upper bodies bare. <<if !hasAnyArms($activeSlave)>>$He's wormed $his <<if isAmputee($activeSlave)>>limbless<<else>>armless<</if>> torso under your arm,<<else>>$He has one arm across your <<if $PC.boobs >= 300>>chest, just below your breasts,<<elseif $PC.title == 1>>manly chest<<else>>flat chest,<</if>><</if>> and is using your shoulder as a pillow. You can feel $his warm breath across <<if $PC.boobs >= 300 || $PC.title == 0>>your nipple on that side, and it hardens slowly under your gaze<<else>>your well-developed pectorals<</if>>. $His <<if $activeSlave.boobs > 4000>>incredible tits are resting to either side of your ribcage, with one of them a heavy mass on your chest and the other trapped under $his<<elseif $activeSlave.boobs > 1200>>big boobs form a warm, soft mass between you<<else>>soft chest rests warmly against your ribcage<</if>><<if $activeSlave.belly >= 10000>>, beneath them, $his _belly <<if $activeSlave.bellyPreg >= 8000>>pregnant <</if>>belly rests <<if $PC.belly >= 1500>>against your own baby bump<<else>>upon your flat stomach<</if>><</if>>, and farther down, there's another source of warmth where $he's <<if !hasAnyLegs($activeSlave)>>got $his legless pelvis resting against your hip<<else>>straddling your thigh<</if>>. -<br><br> -"<<= properTitle()>>," $assistant.name calls again, "you <<if $assistant.personality <= 0>>set a wake up for this time<<else>>asked me to wake you at this time<</if>>. You have a business meeting that starts shortly." You begin to slide out from under $activeSlave.slaveName, but the -<<if $activeSlave.physicalAge > 30>> - $woman -<<elseif $activeSlave.physicalAge > 18>> - $girl -<<elseif $activeSlave.physicalAge > 12>> - teen -<<else>> - kid -<</if>> -clings to you in $his sleep as the warmth of your body begins to move away from $him. <<case "confident tanning">> @@ -927,27 +872,6 @@ One day, you give $him inconsequential orders, naturally addressing $him by $his <</if>> $He sets $his jaw and <<if canSee($activeSlave)>>manages to meet your eyes without flinching<<else>>meets your glare with a look of defiance<</if>>. -<<case "bondage gear">> - -One day, you catch sight of <<= App.UI.slaveDescriptionDialog($activeSlave)>> -<<if ($activeSlave.heels == 1 && shoeHeelCategory($activeSlave) == 0)>> - crawling -<<elseif shoeHeelCategory($activeSlave) > 1>> - tottering -<<else>> - walking -<</if>> -around stark naked. This is unacceptable, as $he has been ordered to wear humiliating and uncomfortable bondage gear. When confronted, -<<if !canTalk($activeSlave)>> - <<if !hasAnyArms($activeSlave)>> - $he tries to communicate $his reluctance to wear the clothing as best as $he can with various head movements and facial expressions<<if $activeSlave.bellyPreg >= 5000>>, including several nods towards $his rounded middle<</if>>. - <<else>> - $he uses gestures to communicate $his embarrassment with $his clothing, covering $his nipples, crotch, and anus with $his hand<<if hasBothArms($activeSlave)>>s<</if>> one after the other, and begging for clothes that do the same.<<if $activeSlave.bellyPreg >= 5000>> $He also gestures to $his rounded belly with a look of concern.<</if>> - <</if>> -<<else>> - $he <<say>>s fearfully, "I'm <<s>>orry, <<Master>>, but tho<<s>>e thing<<s>> are ju<<s>>t <<s>>o embarra<<ss>>ing!<<if $activeSlave.bellyPreg >= 5000>> I'm al<<s>>o worried for my <<if $activeSlave.pregType > 1>>babie<<s>>'<<else>>baby'<<s>><</if>> <<s>>afety.<</if>>" -<</if>> - <<case "vocal disobedience">> One morning, despite the fact that $he is not allowed to speak without being spoken to, <<= App.UI.slaveDescriptionDialog($activeSlave)>> <<if canSee($activeSlave)>>looks you directly in the eye<<else>>faces you<</if>> and asks @@ -1366,65 +1290,6 @@ During a routine inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> r Can I get fucked in the pu<<ss>>y, to <<s>>pread it out a little?" <</if>> -<<case "impregnation please">> - -<<set _faceUp = 1>> -<<set _superfetation = ($activeSlave.geneticQuirks.superfetation == 2 && $activeSlave.pregKnown == 1) ? 1 : 0>> - -<<= App.UI.slaveDescriptionDialog($activeSlave)>> -<<if _superfetation == 1>> - <<if $activeSlave.belly >= 750000>> - barely makes into your office before turning and leaning against $his _belly belly. Once $he manages to get comfortable against the strained mass, $he wiggles $his exposed <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. - <<set _faceUp = 0>> - <<elseif $activeSlave.belly >= 450000>> - slowly waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He carefully turns before your desk and leans forward with a grunt against $his _belly belly, allowing it to part $his legs while exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. $He gingerly rubs $his agitated stomach as $he wiggles $his bottom at you. - <<set _faceUp = 0>> - <<elseif $activeSlave.belly >= 300000>> - slowly waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He carefully turns before your desk and leans forward with a grunt against $his _belly belly, allowing it to part $his legs while exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. - <<set _faceUp = 0>> - <<elseif $activeSlave.belly >= 150000>> - nearly trips under $his own weight as $he waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He maneuvers over to the couch, leans forward with a grunt as $his _belly belly pushes into the floor, spreading $his legs and exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. - <<set _faceUp = 0>> - <<elseif $activeSlave.belly >= 60000>> - waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He maneuvers over to the couch, leans forward, spreads $his legs and exposes $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. - <<set _faceUp = 0>> - <<elseif $activeSlave.belly >= 10000>> - hastily waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch and $his _belly belly is sticking up in the air. $He then spreads $his legs and exposes $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. - <<else>> - hurries into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch. $He then spreads $his legs and uses one hand to spread $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> for you. - <</if>> - <<if !canTalk($activeSlave)>> - $He pantomimes pregnancy with <<if $activeSlave.belly < 10000>>$his other<<else>>one<</if>> hand, lewdly gesturing to ask you to cum inside $his still very fertile <<if $activeSlave.mpreg == 1>>ass<</if>>pussy. - <<else>> - "Plea<<s>>e put another baby in me, <<Master>>, I have plenty of room <<s>>till," - <<if ($activeSlave.lips > 70)>> - $he begs through $his dick-sucking lips. - <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $he begs through $his ridiculous piercings. - <<else>> - $he begs. - <</if>> - "I can't <<s>>tand it. I need to make you another <<s>>lave, <<Master>>. Plea<<s>>e <<s>>tuff my body with a<<s>> many future <<s>>laves a<<s>> my womb can hold. Make me your <<s>>lave production line." - <</if>> -<<else>> - hurries into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch. $He then spreads $his legs and uses one hand to spread $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> for you. - <br><br> - <<if !canTalk($activeSlave)>> - $He pantomimes pregnancy with $his other hand, lewdly gesturing to ask you to cum inside $his fertile <<if $activeSlave.mpreg == 1>>ass<</if>>pussy. - <<else>> - "Plea<<s>>e knock me up, <<Master>>," - <<if ($activeSlave.lips > 70)>> - $he begs through $his dick-sucking lips. - <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $he begs through $his ridiculous piercings. - <<else>> - $he begs. - <</if>> - "I can't <<s>>tand it. I need to make you another <<s>>lave, <<Master>>. Plea<<s>>e u<<s>>e my body a<<s>> your <<s>>lave factory." - <</if>> -<</if>> -$He <<if canSee($activeSlave)>>stares at you doe-eyed<<else>>$he faces you with the look of a child begging for candy<</if>>, desperately awaiting your answer. - <<case "fearful balls">> <<= App.UI.slaveDescriptionDialog($activeSlave)>> is still having obedience problems, particularly with $his proper role as a <<if $girl == "girl">>female <</if>>receptacle for cock. Though they're an almost too-obvious explanation, it's hard to avoid $his retention of $his gonads as a possible explanation for $his behavioral issues. They certainly contribute to $his less than perfectly feminine hormonal balance. @@ -1738,14 +1603,6 @@ $He constantly passes by your desk as you work, going back and forth between the <</if>> gingerly, supporting $his udders with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>><<if $activeSlave.belly >= 10000>> and $his _belly <<if $activeSlave.belly >= 3000>>pregnant<<else>>rounded<</if>> belly<</if>>, <<if $activeSlave.nipples == "inverted">>wincing<<else>>dribbling a little milk<</if>> as $he goes. The other way, $he has a distinctly relieved expression and $his breasts are much saggier. -<<case "whore rebellious">> - -<<= App.UI.slaveDescriptionDialog($activeSlave)>> is kicked out of bed early in the morning. $He's not yet obedient, but $he has to earn $his keep anyway. This means selling $his body, or in $his particular case, having $his unwilling body sold. $He knows the score and allows $himself to be stuffed into a special latex public whore suit. $He's learned the hard way that resisting being suited up just means $he'll be painfully punished before being suited up. -<br><br> -The suit is quite special. It is made of thick, durable latex with temperature regulation and anchor points for restraint. It is specially crafted to be able to accommodate its wearer's tits, belly,<<if $seeDicks != 0>> dick, balls,<</if>> and rear, however large. It has a hole at $his mouth that holds $his jaws well open, with a plug to fill it completely when not in use. $He breathes through a port at $his nose that muffles all noise, in and out.<<if ($activeSlave.dick > 0)>> $His cock is neglected inside the latex, with no means of access.<</if>><<if ($activeSlave.vagina != -1)>> There's a hole over $his pussy, of course.<</if>> Finally, there's a hole over $his anus. -<br><br> -$He will spend the day restrained in public, with your other slaves periodically stopping by to hydrate $him and wash out $his holes. - <<case "millenary">> Late one night, <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes to see you. Strangely, several of your other slaves are stealing glances at $him as $he does. $He seems oddly proud of $himself. Asked why, $he says, "It'<<s>> my millenary, <<Master>>. The arcology has logged me getting fucked <<= num(999)>> time<<s>>." The other slaves obviously view it as significant, too. @@ -1777,10 +1634,6 @@ $He looks doubtful, as though $he's wondering whether to make a request. Finally "May I have labiapla<<s>>ty, <<Master>>? It would make working out <<s>>o much ea<<s>>ier on my poor pu<<ss>>y." <</if>> -<<case "restricted smart">> - -During a routine inspection of <<= App.UI.slaveDescriptionDialog($activeSlave)>>, you notice that $he's behaving a little strangely. $He's participating in the inspection with almost manic attention, trying to anticipate your directions and hanging desperately on your every word. After a moment, you reflect that $he's a smart $girl, and is probably suffering for a lack of conversation. As you regard $him <<if (!hasAnyLegs($activeSlave))>>sitting <<if (hasAnyArms($activeSlave))>>helplessly<<else>>limblessly<</if>><<elseif !canWalk($activeSlave)>>kneeling<<else>>standing<</if>> there, $his <<if canSee($activeSlave)>>eyes almost scream<<else>>face almost screams<</if>> at you for some sort of stimulation. $His life is not without mental interest, but talking is one of the quintessential human behaviors, and having it taken away is very difficult for someone as intelligent as $him. A mute almost might have it easier, for $he is also denied the volubility through sign language that mute slaves under less restrictive rules often enjoy. - <<case "restricted profession">> <<set _shoutitoutloud = $enunciate.title.toUpperCase()>> @@ -2242,12 +2095,6 @@ $He swallows uncomfortably, frozen in place and staring at the floor. $His eyes <<set $activeSlave.attrKnown = 1>> <</if>> -<<case "penitent">> - -As <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes before you for routine inspection, it is obvious that $his penitent habit is having an effect. $He moves with exquisite care, desperate to minimize the chafing<<if $activeSlave.pregKnown == 1 && $activeSlave.belly >= 1500>>, especially on $his growing pregnancy<</if>>. $He seems totally concentrated on obedience: the constant discomfort often has the effect of forcing a slave to marshal all $his mental faculties in the service of pain avoidance. -<br><br> -$His responses to your routine questions are so mechanical and honest that you make an impromptu confession of it. You require $him to tell the full tale of all $his minor infractions against the rules, and even order $him to confess $his resistant thoughts to you as well. Past the ability to resist, $he pours out a stream of $his inner fears, hopes, and feelings about $his life as a sex slave. - <<case "resistant anal virgin">> <<= App.UI.slaveDescriptionDialog($activeSlave)>> has never had anything significant up $his ass. Living in $arcologies[0].name, $he can't have missed that anal sex is a part of most slaves' lives. $He <<if canSee($activeSlave)>>witnesses<<elseif canHear($activeSlave)>>hears<<else>>thinks about<</if>> sodomy several times a day, at least. @@ -2378,102 +2225,10 @@ To go by $his behavior, the likelihood that $he's actually eager to <<if $PC.dic $desc has run through the prescribed motions of a normal inspection, and you've reached the part of the routine where you usually ask the slave a few questions, give $him a few orders, or fuck $him. $His <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> are watching you closely<<else>>face is centered on you<</if>>, and $he's <<if canHear($activeSlave)>>listening carefully<<else>>waiting patiently<</if>> for direction. This is probably due to linguistic anxiety: $he can understand the most straightforward commands, but giving $him orders is often an exercise in <<if canSee($activeSlave)>>pointing and gesturing, or when that fails, simply<<else>>frustration, ending with you simply<</if>> pushing and pulling $his usually-compliant body into the proper place. -<<case "forbidden masturbation">> - -<<if $assistant.personality > 0>> - There is an alert from $assistant.name, in _hisA deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<= properMaster()>>. Ooh, $he's breaking the rules, <<= properMaster()>>!" _HisA avatar - <<switch $assistant.appearance>> - <<case "monstergirl">> - strokes _hisA dicks suggestively. - <<case "shemale">> - shifts uncomfortably, _hisA cock rock hard. - <<case "amazon">> - struts back and forth indignantly, _hisA bone bangles rattling. - <<case "businesswoman">> - licks _hisA cherry-red lips suggestively. - <<case "fairy" "pregnant fairy">> - giggles uncontrollably. - <<case "hypergoddess" "goddess">> - tutting disapprovingly, despite _hisA blushing. - <<case "loli">> - stares innocently at the scene. - <<case "preggololi">> - stares at the scene, blushing, while a hand caresses _hisA large belly. - <<case "angel">> - is covering _hisA face, occasionally peeping through _hisA fingers. - <<case "cherub">> - is trying _hisA hardest to look away, but keeps glancing back at the scene. - <<case "incubus">> - is openly jacking off to the sight. - <<case "succubus">> - is groping _himselfA to the sight. - <<case "imp">> - is hovering while viciously fingering _hisA cunt. - <<case "witch">> - is pretending to read from _hisA spell book, but is obviously watching over the top of it. - <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - is mimicking _hisA actions nearly perfectly. - <<case "schoolgirl">> - giggles nervously. - <<default>> - spins accusingly. - <</switch>> -<<else>> - There is a gentle alert from $assistant.name: "$activeSlave.slaveName is masturbating in violation of the rules, <<= properMaster()>>." -<</if>> -A video feed appears. -<<if ($activeSlave.chastityVagina)>> - In $his chastity belt, all $he can manage is furious nipple-<<if $activeSlave.nipples != "fuckable">>rubbing<<else>>fisting<</if>> and some furtive fingering of $his asshole. -<<elseif ($activeSlave.chastityPenis == 1)>> - In $his chastity cage, all $he can manage is furious nipple-<<if $activeSlave.nipples != "fuckable">>rubbing<<else>>fisting<</if>> and some furtive fingering of $his asshole. -<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> - Since $he's impotent from hormone treatment, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole. -<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0) && ($activeSlave.ballType == "sterile")>> - Since $he's impotent due to $his useless balls, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole. -<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>> - Since $he's impotent due to $his lack of balls, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole. -<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>> - Since $his dick requires far too much blood to get erect, $he's furiously massaging the semi-engorged monster. -<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 0)>> - Since $he's can't get it up, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole. -<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>> - $He's rubbing $his perineum desperately with one hand, and $his anus with the other, since $he lacks external genitalia. -<<elseif $activeSlave.vagina == -1>> - $He's furiously jacking off. -<<elseif $activeSlave.clit >= 3>> - $He's furiously jacking off $his clitdick. -<<else>> - $He's furiously polishing $his pearl. -<</if>> -$He's chosen to do it in a dark corner and looks like $he's hurrying; $he clearly knows this is forbidden. -<br><br> -<<= App.UI.slaveDescriptionDialog($activeSlave)>> does not hear your approach <<if canHear($activeSlave)>>until you're very close.<<else>>but soon realizes your presence.<</if>> $He starts and tries to look normal. -<<if !canTalk($activeSlave)>> - $He nervously gestures that $he wasn't doing anything. -<<else>> - "I wa<<s>>n't doing anything, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>!" $he lies. -<</if>> - <<case "hates oral">> <<= App.UI.slaveDescriptionDialog($activeSlave)>> has been in your service long enough to know that oral sex is a daily fact of life for most slaves, and that most slaves are not only required to put up with cum, but to love it, too — or at least be able to fake enjoyment convincingly. $He's <<if canSee($activeSlave)>>seen cum spattered on other slaves' faces, pooling in their mouths, and dripping from their asses only to be licked up by other slaves<<elseif canHear($activeSlave)>>heard cum spattering across other slaves' faces, the sound of it in their mouths, dripping from their asses, and more<<else>>felt seminal fluid on $his skin and on $his lips, always coercively or accidentally<</if>>. It's clear from $activeSlave.slaveName's recent reactions to these acts that $he's quite disgusted by oral sex in general and cum in particular. Depending on your point of view, this could be a flaw for $him to overcome or a weakness you can exploit. -<<case "mindbroken morning">> - -It's a sunny morning, with rare mild weather, and you're stuck at your desk, as usual. After the typical rush of slaves clears the kitchen after the breakfast hour, you see one peel off to stand out on a balcony for a moment with the light on $his face. You pay little attention to such a trifle, but then notice that it's <<= App.UI.slaveDescriptionDialog($activeSlave)>>. -<br><br> -You head out and find that $he's looking up at the sun with $his <<= App.Desc.eyesColor($activeSlave)>> closed, letting the warmth and light envelop $his -<<if ($activeSlave.face > 95)>> - incredible -<<elseif ($activeSlave.face > 40)>> - gorgeous -<<elseif ($activeSlave.face > 10)>> - pretty -<<else>> - homely -<</if>> -face<<if $activeSlave.belly >= 5000>> and taut, _belly dome of a belly<</if>>. $He hasn't gotten completely ready for $his day yet, and $his $activeSlave.skin skin is clean and quite bare. Despite $his small remaining mental capacity, it seems $he's still capable of the minor pleasure of enjoying the sunlight. It is very probably the only enjoyable thing $he'll register today. - <<case "masterful entertainer">> It's Friday evening, the most socially important part of the week in $arcologies[0].name. <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to be free this evening, and your schedule is open, too. Lately, $he's been putting on a tour de force of seduction, erotic dance, and lewd entertainment whenever $he gets the chance to catch someone's eye<<if $activeSlave.belly >= 5000>>, even with $his <<if $activeSlave.bellyPreg >= 3000>>advanced pregnancy<<elseif $activeSlave.bellyImplant >= 3000>>_belly rounded belly<<else>>sloshing <<print $activeSlave.inflationType>>-filled stomach<</if>><</if>>. There are a number of events tonight you could attend with $him on your arm. @@ -2496,7 +2251,7 @@ $He's sleeping soundly, $his breaths coming deep and slow. Most slaves where $he You cross paths with <<= App.UI.slaveDescriptionDialog($activeSlave)>> as $he moves from the living area to $activeSlave.assignment, just starting $his day. $He's full of energy, and $his succubus outfit is delightful. $He <<if canSee($activeSlave)>>sees your glance<<else>>recognizes your whistle<</if>> and greets you with a <<if canSee($activeSlave)>>wicked glint in $his eye<<else>>wicked smirk on $his face<</if>>, bowing a bit to show off $his <<if $activeSlave.boobs > 6000>>bare, inhumanly large breasts<<elseif $activeSlave.lactation > 0>>bare udders, heavy with milk<<elseif $activeSlave.boobsImplant > 0>>naked fake tits<<elseif $activeSlave.boobs > 800>>heavy, naked breasts<<elseif $activeSlave.boobs > 300>>naked little tits<<else>>pretty chest<</if>> and then continuing towards you with a pirouette. $His tail bounces flirtily, holding the back of $his skirt up to show off <<if $activeSlave.butt > 8>>$his absurdly wide bottom<<elseif $activeSlave.analArea > 3>>the broad area of puckered skin around $his slutty asspussy<<elseif $activeSlave.buttImplant > 0>>$his butt implants<<elseif $activeSlave.butt > 5>>$his big butt<<elseif $activeSlave.anus > 1>>a hint of $his asshole, which $his cute buttocks don't quite conceal<<else>>$his cute bottom<</if>>. <br><br> -$He looks like <<if $activeSlave.bellyPreg >= 1500 || $activeSlave.bellyImplant >= 1500>>a lusty, pregnant, hungry<<elseif $activeSlave.bellyFluid >= 1500>>a gluttonous, over-fed but still hungry<<elseif $activeSlave.height > 180>>an imposing, hungry<<elseif $activeSlave.muscles > 30>>a muscular, hungry<<elseif $activeSlave.weight > 10>>a well-fed but still hungry<<elseif $activeSlave.energy > 95>>desperately hungry<<else>>cute, hungry little<</if>> sex demon, and you tell $him so. +$He looks like <<if $activeSlave.bellyPreg >= 1500 || $activeSlave.bellyImplant >= 1500>>a lusty, pregnant, hungry<<elseif $activeSlave.bellyFluid >= 1500>>a gluttonous, over-fed but still hungry<<elseif $activeSlave.height > 180>>an imposing, hungry<<elseif $activeSlave.muscles > 30>>a muscular, hungry<<elseif $activeSlave.weight > 10>>a well-fed but still hungry<<elseif $activeSlave.energy > 95>>a desperately hungry<<else>>a cute, hungry little<</if>> sex demon, and you tell $him so. <<if $activeSlave.intelligence > 50>> The clever $girl knows all about succubi. <<elseif $activeSlave.intelligenceImplant >= 15>> @@ -3168,12 +2923,6 @@ I didn't mean to <<s>>ound con<<c>>eited, either. I gue<<ss>> I'm <<s>>till gett <<set $activeSlave.fetishKnown = 1>> <</if>> -<<case "arcade sadist">> - -You happen to come across <<= App.UI.slaveDescriptionDialog($activeSlave)>> during one of $his rest periods. $He's lying on a couch in the slave areas, <<if canSee($activeSlave)>>staring at the ceiling above $him<<else>>leaning back<</if>> with a dreamy expression on $his face. $He's <<if $activeSlave.rules.release.masturbation == 1>>touching $himself idly.<<else>>not allowed to touch $himself, but $he's extremely aroused.<</if>> Whatever's on $his mind, it's so absorbing that $he doesn't realize you're there until you're standing over $him. -<br><br> -"<<S>>orry, <<Master>>," $he <<say>>s apologetically, <<if $activeSlave.belly >= 10000>>struggling<<else>>scrambling<</if>> to $his feet. "I didn't noti<<c>>e you there." <<if canSee($activeSlave)>>Seeing your questioning look<<elseif canHear($activeSlave)>>Hearing your lack of response<<else>>Sensing a request to continue<</if>>, $he explains $himself further. "I was ju<<s>>t thinking about, um, my favorite pla<<c>>e. I can almo<<s>>t get off ju<<s>>t by thinking about it." There's a wild, perverted gleam <<if canSee($activeSlave)>>in $his <<= App.Desc.eyesColor($activeSlave)>><<else>>on $his face<</if>>. $He's a confirmed sadist, so whatever $his favorite mental masturbation is probably quite strong. - <<case "servant maid">> <<= App.UI.slaveDescriptionDialog($activeSlave)>> is scheduled to clean your office today, just one of $his many duties as a servant in your penthouse. $He pauses in the doorway of your office for a moment, only entering once it becomes clear that you're not going to be using $him immediately. @@ -3258,24 +3007,6 @@ As another long week draws to a close, <<= App.UI.slaveDescriptionDialog($active <<Master>>. It'<<s>> a little weird, i<<s>>n't it, for <<s>>uch an old $woman to be with gra<<c>>ed with <<s>>uch a lovely <<Master>>?" <</if>> -<<case "old PC age difference">> - -As another long week draws to a close, <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to walk past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns $his $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls. -<br><br> -<<if $activeSlave.mother != -1 && $activeSlave.father != -1>> - <<setSpokenLocalPronouns $activeSlave $activeSlave>> - "<<Master>>, you're <<s>>o old," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that I'm young enough to be your <<daughter>>, <<Master>>. It'<<s>> a little weird, i<<s>>n't it?" -<<else>> - "<<Master>>, you're <<s>>o old," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "Compared to you, I'm nothing, <<Master>>. I feel <<s>>o inadequate and I don't want to - <<if $activeSlave.mother == -1>> - have been a wa<<s>>te of time for you. I'm <<s>>orry you had to carry me in<<s>>ide you for nine month<<s>>, and I'm <<s>>orry I <<s>>tretched you out when I wa<<s>> born, - <<else>> - be a di<<s>>appointment to you, - <</if>> - <<Master>>. I<<s>> it a little weird to feel thi<<s>> way?" -<</if>> - - <<case "nice guys">> One afternoon, $assistant.name informs you $he that $he has a non-urgent matter that you might be interested in overseeing personally. @@ -3553,41 +3284,6 @@ sighing contentedly at the feeling. <<if canSee($activeSlave)>>$He opens $his ey "Good morning, <<Master>>," $he <<say>>s properly, doing $his best to be good. $He <<if canSee($activeSlave)>>watches you closely<<elseif canHear($activeSlave)>>listens closely<<else>>waits patiently<</if>>, ready to obey any command you might give $him. <</if>> -<<case "modest clothes">> - -<<if SlaveStatsChecker.checkForLisp($activeSlave)>> - <<set _clothes = lispReplace($activeSlave.clothes)>> -<<else>> - <<set _clothes = $activeSlave.clothes>> -<</if>> - -Near the end of $his weekly inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> asks you a question. The inspection happens to have been at the start of $his day, and after you're done with $him, $he'll be heading off to get dressed. $He's naked for inspection, of course, -<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>which has the humiliation fetishist $desc decently aroused<<else>>but $he's a good $desc, and $he trusts you, so $he has no problem at all with being seen nude<</if>>. In fact, that's what $he asks you about. -<br><br> -"<<Master>>," $he <<say>>s, "may I plea<<s>>e wear <<s>>omething a little more revealing, ju<<s>>t for today?" $He <<if $activeSlave.trust > 95>>trusts you completely, enough to have confidence that you'll understand $he isn't<<else>>bites $his lip, realizing that $he might have come across as<</if>> questioning you. "Wearing -<<switch $activeSlave.clothes>> -<<case "a nice maid outfit">> - a proper maid'<<s>> outfit -<<case "a nice nurse outfit">> - a proper nur<<s>>e'<<s>> outfit -<<case "nice business attire">> - a <<s>>uit -<<case "battledress">> - a _clothes -<<default>> - _clothes -<</switch>> -i<<s>> ni<<c>>e," $he <<if $activeSlave.trust > 95>>allows<<else>>hurries to add<</if>>. -<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>"It'<<s>> not really embara<<ss>>ing, though. It would be <<s>>o <<s>>e<<x>>y to be, um, falling out of my clothe<<s>>. -<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>"But they cover my a<<ss>>hole. -<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>"But they cover my boob<<s>>. -<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>"But it cover<<s>> up my pregnan<<c>>y. -<<elseif $activeSlave.assignment == "whore">>"But I al<<s>>o like being a pro<<s>>titute, <<Master>>. It'd be fun to try looking like a total whore. -<<elseif $activeSlave.assignment == "serve the public">>"But I al<<s>>o like being a public <<s>>lut, <<Master>>. It'd be fun to really flaunt it. -<<else>>"But it'd be fun and different to wear <<s>>omething really naughty. -<</if>> -May I plea<<s>>e try out <<s>>omething <<s>>kimpier today?" - <<case "hyperpreg stuck">> You are alerted to an issue regarding your @@ -3968,7 +3664,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. <<run seX($activeSlave, "vaginal", $PC, "penetrative")>> <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 5, 0, -1, 1)>> + <<run knockMeUp($activeSlave, 5, 0, -1)>> <</if>> <<elseif canDoAnal($activeSlave)>> force $his ass into the air. @@ -3981,7 +3677,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</if>> $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 5, 1, -1, 1)>> + <<run knockMeUp($activeSlave, 5, 1, -1)>> <</if>> <<run seX($activeSlave, "anal", $PC, "penetrative")>> <<else>> @@ -4467,7 +4163,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. You struggle underneath $his grip and manage to wriggle your arms free. You push at the amorous bull and attempt to lift the heavy $girl off you. $activeSlave.slaveName takes this poorly and rams $his gigantic dick straight into your vagina and through your cervix. You pass out from the pain. <br><br> You awaken some time later, your crotch extremely sore and your belly slightly bloated. Most of $his deposit has flowed back out of you, but you still feel a fair amount sloshing inside you. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child. - <<= knockMeUp($PC, 100, 0, $activeSlave.ID, 1)>> + <<run knockMeUp($PC, 100, 0, $activeSlave.ID)>> <<run seX($activeSlave, "penetrative", $PC, "vaginal", 4)>> <</if>> <</replace>> @@ -4477,7 +4173,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. $He cums so hard $he nearly blacks out; that will be your best chance to escape $him. You question your choice as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; should $he force through it, you may not be able to throw $him off. With a loud grunt, $he does just that. $He may be deep seated now, but you aren't going to give up. You feel $him tense up; now's your chance! As $he climaxes, you slip a leg around $his side and push $him with all your might. $He flops over, pulling out as $he spurts $his massive load and nailing you right in the face. You spit the jism out of your mouth and quickly restrain the dribbling bull. <br><br> Panting, you look over the damage: Your pussy is gaping, there is semen everywhere, and given the steady flow from you, $he likely got some of that ejaculation in you. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you, a fertile _womanP. $He only did what $he was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume you've been impregnated. - <<= knockMeUp($PC, 20, 0, $activeSlave.ID, 1)>> + <<run knockMeUp($PC, 20, 0, $activeSlave.ID)>> <<run seX($activeSlave, "penetrative", $PC, "vaginal")>> <</replace>> <</link>> @@ -4527,7 +4223,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<else>> to $activeSlave.slaveName snoring beside you, $his massive cock soft and slightly drooling cum. Most of $his deposit has flowed back out of you, but you're still heavy with sperm. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child. <</if>> - <<= knockMeUp($PC, 100, 0, $activeSlave.ID, 1)>> + <<run knockMeUp($PC, 100, 0, $activeSlave.ID)>> <<run seX($activeSlave, "penetrative", $PC, "vaginal", 4)>> <</replace>> <</link>> @@ -4790,137 +4486,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</replace>> <</link>> -<<case "bed snuggle">> - -<<link "Make the meeting">> - <<replace "#result">> - <<set _meetingBonus = Math.trunc($cash/10000)*1000>> - <<if _meetingBonus > 5000>> - <<set _meetingBonus = 5000>> - <<elseif _meetingBonus < 1000>> - <<set _meetingBonus = 1000>> - <</if>> - You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of $his mental state. It suggests that $his dreaming mind is quite comfortable with your presence<<if canSmell($activeSlave)>> and even smell<</if>>. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick != 0>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up. - <<run cashX(_meetingBonus, "event", $activeSlave)>> - <</replace>> -<</link>> -<br><<link "Call in from where you are">> - <<replace "#result">> - <<set _meetingBonus = Math.trunc($cash/10000)*1000>> - <<if _meetingBonus > 5000>> - <<set _meetingBonus = 5000>> - <<elseif _meetingBonus < 1000>> - <<set _meetingBonus = 1000>> - <</if>> - You tell $assistant.name to inform your business contacts that you'll be attending the meeting by telepresence. A camera mounted above you focuses tightly on your face, making it look like you're relaxing, but concealing the fact that you have a naked - <<if $activeSlave.physicalAge > 30>> - $woman - <<elseif $activeSlave.physicalAge > 18>> - $girl - <<elseif $activeSlave.physicalAge > 12>> - teen - <<else>> - kid - <</if>> - draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick != 0>>sucking your dick<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eating you out<</if>>, out of frame. They're @@.health.dec;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick != 0>>one of $his blowjobs<<else>>oral sex with $him<</if>>. - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <<run cashX(_meetingBonus, "event", $activeSlave)>> - <<run repX(forceNeg(50), "event", $activeSlave)>> - <<set $activeSlave.devotion += 4>> - <</replace>> -<</link>> -<br><<link "Go back to sleep">> - <<replace "#result">> - You tell $assistant.name to cancel the appointment, plant a kiss atop your bedmate's sleeping head, and go back to sleep yourself, with the peerless comfort of a warm, naked - <<if $activeSlave.physicalAge > 30>> - $woman - <<elseif $activeSlave.physicalAge > 18>> - $girl - <<elseif $activeSlave.physicalAge > 12>> - teen - <<else>> - kid - <</if>> - cuddled up beside you. <<= capFirstChar($assistant.name)>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his <<= App.Desc.eyesColor($activeSlave)>> as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on $his face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>> - <br><br> - Since you're awake, $he rolls onto $his face and then further, to place $his back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag $his $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>$his small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick != 0>>your stiffening cock beginning to press against <<if !hasBothLegs($activeSlave)>>$his perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina != -1>> and down to where your pussy begins<</if>><<else>>the place between $his thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if !hasAnyArms($activeSlave)>>$He does $his best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently <<if hasBothArms($activeSlave)>>masturbate with the other<<else>>grind against you<</if>><</if>><</if>>. - <<if $PC.dick != 0>> - <<if ($activeSlave.vagina > 0) && ($activeSlave.anus > 0) && canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between $his pussylips. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. - <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - $He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal - <<set _didAnal = 1>> - <<else>> - $He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into $his soaking cunt. You make love - <<set _didVaginal = 1>> - <</if>> - <<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - $He cocks $his hips and so that your cock is pressing against $his soaked cunt. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. - <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1) && isFertile($activeSlave)>> - $He pushes against you until you are fully inserted into $his pussy. $He's ripe for impregnation and needs your baby in $him. You make love - <<elseif ($activeSlave.vagina > 2)>> - $He easily slides your cock into $his loose pussy. You make love - <<else>> - $He hikes $himself up a bit, and then gently slides your cock into $his tight pussy. You make love - <</if>> - <<set _didVaginal = 1>> - <<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>> - $He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. - <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - $He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal - <<set _didAnal = 1>> - <<elseif ($activeSlave.anus > 2)>> - $He hikes $himself up a bit, and then easily slides your cock into $his loose rectum. You share loving anal - <<set _didAnal = 1>> - <<else>> - $He decides against buttsex, and <<if !hasBothLegs($activeSlave)>>contents $himself with grinding<<else>>presses $his thighs together so you can frot $him.<</if>> After making love - <</if>> - <<else>> - You <<if !hasBothLegs($activeSlave)>>grind against $him<<else>>frot $him<</if>> - <</if>> - <<else>> - You reach around $him and attend to a nipple with each hand, spreading your attention to the whole breast once they<<if $activeSlave.nipples != "fuckable">>'re perfectly stiff<<else>>'ve tightened around your fingers<</if>>. After sharing gentle lovemaking - <</if>> - for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down $his front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across $him <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you - <<if !canTalk($activeSlave)>> - and panting in lieu of an exclamation. - <<else>> - and <<say>>ing "oh" over and over again. - <</if>> - <<if $PC.dick != 0>>$He clenches against your dick,<<if $PC.vagina != -1>> so hard that you can feel the rush of blood into your cunt,<</if>><<else>>$He works your pussy harder,<</if>> getting you off in turn, and then rolls over to plant a whole-hearted kiss on your lips. - <<set $activeSlave.devotion += 4>> - <<if _didAnal == 1>> - <<= VCheck.Anal($activeSlave, 1)>> - <<elseif _didVaginal == 1>> - <<= VCheck.Vaginal($activeSlave, 1)>> - <</if>> - <</replace>> -<</link>> -<br><<link "Spend the day in bed">> - <<replace "#result">> - What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistant.name to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick != 0>>get a blowjob<<if $PC.vagina != -1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick != 0>>shot your load down $his throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<elseif canHear($activeSlave)>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed. - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - You have a meal delivered, - <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> - fuck $him, - <<set _didVaginal = 1>> - <<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>> - fuck $his butt, - <<set _didAnal = 1>> - <<else>> - fuck $him, - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <</if>> - and then share a shower and a nap. Thus invigorated, you decide to tour the arcology's nightlife, and tell $him $he'll accompany you. $He hurries to get ready, filled with excitement. A lovely day. - <<set $activeSlave.trust += 4>> - <<if _didAnal == 1>> - <<= VCheck.Anal($activeSlave, 1)>> - <<elseif _didVaginal == 1>> - <<= VCheck.Vaginal($activeSlave, 1)>> - <</if>> - <</replace>> -<</link>> - <<case "confident tanning">> <<link "Ask $him if $he needs help with $his tan">> @@ -6642,7 +6207,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>> <</if>> <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 25, 2, -2, 1)>> + <<run knockMeUp($activeSlave, 25, 2, -2)>> <</if>> <<else>> <<if $activeSlave.vagina == 0>> @@ -6650,7 +6215,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>> <</if>> <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 25, 0, -2, 1)>> + <<run knockMeUp($activeSlave, 25, 0, -2)>> <</if>> <</if>> <<elseif canDoAnal($activeSlave)>> @@ -6659,7 +6224,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>> <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 50, 1, -2, 1)>> + <<run knockMeUp($activeSlave, 50, 1, -2)>> <</if>> <</if>> <</if>> @@ -6750,85 +6315,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</link>> <</if>> -<<case "bondage gear">> - -<<link "Let $him go naked">> - <<replace "#result">> - <<if canWalk($activeSlave)>>$He skips away happily,<<elseif isAmputee($activeSlave)>>$He wriggles $his stumps with pleasure,<<else>>$He cheerfully leaves your office,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;$his fear@@ of you. - <<set $activeSlave.devotion -= 5, $activeSlave.trust += 4>> - <</replace>> -<</link>> -<br><<link "Force $him to choose between $his straps and public nudity">> - <<replace "#result">> - You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell $him $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that $his only other option is to put $his proper clothes back on and be a good little bitch. - <<if $activeSlave.fetish == "humiliation">> - $He @@.hotpink;happily accepts the alternative,@@ - <<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>> - $his dick hardening - <<elseif $activeSlave.dick > 0>> - $his dick leaking precum - <<elseif $activeSlave.vagina > 0>> - $his pussy moistening - <<else>> - $his nipples <<if $activeSlave.nipples != "fuckable">>hardening<<else>>swelling<</if>> - <</if>> - with anticipation. - <<set $activeSlave.devotion += 4, $activeSlave.clothes = "no clothing">> - <<if $activeSlave.fetishKnown == 0>> - That was not the response you expected; turns out $he has a @@.lightcoral;humiliation fetish.@@ - <<set $activeSlave.fetishKnown = 1>> - <</if>> - <<else>> - $He shudders and @@.gold;hurries to get $his straps back on.@@ - <<set $activeSlave.trust -= 5>> - <</if>> - <</replace>> -<</link>> -<<if $activeSlave.buttplug == "none" && ($activeSlave.vagina < 0 || ($activeSlave.vaginalAccessory == "none" && $activeSlave.vaginalAttachment == "none"))>> - <br><<link "Add dildos to $his gear">> - <<replace "#result">> - You tell $him that you understand, and that you will get $him some new clothing. $He is thrilled, but $his pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for $his <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole. - <<if $activeSlave.anus == 0 && $activeSlave.vagina == 0 && canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> - You pause before getting $him dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over, opting to start with $his tight pussy. - <<= VCheck.Both($activeSlave, 1)>> - <<elseif $activeSlave.anus == 0 && canDoAnal($activeSlave)>> - You pause before getting $him dressed; there's little reason to waste $his anal virginity on a plug. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight anus. - <<= VCheck.Anal($activeSlave, 1)>> - <<elseif $activeSlave.vagina == 0 && canDoVaginal($activeSlave)>> - You pause before getting $him dressed; there's little reason to waste $his virginity on a plug. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight pussy. - <<= VCheck.Vaginal($activeSlave, 1)>> - <</if>> - For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> $his <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly < 1500>>is<</if>> being penetrated by $his own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@ - <</replace>> - <<set $activeSlave.devotion += 4>> - <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>> -<</if>> -<<if $arcade > 0>> - <br><<link "Sentence $him to a month in the arcade">> - <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. - <<if ($activeSlave.muscles > 30)>> - $His powerful form has to be sedated for immurement in the arcade. - <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. - <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. - <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring $him in the arcade difficult. - <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. - <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring $him in the arcade pathetically easy. - <<else>> - $His thin form makes immuring $him in the arcade pathetically easy. - <</if>> - After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints. - <<= assignJob($activeSlave, "be confined in the arcade")>> - <<set $activeSlave.sentence = 4>> - <</replace>> - <</link>> -<</if>> - <<case "vocal disobedience">> <<link "Give $him a rough spanking">> @@ -7261,10 +6747,10 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<run seX($activeSlave, "anal", $PC, "penetrative")>> <<run seX($activeSlave, "anal", _S.HeadGirl, "penetrative")>> <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 5, 0, -1, 1)>> + <<run knockMeUp($activeSlave, 5, 0, -1)>> <</if>> <<if canImpreg($activeSlave, _S.HeadGirl)>> - <<= knockMeUp($activeSlave, 5, 0, $HeadGirlID, 1)>> + <<run knockMeUp($activeSlave, 5, 0, $HeadGirlID)>> <</if>> <</replace>> <</link>> @@ -8323,237 +7809,18 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</replace>> <</link>><<if ($activeSlave.chastityVagina)>> //This option will remove $his chastity belt//<</if>> -<<case "impregnation please">> +<<case "fearful balls">> -<<link "Put a slave in $him">> - <<if $activeSlave.mpreg == 1>> - <<if !canDoAnal($activeSlave)>> - You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come. - <</if>> - <<else>> - <<if ($activeSlave.chastityVagina)>> - You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come. - <</if>> - <</if>> +<<link "Threaten $him with castration">> <<replace "#result">> - Despite $himself, $he breaks down when $he feels your cock enter $his - <<if $activeSlave.mpreg == 1>> - <<if ($activeSlave.anus == 1)>> - deliciously tight - <<elseif ($activeSlave.anus == 2)>> - well experienced - <<else>> - fucked-out - <</if>> - ass. - <<else>> - <<if ($activeSlave.vagina == 1)>> - deliciously tight - <<elseif ($activeSlave.vagina == 2)>> - well experienced - <<else>> - fucked-out - <</if>> - cunt. - <</if>> - $He <<if _superfetation == 1>>grinds against you<<else>>smiles up reassuringly at you<</if>> to let you know $he's not in pain or anguish, blinking away $his happy tears. - <<if _faceUp == 1>> - $He reaches up to hug $himself close to you, - <<if $activeSlave.belly >= 5000>> - but the gravid swell of $his current pregnancy thwarts $his efforts as you take $him. - <<elseif ($activeSlave.boobs < 600) && $activeSlave.belly < 5000>> - and $his modest breasts let $him snuggle close to you, face-to-face, as you take $him. - <<elseif $activeSlave.belly >= 5000 && $activeSlave.boobs < 600>> - $his big $activeSlave.inflationType stuffed belly pushing against you as you take $him. - <<elseif ($activeSlave.boobs < 10000)>> - and $his big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him. - <<else>> - but $his massive tits stop $him from bringing $himself too close to you as you take $him. - <</if>> - <<else>> - $He reaches back to take your hand, slowly bringing it back to the swell of $his baby bump. - <</if>> - $He enjoys $himself immensely, but $he loses it again when $he feels your - <<if $PC.balls >= 30>> - <<if _superfetation == 1>> - seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. - <<else>> - seed fill $his cramped womb and start to backflow. - <</if>> - <<elseif $PC.balls >= 14>> - seed pumping into $him until $his womb is stuffed with cum. - <<elseif $PC.balls >= 9>> - seed pouring into $him. - <<else>> - seed. - <</if>> - $He starts blubbering inelegantly and + You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself. <<if !canTalk($activeSlave)>> - gesturing - <<elseif ($activeSlave.lips > 70) || ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - lisping - <<else>> - whimpering - <</if>> - @@.hotpink;$his thanks.@@ - <<set $activeSlave.devotion += 4>> - <<if $activeSlave.mpreg == 1>> - <<run seX($activeSlave, "anal", $PC, "penetrative")>> + $He frantically uses $his hand<<if hasBothArms($activeSlave)>>s<</if>> to promise you perfect obedience if you'll only spare $him from emasculation. <<else>> - <<run seX($activeSlave, "vaginal", $PC, "penetrative")>> + $He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!" <</if>> - <<= knockMeUp($activeSlave, 50, 2, -1, 1)>> - <</replace>> -<</link>> -<<if $activeSlave.mpreg == 0>> - <br><<link "Use $his ass but give $him what $he wants">> - <<replace "#result">> - You tell $him that impregnation will be $his reward if $he's a good little buttslut<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityAnus)>> as you undo $his chastity<</if>>. - $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He - <<if ($activeSlave.anus == 1)>> - winces in pain as $he lowers $his tight - <<elseif ($activeSlave.anus == 2)>> - moans with discomfort as $he lowers $his tight - <<else>> - barely reacts as $he lowers $his huge - <</if>> - butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick. - <<if _faceUp == 1>> - Since $he's facing you, you get a great view of $his body in motion. - <<else>> - $He's so heavy with child, you eventually have to give $him a hand as $he steadily tires. - <</if>> - $His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he - <<if !canTalk($activeSlave)>> - takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he wishes $he could get pregnant anally. - <<else>> - pants, "That'<<s>> <<s>>o good, <<Master>>. I wi<<sh>> you could get my a<<ss>> pregnant." - <</if>> - When you're close, you scoot back to pull yourself out and $he spears $his cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and $he @@.hotpink;cries with joy@@ at feeling your hot - <<if $PC.balls >= 30>> - <<if _superfetation == 1>> - seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. - <<else>> - seed fill $his cramped womb and start to backflow. - <</if>> - <<elseif $PC.balls >= 14>> - seed pumping into $him until $his womb is stuffed with cum. - <<elseif $PC.balls >= 9>> - seed pouring into $him. - <<else>> - seed. - <</if>> - <<set $activeSlave.devotion += 4>> - <<run seX($activeSlave, "vaginal", $PC, "penetrative")>> - <<run seX($activeSlave, "anal", $PC, "penetrative")>> - <<= knockMeUp($activeSlave, 50, 0, -1, 1)>> - <</replace>> - <</link>> - <br><<link "Sneak it into $his ass instead">> - <<replace "#result">> - Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>notices<</if>> you coming over and kneeling down to line your cock up with the entrance to $his - <<if ($activeSlave.vagina == 1)>> - deliciously tight - <<elseif ($activeSlave.vagina == 2)>> - well experienced - <<else>> - fucked-out - <</if>> - cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to $his - <<if ($activeSlave.anus == 1)>> - painfully inexperienced - <<elseif ($activeSlave.anus == 2)>> - tight - <<else>> - loose - <</if>> - ass and shove it up there instead. $He knows better than to protest, but the expression on $his face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop $his fugue of disappointment you give $him a light slap on the cheek to get $his attention, and then instruct $him that it's not $his place - <<if _superfetation == 1>> - to decide how pregnant he gets to be. - <<else>> - to plan $his pregnancies. - <</if>> - They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as - <<if ($activeSlave.anus == 1)>> - $he grimaces involuntarily at your painful use of $his tight butthole. - <<elseif ($activeSlave.anus == 2)>> - $he takes your cock up $his tight ass. - <<else>> - $his gaping anus makes occasional lewd noises as you pound it. - <</if>> - <<set $activeSlave.trust -= 5>> - <<run seX($activeSlave, "anal", $PC, "penetrative")>> - <</replace>> - <</link>> -<<else>> - <br><<link "Use $his ass but finish across $his back">> - <<replace "#result">> - You tell $him that impregnation will be $his reward if $he's a good little buttslut. $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He - <<if ($activeSlave.anus == 1)>> - winces in pain as $he lowers $his tight - <<elseif ($activeSlave.anus == 2)>> - moans with discomfort as $he lowers $his tight - <<else>> - barely reacts as $he lowers $his huge - <</if>> - butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick. - <<if _faceUp == 1>> - Since $he's facing you, you get a great view of $his body in motion. - <<else>> - $He's so heavy with child, you eventually have to give $him a hand as $he steadily tires. - <</if>> - $His stimulation is having an effect, and after a while $he - <<if !canTalk($activeSlave)>> - takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he is thrilled to be able to get anally pregnant<<if _superfetation == 1>> and is about to conceive again<</if>>. - <<else>> - pants, "That'<<s>> <<s>>o good, <<Master>>. I'm <<s>>o glad my a<<ss>> i<<s>> fertile." - <</if>> - When you're at your limit, you quickly pull - <<if _faceUp == 1>> - out, slide slightly further under $him - <<else>> - out - <</if>> - and thrust up between $his asscheeks, blowing your hot seed - <<if $PC.balls >= 30>> - across $his entire back. - <<elseif $PC.balls >= 9>> - across $his back. - <<else>> - across $his lower back. - <</if>> - $He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug; it must have slipped out under all $his enthusiasm. - <<set $activeSlave.devotion -= 5>> - <<run seX($activeSlave, "anal", $PC, "penetrative")>> - <</replace>> - <</link>> -<</if>> -<<if ($cumSlaves >= 5)>> - <br><<link "Use the Dairy cockmilk to impregnate $him">> - <<replace "#result">> - You tell $him $he'll be having everyone's children. $He looks puzzled until you put $him on the couch<<if hasBothLegs($activeSlave)>>, legs spread,<</if>> and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his _belly belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about $his other business with a @@.hotpink;deeply pleased@@ expression on $his face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection. - <<set $activeSlave.devotion += 10>> - <<set _cumSlaves = $slaves.filter(function(s) { return (s.assignment == "get milked" || s.assignment == "work in the dairy") && s.balls > 0 && s.ballType == "human"; })>> - <<if _cumSlaves.length > 0>> - <<set _cumSlave = _cumSlaves.random()>> - <<= knockMeUp($activeSlave, 90, 2, _cumSlave.ID, 1)>> - <</if>> - <</replace>> - <</link>> -<</if>> - -<<case "fearful balls">> - -<<link "Threaten $him with castration">> - <<replace "#result">> - You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself. - <<if !canTalk($activeSlave)>> - $He frantically uses $his hand<<if hasBothArms($activeSlave)>>s<</if>> to promise you perfect obedience if you'll only spare $him from emasculation. - <<else>> - $He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!" - <</if>> - You patiently inform $him that $he can — for now, and so long as $he is a good little $girl. $He flees from the room backwards, bowing, scraping, and profusely thanking you, repeating desperate @@.gold;promises of good behavior.@@ - <<set $activeSlave.trust -= 5>> + You patiently inform $him that $he can — for now, and so long as $he is a good little $girl. $He flees from the room backwards, bowing, scraping, and profusely thanking you, repeating desperate @@.gold;promises of good behavior.@@ + <<set $activeSlave.trust -= 5>> <</replace>> <</link>> <br><<link "Force obedience using pain">> @@ -10168,120 +9435,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>> <</if>> -<<case "whore rebellious">> - -<<link "Increase $his assignment to 24 hours a day">> - <<replace "#result">> - You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $him be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.health.dec;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@ - <</replace>> - <<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>> - <<set $activeSlave.trust -= 10>> - <<if canDoVaginal($activeSlave)>> - <<if canDoAnal($activeSlave)>> - <<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>> - <<run seX($activeSlave, "anal", "public", "penetrative", 10)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 10)>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 10, 2, -2)>> - <</if>> - <<else>> - <<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 10)>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 25, 0, -2)>> - <</if>> - <</if>> - <<else>> - <<run seX($activeSlave, "anal", "public", "penetrative", 20)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 10)>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 20, 1, -2)>> - <</if>> - <</if>> - <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - $His patrons, however, enjoyed claiming @@.lime;both $his virginity and anal cherry.@@ - <<set $activeSlave.anus++, $activeSlave.vagina++>> - <<elseif $activeSlave.vagina == 0>> - $His patrons, however, enjoyed claiming @@.lime;$his virginity.@@ - <<set $activeSlave.vagina++>> - <<elseif $activeSlave.anus == 0>> - $His patrons, however, enjoyed claiming @@.lime;$his anal cherry.@@ - <<set $activeSlave.anus++>> - <</if>> -<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>> -<br><<link "Take the first and last every day">> - <<replace "#result">> - When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the <<if $girl == "girl">>fe<</if>>male-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@ - <</replace>> - <<set $activeSlave.trust -= 5>> - <<if canDoVaginal($activeSlave)>> - <<if canDoAnal($activeSlave)>> - <<run seX($activeSlave, "vaginal", "public", "penetrative", 6)>> - <<run seX($activeSlave, "anal", "public", "penetrative", 6)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 6)>> - <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 5, 2, -1)>> - <</if>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 10, 2, -2)>> - <</if>> - <<else>> - <<run seX($activeSlave, "vaginal", "public", "penetrative", 9)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 9)>> - <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 10, 0, -1)>> - <</if>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 15, 0, -2)>> - <</if>> - <</if>> - <<else>> - <<run seX($activeSlave, "anal", "public", "penetrative", 9)>> - <<run seX($activeSlave, "oral", "public", "penetrative", 9)>> - <<if canImpreg($activeSlave, $PC)>> - <<= knockMeUp($activeSlave, 5, 1, -1)>> - <</if>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 10, 1, -2)>> - <</if>> - <</if>> - <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - You made sure to claim @@.lime;both $his virginity and anal cherry@@ before anyone else could. - <<set $activeSlave.anus++, $activeSlave.vagina++>> - <<elseif $activeSlave.vagina == 0>> - You made sure to claim @@.lime;$his virginity@@ before anyone else could. - <<set $activeSlave.vagina++>> - <<elseif $activeSlave.anus == 0>> - You made sure to claim @@.lime;$his anal cherry@@ before anyone else could. - <<set $activeSlave.anus++>> - <</if>> -<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>> -<<if $arcade > 0>> - <br><<link "Sentence $him to a month in the arcade">> - <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. - <<if ($activeSlave.muscles > 30)>> - $His powerful form has to be sedated for immurement in the arcade. - <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. - <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. - <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring $him in the arcade difficult. - <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. - <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring $him in the arcade pathetically easy. - <<else>> - $His thin form makes immuring $him in the arcade pathetically easy. - <</if>> - After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his butt as $he wriggles desperately against $his restraints. - <<= assignJob($activeSlave, "be confined in the arcade")>> - <<set $activeSlave.sentence = 4>> - <</replace>> - <</link>> -<</if>> - <<case "millenary">> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> @@ -10526,122 +9679,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>> <</if>> -<<case "restricted smart">> - -<<link "Discuss $his future with $him">> - <<replace "#result">> - You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway. - "I under<<s>>tand what you're doing, <<Master>>," $he <<say>>s forthrightly. "I'm to be broken down into a devoted <<s>>lave." $He looks thoughtful. "I'll help you with that. It'll be ea<<s>>ier if I do, won't it?" $He looks up, and you <<if canSee($activeSlave)>>nod in affirmation<<else>>acknowledge $him<</if>>; $he gives you a rueful smile. "A good <<s>>lut would offer to give you oral now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to <<if $PC.dick == 0>>lick your pu<<ss>>y<<else>><<s>>uck your cock<</if>>?" - You <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>, and tell $him that the rules are back in effect. As - <<if isAmputee($activeSlave)>> - you get $his helpless form into position, - <<elseif $activeSlave.belly >= 300000>> - $he struggles to get into position with $his _belly stomach in the way, - <<elseif $activeSlave.belly >= 10000>> - $he gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to <<if hasBothLegs($activeSlave)>>its knees<<else>>the ground<</if>>, - <<else>> - $he gets down on <<if hasBothLegs($activeSlave)>>$his knees<<else>>the ground<</if>>, - <</if>> - $he @@.hotpink;focuses on the task@@ in front of $him with all $his considerable intelligence, clearly having decided to make things easier on $himself by conforming to $his new life. - <<set $activeSlave.devotion += 4>> - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <</replace>> -<</link>> -<<if canDoAnal($activeSlave)>> - <br><<link "Let $him talk during a rough buttfuck">> - <<replace "#result">> - You - <<if isAmputee($activeSlave)>> - lay $his fuckpuppet torso across - <<elseif $activeSlave.belly >= 5000>> - tip $his <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto - <<else>> - push $him backwards onto - <</if>> - your desk, groping $his - <<if $activeSlave.butt > 15>> - absurd - <<elseif $activeSlave.butt > 10>> - immense - <<elseif $activeSlave.butt > 7>> - huge - <<elseif $activeSlave.butt > 4>> - big - <<elseif $activeSlave.butt > 1>> - moderate - <<else>> - meager - <</if>> - butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> $his - <<if $activeSlave.anus > 2>> - gaping - <<elseif $activeSlave.anus > 1>> - sizable - <<else>> - tight - <</if>> - asshole. As you penetrate $him, you tell $him that the time to talk is now. - <<if $activeSlave.anus > 2>> - To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> $him without mercy. - <<elseif $activeSlave.anus > 1>> - To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting $him through initial anal penetration over and over. - <<else>> - $His butt is so tight that just a simple assfuck makes $him uncomfortable enough. - <</if>> - $He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of $his poor ass, and then shuts up. You ask $him if $he's sure $he doesn't have anything to say, and $he makes $his one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that. - <<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>> - <<= VCheck.Anal($activeSlave, 1)>> - <</replace>> - <</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>> -<</if>> -<<if canDoVaginal($activeSlave)>> - <br><<link "Let $him try to talk during a vigorous fucking">> - <<replace "#result">> - You - <<if isAmputee($activeSlave)>> - lay $his fuckpuppet torso across - <<elseif $activeSlave.belly >= 5000>> - tip $his <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto - <<else>> - push $him backwards onto - <</if>> - your desk, groping $his - <<if $activeSlave.butt > 15>> - absurd - <<elseif $activeSlave.butt > 10>> - immense - <<elseif $activeSlave.butt > 7>> - huge - <<elseif $activeSlave.butt > 4>> - big - <<elseif $activeSlave.butt > 1>> - moderate - <<else>> - meager - <</if>> - butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> $his - <<if $activeSlave.anus > 2>> - gaping - <<elseif $activeSlave.anus > 1>> - sizable - <<else>> - tight - <</if>> - pussy. As you penetrate $him, you tell $him that the time to talk is now. - <<if $activeSlave.vagina > 2>> - To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> $him without mercy. - <<elseif $activeSlave.vagina > 1>> - To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting $him through initial penetration over and over. - <<else>> - $His cunt is so tight that just a simple fucking overwhelms $him with pleasure. - <</if>> - $He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask $him if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@ - <<set $activeSlave.devotion += 3, $activeSlave.trust += 3>> - <<= VCheck.Vaginal($activeSlave, 1)>> - <</replace>> - <</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>> -<</if>> - <<case "restricted profession">> <<link "Let $him speak briefly if $he's very quiet">> @@ -11516,84 +10553,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.attrXY <= 35>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0) && $activeSlave.attrXY <= 35>> //This option will take $his anal virginity//<</if>> -<<case "penitent">> - -<<link "Require $him to self-flagellate">> - <<replace "#result">> - You tell $him that you will offer $him a method of expiating $his deep and troubling sin. $He looks almost hopeful at this, until you lead $him out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against $his own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with $his self-torture, $he's so exhausted that you carry $his limp, bloody<<if $seePee == 1>>, vaguely urine-scented<</if>><<if $activeSlave.bellyPreg >= 1500>> gravid<</if>> form into the shower, wash $him, and apply curatives, @@.health.dec;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly. - <<if ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;submission@@ with sexual fulfillment. - <</if>> - <<if ($activeSlave.behavioralFlaw != "odd") && (random(1,100) > 50)>> - <<set $activeSlave.behavioralFlaw = "odd">> - The terrible experience has left $him with @@.red;unpleasant nervous tics.@@ - <</if>> - <<set $activeSlave.devotion += 10>> - <<run healthDamage($activeSlave, 10)>> - <</replace>> -<</link>> -<<if canImpreg($activeSlave, $PC)>> - <<if ($activeSlave.mpreg == 1 && canDoAnal($activeSlave)) || ($activeSlave.ovaries == 1 && canDoVaginal($activeSlave))>> - <br><<link "Put a baby in $him while $he prays">> - <<replace "#result">> - $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out: - "Oh <<Master>>, owner, protector, and father of my children, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, the tear<<s>> of my womb. Remember not my iniquitie<<s>> but my willingne<<ss>> to be bred by you. I long to <<s>>erve your <<if $PC.vagina != -1>>futa <</if>>dick, and beg that you will u<<s>>e me and ble<<ss>> my body with your off<<s>>pring. I promi<<s>>e to <<s>>ubmit to you a<<s>> your breeding <<s>>lut all the day<<s>> of my <<s>>ervitude, and to grow heavy with child, again and again." - $He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved your dick up $his waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close to blessing $him with a load of cum. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..." - <<if $activeSlave.mpreg == 1>><<= VCheck.Anal($activeSlave, 1)>><<else>><<= VCheck.Vaginal($activeSlave, 1)>><</if>> - <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> - <<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment. - <<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;submission@@ with sexual fulfillment. - <<elseif ($activeSlave.fetish != "pregnancy") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;carrying your children@@ with sexual fulfillment. - <</if>> - <<set $activeSlave.devotion += 4>> - <</replace>> - <</link>><<if $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<<elseif $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>> - <</if>> -<</if>> -<<if canDoVaginal($activeSlave)>> - <br><<link "Fuck $him while $he prays">> - <<replace "#result">> - $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his pussy. $He gasps out: - "Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina != -1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my <<if $activeSlave.vagina == 0>>virgin fold<<s>><<else>>feminine <<s>>lit<</if>>. I promi<<s>>e to <<s>>ubmit to you a<<s>> your vaginal <<s>>lut all the day<<s>> of my <<s>>ervitude." - $He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his waiting pussy. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..." - <<= VCheck.Vaginal($activeSlave, 1)>> - <<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment. - <<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;submission@@ with sexual fulfillment. - <</if>> - <<set $activeSlave.devotion += 4>> - <</replace>> - <</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>> -<</if>> -<<if canDoAnal($activeSlave)>> - <br><<link "Sodomize $him while $he prays">> - <<replace "#result">> - $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out: - "Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of anal <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be a<<ss>>raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina != -1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my butthole. I promi<<s>>e to <<s>>ubmit to you a<<s>> your anal <<s>>lut all the day<<s>> of my <<s>>ervitude." - $He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his loosened ass. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..." - <<= VCheck.Anal($activeSlave, 1)>> - <<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment. - <<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>> - <<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> - $He has come to associate @@.lightcoral;submission@@ with sexual fulfillment. - <</if>> - <<set $activeSlave.devotion += 4>> - <</replace>> - <</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>> -<</if>> - <<case "resistant anal virgin">> <<link "Let $him earn continued anal virginity">> @@ -12575,214 +11534,9 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</replace>> <</link>> -<<case "forbidden masturbation">> +<<case "hates oral">> -<<link "Let $him earn relief">> - <<replace "#result">> - $He's extremely relieved that you're not going to punish $him for the rulebreaking when you tell $him that $he can touch $himself if $he - <<if $activeSlave.belly >= 300000>> - leans over $his _belly belly - <<else>> - gets on $his knees - <</if>> - and sucks you off. $He does a decent job, playing with $himself all the while. $He's learned that $he can get away with infractions if $he's willing to suck dick afterward. $His resistance to your will @@.mediumorchid;has increased.@@ - <<set $activeSlave.devotion -= 5>> - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <</replace>> -<</link>> -<br>Punish $him, but then let $him get off: -<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "when $he sucks">> - <<replace "#result">> - You - <<if $PC.belly >= 10000>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, - <<elseif $activeSlave.belly >= 5000>> - order $him to bend over beside you so your pregnancy doesn't obstruct you as badly - <<else>> - lean back, pull $him over your knee and under your gravid dome of a middle - <</if>> - <<else>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> - <<elseif $activeSlave.belly >= 5000>> - spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap - <<else>> - pull $him down over your knee - <</if>> - <</if>> - and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask to <<if $PC.dick != 0>>blow you<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through $his tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina != -1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously. - <<run seX($activeSlave, "oral", $PC, "penetrative", 5)>> - <<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@ - <</if>> - <</replace>> - <</link>> -<</if>> -<<if ($activeSlave.fetish != "boobs") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "during nipple play">> - <<replace "#result">> - You - <<if $PC.belly >= 10000>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip $him onto $his back, lower your gravid body down to $his level and start playing with $his nipples. - <<elseif $activeSlave.belly >= 5000>> - order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples. - <<else>> - lean back, pull $him over your knee and under your gravid dome of a middle and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples. - <</if>> - <<else>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap, $his stomach spreading your legs, and start playing with $his nipples. - <<elseif $activeSlave.belly >= 5000>> - spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples. - <<else>> - pull $him down over your knee and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples. - <</if>> - <</if>> - $He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep $him at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone. - <<run seX($activeSlave, "mammary", $PC, "penetrative")>> - <<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of breast play has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@ - <</if>> - <</replace>> - <</link>> -<</if>> -<<if (($activeSlave.fetish != "pregnancy") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)) && $activeSlave.belly >= 5000>> - <br> <<link "while fondling $his belly">> - <<replace "#result">> - You - <<if $activeSlave.belly >= 300000>> - roll $him onto $his back - <<else>> - pull $him into a sitting position on your lap - <</if>> - and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease $his <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from $his masturbation session. - <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of pregnancy has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at <<if $activeSlave.pregKnown == 1>>every thought about $his pregnancy<<else>>the very thought of being pregnant<</if>>.@@ - <</if>> - <</replace>> - <</link>> -<</if>> -<<if canDoAnal($activeSlave)>> - <<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "when $he takes it up the ass">> - <<replace "#result">> - You - <<if $PC.belly >= 10000>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, - <<elseif $activeSlave.belly >= 5000>> - order $him to bend over beside you so your pregnancy doesn't obstruct you as badly - <<else>> - lean back, pull $him over your knee and under your gravid dome of a middle - <</if>> - <<else>> - <<if $activeSlave.belly >= 300000>> - tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> - <<elseif $activeSlave.belly >= 5000>> - spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap - <<else>> - pull $him down over your knee - <</if>> - <</if>> - and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through $his tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously. - <<= VCheck.Anal($activeSlave, 5)>> - <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of anal has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@ - <</if>> - <</replace>> - <</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>> - <</if>> -<</if>> -<<if ($activeSlave.fetish != "humiliation") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "in public">> - <<replace "#result">> - You bring $him out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure $him upright with a set of vibrators attached to all of $his erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations. - <<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of humiliation has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@ - <</if>> - <</replace>> - <</link>> -<</if>> -<<if ($activeSlave.fetish != "submissive") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "while submitting to a spanking">> - <<replace "#result">> - You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer $his bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause $him just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating. - <<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of submission has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he starts to associate submitting to you with getting off.@@ - <</if>> - <</replace>> - <</link>> -<</if>> -<<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> - <br> <<link "while in pain">> - <<replace "#result">> - You order $him to - <<if ($activeSlave.heels == 1) && shoeHeelCategory($activeSlave) == 0>> - kneel - <<elseif shoeHeelCategory($activeSlave) > 1>> - teeter - <<else>> - stand - <</if>> - with $his arm<<if hasBothArms($activeSlave)>>s<</if>> over $his head and $his arm<<if hasBothLegs($activeSlave)>>s<</if>> splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start. - <<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>> - $He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking. - <<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>> - $He was playing with $his oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms. - <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - $He was touching $his limp dick and ass, so you slap and torture $his offending dick and give $him a severe spanking. - <<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>> - $He was desperately rubbing $his perineum and anus, the most sensitive parts $he has left, so you slap that part of $him repeatedly, enjoying the way it spasms. - <<elseif $activeSlave.vagina == -1 || $activeSlave.clit >= 3>> - $He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to $his offending member. - <<elseif $activeSlave.labia > 1>> - $His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing $him intense agony. - <<else>> - You deliver a series of agonizing slaps to $his mons. - <</if>> - You have to start over twice. By the end, $he's managed to orgasm to all the stimulation, but $he's crying and desperately promising never to touch $himself again without your permission. $His submission to you @@.hotpink;has increased.@@ - <<set $activeSlave.devotion += 4>> - <<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>> - <<set $activeSlave.fetishStrength += 4>> - @@.lightcoral;$His enjoyment of pain has increased.@@ - <<elseif random(1,100) > 50>> - <<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= getWrittenTitle($activeSlave)>> beating $him.@@ - <</if>> - <</replace>> - <</link>> -<</if>> - -<<case "hates oral">> - -<<link "Let $him earn a break for $his throat">> +<<link "Let $him earn a break for $his throat">> <<replace "#result">> You tell $him $he's a sex slave, and that $he needs to learn how to suck dick. <<if !canTalk($activeSlave) && hasAnyArms($activeSlave)>> @@ -12988,156 +11742,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. /*Written by anon, coded by Boney M*/ -<<case "mindbroken morning">> - -<<link "Let $him be">> - <<replace "#result">> - Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistant.name the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to $his assignment on time, and no one notices anything unusual about $him today. - <</replace>> - <<if $activeSlave.relationship == -3>> - <<if def $activeSlave.kindness>> - <<set $activeSlave.kindness += 2>> - <<else>> - <<set $activeSlave.kindness = 2>> - <</if>> - <</if>> -<</link>> -<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> - <br><<link "See if an orgasm will cheer $him up">> - <<replace "#result">> - You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around $his - <<if $activeSlave.belly >= 150000>> - _belly distended - <<elseif $activeSlave.weight > 95>> - fat - <<elseif $activeSlave.belly >= 5000>> - <<if $activeSlave.bellyPreg >= 3000>> - pregnancy swollen - <<elseif $activeSlave.bellyImplant >= 3000>> - implant swollen - <<else>> - <<print $activeSlave.inflationType>>-bloated - <</if>> - <<elseif $activeSlave.weight > 30>> - pudgy - <<elseif $activeSlave.waist < -95>> - cartoonishly narrow - <<elseif $activeSlave.muscles > 30>> - ripped - <<elseif $activeSlave.waist < -10>> - wasp - <<elseif $activeSlave.weight > 10>> - soft - <<elseif $activeSlave.muscles > 5>> - toned - <<elseif $activeSlave.weight >= -10>> - trim - <<else>> - skinny - <</if>> - waist, feeling the warmth of $his skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he - <<if ($activeSlave.height >= 170)>> - unconsciously bends forward a little and cocks $his hips to position $himself - <<else>> - rises up on the balls of $his feet to bring $his short body up to the right height - <</if>> - <<if canDoVaginal($activeSlave)>> - for penetration. $His - <<if ($activeSlave.vagina > 2)>> - loose cunt - <<elseif ($activeSlave.vagina > 1)>> - pussy - <<else>> - tight little pussy - <</if>> - is already moist in expectation, making entry easy. - <<= VCheck.Vaginal($activeSlave, 1)>> - <<else>> - for anal. $He relaxes $his - <<if ($activeSlave.anus > 2)>> - loose anus - <<elseif ($activeSlave.anus > 1)>> - asshole - <<else>> - tight little asshole - <</if>> - completely, making entry easy. - <<= VCheck.Anal($activeSlave, 1)>> - <</if>> - Your hands rove, teasing $his $activeSlave.nipples nipples, - <<if ($activeSlave.boobs > 1000)>> - hefting $his heavy tits, - <<elseif ($activeSlave.boobs > 300)>> - squeezing $his healthy breasts, - <<else>> - pressing $him flat chest, - <</if>> - <<if $activeSlave.belly >= 1500>> - massaging $his rounded belly<<if $activeSlave.belly > 10000>> and fondling $his popped navel<</if>>. - <<else>> - and - <<if $activeSlave.weight > 130>> - groping $his huge gut. - <<elseif $activeSlave.weight > 95>> - groping $his fat belly. - <<elseif $activeSlave.muscles > 30>> - fondling $his abs. - <<elseif $activeSlave.weight > 10>> - groping $his plush belly. - <<else>> - fondling $his flat stomach. - <</if>> - <</if>> - $His face is complacent and unaffected even as $his body responds, - <<if ($activeSlave.chastityPenis == 1)>> - since $his body is used to its caged cock being neglected in favor of $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. - <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> - $his useless dick sporting a drop of precum. - <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>> - $his soft dick twitching feebly. - <<elseif $activeSlave.dick > 4>> - $his giant penis protruding through a gap in the railing. - <<elseif $activeSlave.dick > 2>> - $his penis pressing hard against the railing. - <<elseif $activeSlave.dick > 0>> - $his pathetic hard-on barely protruding from between $his thighs. - <<elseif $activeSlave.clit > 0>> - $his huge clit stiff under a brush from your fingers. - <<elseif $activeSlave.vagina == -1>> - $his asspussy ready and relaxed under a brush from your fingers. - <<else>> - $his pussy warm and wet under a brush from your fingers. - <</if>> - Even $his eventual orgasm is entirely mechanical, a simple tightening of $his - <<if canDoVaginal($activeSlave)>> - <<if ($activeSlave.vagina > 2)>> - gaping cunt, - <<elseif ($activeSlave.vagina > 1)>> - traveled pussy, - <<else>> - tight vagina, - <</if>> - <<else>> - <<if ($activeSlave.anus > 2)>> - gaping - <<elseif ($activeSlave.anus > 1)>> - loosened - <<else>> - tight - <</if>> - sphincter, - <</if>> - a gasp of air into $his lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look - <<if canSee($activeSlave)>> - into $his eye<<if hasBothEyes($activeSlave)>>s<</if>> - <<else>> - at $his face - <</if>> - confirms that it is not so. - <</replace>> - <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>> -<</if>> - <<case "masterful entertainer">> <<link "Go clubbing">> @@ -14168,7 +12772,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<if canDoVaginal($activeSlave)>> <<run seX($activeSlave, "vaginal", $PC, "penetrative")>> <<if canGetPregnant($activeSlave) && canBreed($activeSlave, $activeSlave) && $activeSlave.vasectomy != 1>> /* can't miss the opportunity to knock $himself up */ - <<= knockMeUp($activeSlave, 20, 0, $activeSlave.ID, 1)>> + <<run knockMeUp($activeSlave, 20, 0, $activeSlave.ID)>> <</if>> <<else>> <<run seX($activeSlave, "anal", $PC, "penetrative")>> @@ -15229,7 +13833,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<set $activeSlave.vagina++>> <<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>> <</if>> - <<= knockMeUp($activeSlave, 100, 2, -2, 1)>> + <<run knockMeUp($activeSlave, 100, 2, -2)>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<run surgeryDamage($activeSlave, 20)>> <<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>> @@ -15571,7 +14175,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</if>> $He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow $him into $his distended breasts until you cum deep inside $his fertile hole. You return to your desk, leaving $him to sob into $his unwelcome bust as cum pools from $his abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed $his coming child, $he will likely be too distracted by $his swelling middle to complain about their added weight. <<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>> - <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> + <<run knockMeUp($activeSlave, 100, 2, -1)>> <</replace>> <</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<</if>> <</if>> @@ -15657,7 +14261,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. $His ass is yours all over again. As soon as $his newly tight rosebud has recovered enough, you visit $him in the surgery, without even waiting for $him to leave it. You flip $him over on the recovery bed and force <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For $his part, $he @@.hotpink;thoroughly enjoyed losing $his anal cherry,@@ again. <<set $activeSlave.devotion += 5, $activeSlave.anus = 1>> <<run seX($activeSlave, "anal", $PC, "penetrative")>> - <<= knockMeUp($activeSlave, 5, 1, -1, 1)>> + <<run knockMeUp($activeSlave, 5, 1, -1)>> <</replace>> <</link>> //This option will take $his anal virginity// </span> @@ -15712,7 +14316,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <<set $activeSlave.devotion += 4>> <<= VCheck.Anal($activeSlave, 2)>> <<if canImpreg($activeSlave, _S.HeadGirl)>> - <<= knockMeUp($activeSlave, 5, 1, $HeadGirlID, 1)>> + <<run knockMeUp($activeSlave, 5, 1, $HeadGirlID)>> <</if>> <<set _S.HeadGirl.devotion += 4>> <<includeDOM App.Events.eventFetish($activeSlave, "buttslut")>> @@ -15819,93 +14423,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick != 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick != 0>> //This option will take $his anal virginity//<</if>> -<<case "arcade sadist">> - -<<link "Ask $him about $his fantasy">> - <<setNonlocalPronouns $seeDicks>> - <<replace "#result">> - <<set _pussy = App.Entity.facilities.arcade.employees().some(s => s.vagina > 0)>> - <<set _balls = App.Entity.facilities.arcade.employees().some(s => s.balls > 0)>> - You order $him to explain further. "<<Master>>," $he <<say>>s carefully, "it'<<s>> $arcadeName. There'<<s>> a <<s>>pe<<c>>ific pla<<c>>e there, and, well, I can't de<<s>>cribe it. It'<<s>> in the <<s>>ervi<<c>>e area under $arcadeName. Can I <<sh>>ow you what I mean?" Intrigued, you order $him to show you the place $he's talking about, and lead $him to $arcadeName through the access hallway. $He points to the service tunnel under one of the rows of inmates, which allows trusted slaves to clean up and perform maintenance. - <<if $activeSlave.belly >= 100000>> - Once you've managed to shove the massive slut - <<elseif $activeSlave.belly >= 5000>> - Once you've helped the <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> $girl fit - <<else>> - Once you've led $him - <</if>> - in there, $he stops and <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>><<if $PC.belly >= 100000>> as you struggle to join $him in the increasingly cramped space<<elseif $PC.belly >= 5000>> as you gently slip your motherly body in after $him<</if>>. - Inside the industrial access corridor, above you both is a row of bodies. The slaves' faces and hips are pressed against the apertures that present their holes to customers, but the rest of them is visible from here. - <br><br> - There is little noise; the slaves are closely restrained. Indeed, you have to look closely to see that they're being fucked at all. Here and there, though, there are signs. When someone fucks a slave's face, _hisU throat bulges, and _heU often gags and struggles a little within the restraints. When their <<if _pussy>>pussies<<else>>assholes<</if>> get fucked, there's also some involuntary struggling, and if the phallus being thrust into them is particularly large, a rhythmic bulging of their abdomens can be discerned. - <<if $arcadeUpgradeInjectors == 1>> - The bodies frequently jerk as electrostimulation is applied to force them to tighten their holes. - <<elseif $arcadeUpgradeInjectors == 2>> - The quiet hissing of the drug injectors adds a menacing undertone, and the bodies frequently jerk as electrostimulation is applied to force them to tighten their holes. - <</if>> - <<if $arcadeUpgradeCollectors == 1>> - The pumping collectors attached to the slaves' breasts<<if _dick>> and cocks<</if>> carry the white fluid away to be processed elsewhere. - <</if>> - The overall effect is subtle, but powerful. There's a sense of total servitude, overlaid with a certain feeling, or perhaps even a scent, of mindless despair. There's no wonder $activeSlave.slaveName likes it; there's an infinite supply of uncomplicated human anguish here. - <br><br> - <span id="result2"> - <<if $PC.belly < 5000 && $activeSlave.belly < 5000>> - <<link "Fuck $him here">> - <<replace "#result2">> - You reach out for $activeSlave.slaveName, not taking your eyes off the mesmerizing sight above. $He's enjoying the spectacle too, and is so aroused that your rough handling of $his breasts almost brings $him to an immediate orgasm. <<if $activeSlave.nipples != "fuckable">>Pinching<<else>>Hooking<</if>> $his $activeSlave.nipples nipples to stop $him from getting off too soon, you - <<if $PC.dick == 0>> - hug $him to your chest and start playing with $his pussy, commanding $him to reach around and do the same for you. - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <<elseif canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> - pull $him up to the right height and slide your dick inside $him, keeping both of you on your feet so you can take $him standing. - <<= VCheck.Vaginal($activeSlave, 1)>> - <<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - shove your cock roughly up $his asshole, letting $him struggle a little as $he finds the right angle to take standing anal here. - <<= VCheck.Anal($activeSlave, 1)>> - <<else>> - slide your stiff prick up between the virgin's thighs for some intercrural sex. - <</if>> - As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<elseif canHear($activeSlave)>>ears perk up at the subtle sounds<<else>>expression indicates that $he's become lost in $his thoughts<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of _hisU defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off. - <</replace>> - <<set $activeSlave.trust += 5>> - <</link>> - <<else>> - Fucking $him here would be interesting; unfortunately, there just isn't enough room for two mothers-to-be. - <</if>> - <br><<link "Teach $him about true sadism">> - <<set _ress = App.Entity.facilities.arcade.employees().random()>> - <<setLocalPronouns _ress 2>> - <<replace "#result2">> - $He seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with $him. You call $his name, tearing $his attention away from the spectacle mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> over your heads, and <<if canSee($activeSlave)>>point<<else>>direct $him<</if>> to a particular slave. You tell $activeSlave.slaveName that this particular Arcade inmate's name is - <<= SlaveFullName(_ress)>>. You tell $him that _he2 is _ress.actualAge years old, that _he2 is _ress.nationality, and that _he2 was once <<= convertCareer(_ress)>>. You list more details of _his2 life before _he2 was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign _his2 pussy's being fucked, so it must be<<else>>_His2 cock hardens involuntarily, indicating that it's<</if>> going into _his2 ass. You resume, mentioning that _he2's been buttfucked _ress.counter.anal times. - $activeSlave.slaveName jerks suddenly, <<if canAchieveErection($activeSlave)>>shooting $his cum onto the floor<<elseif $activeSlave.vagina < 0>>dribbling a little<<elseif $activeSlave.vaginaLube > 0>>squirting onto the floor<<else>>orgasming<</if>>. $He came without being touched. $He <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> the mess $he made just by being in the presence of the arcology's @@.hotpink;undisputed preeminent sadist;@@ $he shudders at the sheer gothic glory of it. $He has a new moment to think of when $he feels like @@.lightsalmon;indulging $his own sadism.@@ - <</replace>> - <<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+10, 0, 100)>> - <</link>> - </span> - <</replace>> -<</link>> -<br><<link "Just fuck $him">> - <<replace "#result">> - You're not particularly interested in what $he dreams about when $he gets the chance, and you tell $him so. Whatever sadistic little fantasies $he keeps locked away to bring out when $he's got a moment to satiate $his perversions is less interesting to you than the prospect of - <<if $PC.dick == 0>> - $his mouth on your cunt. So, you shove $him down to sit on the couch and straddle $his face, cutting off any further whimsies by pressing your wet pussy against $his lips. $He eats you out obediently, accepting - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <<elseif canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> - giving it to $him. So, you shove $him down to sit on the couch, nudge $his legs apart, kneel between them, and pound $his pussy. You fuck $him so hard that $he doesn't have the attention for further whimsies, and $he accepts - <<= VCheck.Vaginal($activeSlave, 1)>> - <<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - fucking $his butt. So, you shove $him down to <<if hasAnyLegs($activeSlave)>>kneel<<else>>get<</if>> on the couch facing away from you, and ram your cock up $his asshole. You assfuck $him so hard that $he doesn't have the attention for further whimsies, and $he accepts - <<= VCheck.Anal($activeSlave, 1)>> - <<else>> - $him sucking your dick. So, you shove $him down to sit on the couch and give $him your cock to keep $his mouth occupied, cutting off any further whimsies. $He blows you obediently, accepting - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <</if>> - the implicit message that @@.hotpink;$he's your slut@@ in the real world, whatever thoughts $he may find appealing in the privacy of $his own mind. - <</replace>> - <<set $activeSlave.devotion += 3>> -<</link>> - <<case "servant maid">> <<link "Stop $him">> @@ -16073,168 +14590,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>> <</if>> -<<case "old PC age difference">> - -<<link "Gently acclimate $him to the age difference with some lovemaking">> - <<replace "#result">> - As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into your arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. - Instead, you - <<if $activeSlave.belly >= 300000>> - help $him to <<if hasBothLegs($activeSlave)>>$his feet<<else>>stand up<</if>> and guide $him to bed, aiding the - <<if $activeSlave.physicalAge <= 3>> - <<if $activeSlave.bellyPreg >= 3000>> - bursting at the seams with life - <<else>> - nearly circular - <</if>> - little $girl - <<elseif $activeSlave.physicalAge < 13>> - <<if $activeSlave.bellyPreg >= 3000>> - poor overfilled and ready to pop - <<else>> - tremendously swollen - <</if>> - $girl - <<elseif $activeSlave.physicalAge < 18>> - <<if $activeSlave.bellyPreg >= 3000>> - child-filled - <<else>> - tremendously swollen - <</if>> - teen - <<else>> - <<if $activeSlave.bellyPreg >= 3000>> - child-laden - <<else>> - tremendously swollen - <</if>> - young lady - <</if>> - onto the sheets before gently mounting $him. - <<else>> - <<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed - <<if $activeSlave.physicalAge <= 3>> - little $girl - <<elseif $activeSlave.physicalAge < 13>> - $girl - <<elseif $activeSlave.physicalAge < 18>> - teen - <<else>> - young lady - <</if>> - down on the sheets before gently positioning yourself on top of $him. - <</if>> - Together, the two of you make fiercely intimate love, while you <<if canHear($activeSlave)>>whisper romantic reassurances into $his ear, <</if>>nip at $his neck, - <<if $activeSlave.bellyPreg >= 300000>> - run your hands across $his squirming brood, - <<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> - stroke $his pregnant belly, - <<elseif $activeSlave.belly >= 5000>> - caress the curve of $his _belly belly, - <</if>> - and bring $him to climax again and again. After a final frantic orgasm together in $his - <<if canDoVaginal($activeSlave)>> - pussy - <<else>> - anus - <</if>> - $he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his aged <<= getWrittenTitle($activeSlave)>>. - <<set $activeSlave.devotion += 4, $activeSlave.trust += 4>> - <<if canDoVaginal($activeSlave)>> - <<= VCheck.Vaginal($activeSlave, 1)>> - <<else>> - <<= VCheck.Anal($activeSlave, 1)>> - <</if>> - <</replace>> -<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>> -<br><<link "Cruelly torment $him about the age difference">> - <<replace "#result">> - As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $him bent over - <<if $activeSlave.belly >= 300000>> - $his _belly belly - <<else>> - your desk - <</if>> - and begun spanking $his - <<if $activeSlave.butt > 12>> - absurd ass, - <<elseif $activeSlave.butt > 6>> - massive behind, - <<elseif $activeSlave.butt > 3>> - bountiful bottom, - <<else>> - cute ass, - <</if>> - $he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so old a <<= getWrittenTitle($activeSlave)>>, $he begins to sob quietly - <<if $activeSlave.belly >= 300000>> - <<if $activeSlave.boobs > 600>> - into $his breasts. - <<else>> - into $his hands. - <</if>> - <<else>> - against the hard surface of your desk. - <</if>> - <br><br> - By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by so cruel an old <<Master>>. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, $he merely winces at the - <<if canDoVaginal($activeSlave)>> - force - <<else>> - anal pain - <</if>> - of your coupling. Judging by the <<if !canSee($activeSlave)>>exceptionally <</if>>empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@ - <<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>> - <<if canDoVaginal($activeSlave)>> - <<= VCheck.Vaginal($activeSlave, 1)>> - <<else>> - <<= VCheck.Anal($activeSlave, 1)>> - <</if>> - <</replace>> -<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>> -<<if isFertile($activeSlave)>> - <br><<link "Give $him an afternoon off for some quality time with a local retirement community">> - <<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">> - <<replace "#art-frame">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <<set $activeSlave.clothes = _clothesTemp>> - <<replace "#result">> - You direct $assistant.name to clear $activeSlave.slaveName's schedule and to find a local retirement community willing to 'host' a $girl of $his age. Perhaps a group of venerable graybeards running a train on $activeSlave.slaveName might accustom $him to older sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like an old world school<<= $girl>> and is clearly skeptical about your age-play therapy. - <br><br> - $activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems a good fucking from experienced older men agrees with $him, and by the state of $his - <<if $activeSlave.mpreg == 1>> - cum-drenched asshole - <<else>> - messy pussy - <</if>> - $his aged partners particularly enjoyed filling $him with their still potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his excursion. It seems that being bred by a bunch of horny old men has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons. - <<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>> - <<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>> - <<if $activeSlave.mpreg == 1>> - <<run seX($activeSlave, "anal", "public", "penetrative", 10)>> - <<if $activeSlave.anus == 0>> - <<set $activeSlave.anus++>> - <</if>> - <<else>> - <<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>> - <<if $activeSlave.vagina == 0>> - <<set $activeSlave.vagina++>> - <</if>> - <</if>> - <</replace>> - <</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>> -<</if>> - <<case "nice guys">> <<link "Let the boys be">> @@ -16331,7 +14686,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</if>> <</if>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> - <<= knockMeUp($activeSlave, 15, 2, 0, 1)>> + <<run knockMeUp($activeSlave, 15, 2, 0)>> <</if>> <<run seX($activeSlave, "oral", "public", "penetrative", 2)>> <<run cashX(2000, "event", $activeSlave)>> @@ -16863,209 +15218,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <</link>> <</if>> -<<case "modest clothes">> - -<<link "No">> - <<replace "#result">> - You tell $him no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes $him just slightly more trusting.@@ It's nice to be allowed to ask things. - <<set $activeSlave.trust += 2>> - <</replace>> -<</link>> -<br><<link "Show $him how much you like $his usual outfit">> - <<replace "#art-frame">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <<replace "#result">> - You tell $him to go get dressed as usual. $His face falls a little, but there was no condemnation in your tone, and $he hurries off, - <<if $activeSlave.dick > 6>> - monstrous cock dangling. - <<elseif $activeSlave.balls > 4>> - big balls dangling. - <<elseif $activeSlave.bellyFluid >= 5000 || $activeSlave.weight > 95>> - big belly jiggling. - <<elseif $activeSlave.belly >= 5000>> - as fast as $his swollen belly will allow. - <<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> - fake tits bouncing. - <<elseif $activeSlave.butt > 4>> - $his big booty jiggling. - <<elseif $activeSlave.boobs > 2000>> - udders jiggling. - <<else>> - giving you a nice view of $his naked rear. - <</if>> - $He returns quickly, in $his proper - <<switch $activeSlave.clothes>> - <<case "a long qipao" "a slutty qipao">> - qipao. - <<case "a penitent nuns habit">> - habit. - <<case "a slave gown" "a ball gown">> - gown. - <<case "a comfortable bodysuit">> - bodysuit. - <<case "a schoolgirl outfit">> - school clothes. - <<case "a nice maid outfit">> - maid outfit. - <<case "a slutty maid outfit">> - skimpy maid outfit. - <<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">> - dress. - <<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">> - uniform. - <<case "spats and a tank top">> - spats. - <<case "a burkini" "a monokini">> - swimsuit. - <<case "a chattel habit" "a fallen nuns habit">> - slutty habit. - <<case "a succubus outfit">> - succubus getup. - <<case "a hijab and blouse" "conservative clothing">> - conservative clothes. - <<default>> - <<= App.Data.clothes.get($activeSlave.clothes).name.toLowerCase()>> - <</switch>> - You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>$his <<= App.Desc.eyesColor($activeSlave)>> flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters. - <br><br> - You add that $he looks so good that $he had better take $his nice clean - <<switch $activeSlave.clothes>> - <<case "a long qipao" "a slutty qipao">> - qipao - <<case "a penitent nuns habit">> - habit - <<case "a slave gown" "a ball gown">> - gown - <<case "a comfortable bodysuit">> - bodysuit - <<case "a nice nurse outfit">> - nurse outfit - <<case "a schoolgirl outfit">> - school clothes - <<case "a nice maid outfit">> - maid outfit - <<case "a slutty maid outfit">> - skimpy maid outfit - <<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">> - dress - <<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">> - uniform - <<case "spats and a tank top">> - spats - <<case "a burkini" "a monokini">> - swimsuit - <<case "a chattel habit" "a fallen nuns habit">> - slutty habit - <<case "a succubus outfit">> - succubus getup - <<case "a hijab and blouse" "conservative clothing">> - conservative clothes - <<default>> - <<= App.Data.clothes.get($activeSlave.clothes).name.toLowerCase()>> - <</switch>> - off again, because - <<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>> - you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> $his senseless. - <<= VCheck.Vaginal($activeSlave, 1)>> - <<elseif canDoAnal($activeSlave) && $activeSlave.anus != 0>> - you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>. - <<= VCheck.Anal($activeSlave, 1)>> - <<else>> - $he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down $his chin<</if>>. - <<run seX($activeSlave, "oral", $PC, "penetrative")>> - <</if>> - $He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@ - <<set $activeSlave.devotion += 5>> - <</replace>> -<</link>> -<br><<link "Put $him in a string bikini">> - <<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "a string bikini">> - <<replace "#art-frame">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <<set $activeSlave.clothes = _clothesTemp>> - <<replace "#result">> - You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but <<= $girl>>s everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by $his dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by $his generous pussylips<<else>>and it threatens to disappear inside $his pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and - <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> - blushes cutely. $He looks up at you, <<if canSee($activeSlave)>>sees<<else>>feels<</if>> the way you're staring at $him, and hangs $his head, blushing even harder. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> - turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal $his <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> - bounces $his - <<if $activeSlave.boobsImplant>> - fake tits. - <<elseif $activeSlave.boobs > 8000>> - earth-shattering tits. - <<elseif $activeSlave.boobs > 2000>> - huge boobs. - <<elseif $activeSlave.boobs > 400>> - boobs. - <<else>> - petite chest. - <</if>> - Giggling, $he bounces harder, and $his nipples escape from $his top, such as it is. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>> - and attempts to pull the strings over the front of $his belly. Without delay, they slide right back to the sides of the _belly dome, eliciting a giggle from the preggo slut. - <<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">> - sneaks a hand under the string around $his waist, tugging $his bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of $his womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles. - <<else>> - bounces a little, smiling. "I'm ba<<s>>ically naked," $he giggles. "Today i<<s>> going to be fun. The other $girl<<s>>'ll be jealou<<s>> you wanted me to look <<s>>o <<s>>lutty. Love you, <<Master>>." - <</if>> - $He's happy you indulged $him, and @@.mediumaquamarine;satisfied that you think $he's cute@@ enough to have around (practically) nude. - <<set $activeSlave.trust += 5>> - <</replace>> -<</link>> -<br><<link "Force uncomfortable straps on $him">> - <<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "uncomfortable straps">> - <<replace "#art-frame">> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $activeSlave 3 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ - <</replace>> - <<set $activeSlave.clothes = _clothesTemp>> - <<replace "#result">> - You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but <<= $girl>>s everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did $his best to obey. $He's @@.gold;tightened $his own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask $him how $he likes $his outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad. - <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> - "I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> - $He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> - $He does $his best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds. - <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>> - $He does $his best to thrust out $his _belly belly, making the straps creak ominously. "I know I'm, I'm ju<<s>>t, ju<<s>>t a baby maker," $he adds. - <<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">> - $He hangs $his head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am." - <<else>> - $He indicates the steel rings that frame $his holes and keep them defenseless. "I know I'm ju<<s>>t a collection of fuckhole<<s>>," $he adds. - <</if>> - $He sounds like $he's trying to convince $himself, but $his @@.hotpink;abasement us not feigned.@@ - <<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>> - <</replace>> -<</link>> - <<case "hyperpreg stuck">> <<link "Abuse $him">> @@ -17251,7 +15403,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look. <br>ERROR: bad RESS event $RESSevent <</switch>> -<<if $cheatMode == 1>> +<<if $debugMode > 0 && $debugModeEventSelection > 0>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw index 7cc46776a8407e6d208a6eed764affc1295373b9..44fb58cf01f85fda3c04f2c107fd734f599e8e5d 100644 --- a/src/uncategorized/RESSTR.tw +++ b/src/uncategorized/RESSTR.tw @@ -24,7 +24,7 @@ <<if Array.isArray($RESSTRevent)>> <<set $activeSlave = $eventSlave>> - <<if $cheatMode == 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random event would have been selected from the following:'' <br> @@ -68,7 +68,7 @@ <br>ERROR: bad RESSTR event $RESSTRevent <</switch>> - <<if $cheatMode == 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] <</if>> diff --git a/src/uncategorized/attendantSelect.tw b/src/uncategorized/attendantSelect.tw deleted file mode 100644 index f563ca18ad97374086798e02bcee9b96fc7b9285..0000000000000000000000000000000000000000 --- a/src/uncategorized/attendantSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Attendant Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Spa", $encyclopedia = "Attendant">> -<<if _S.Attendant>> - <<setLocalPronouns _S.Attendant>> - <span class='slave-name'><<= SlaveFullName(_S.Attendant)>></span> is serving as your Attendant.<br><br>$He will help pamper and counsel your slaves. -<<else>> - You have not selected an Attendant. -<</if>> - -<br><br>''Appoint an Attendant from your devoted slaves:'' -<br><br>[[None|Spa][removeJob(_S.Attendant, Job.ATTENDANT)]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.spa, "Spa")>> diff --git a/src/uncategorized/bgSelect.tw b/src/uncategorized/bgSelect.tw deleted file mode 100644 index a1094cd42992729a37a444d0485d0fe4952b1560..0000000000000000000000000000000000000000 --- a/src/uncategorized/bgSelect.tw +++ /dev/null @@ -1,40 +0,0 @@ -:: BG Select [nobr jump-to-safe jump-from-safe] - -<<set $nextButton = "Back to Main", $nextLink = "Main", $encyclopedia = "Bodyguard">> - -<p class="scene-intro"> -</p> - -<p> - <<if (_S.Bodyguard)>> - <<setLocalPronouns _S.Bodyguard>> - <span class="slave-name"><<= SlaveFullName(_S.Bodyguard)>></span> - is serving as your bodyguard. $He will remain close to you at all times and guard your person. - <<else>> - You have not selected a bodyguard. - <</if>> -</p> - -<div> - <<if $bodyguardTrains == 0>> - Your Bodyguard ''is not allowed'' to train potential successors. - <div class="choices"> - [[Allow training|BG Select][$bodyguardTrains = 1]] - </div> - <<else>> - Your Bodyguard ''is allowed'' to train potential successors. - <div class="choices"> - [[Stop training|BG Select][$bodyguardTrains = 0]] - </div> - <</if>> -</div> - -<div style="font-weight:bold"> - Appoint a bodyguard from your devoted slaves: -</div> -<div class="choices"> - [[None|Main][removeJob(_S.Bodyguard, Job.BODYGUARD)]] -</div> -<p> - <<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.armory, "Main")>> -</p> diff --git a/src/uncategorized/concubineSelect.tw b/src/uncategorized/concubineSelect.tw deleted file mode 100644 index bc2b520e072bc93718c5252d550861726e49ff40..0000000000000000000000000000000000000000 --- a/src/uncategorized/concubineSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Concubine Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Master Suite", $encyclopedia = "Concubine">> -<<if ($ConcubineID != 0)>> - <<setLocalPronouns _S.Concubine>> - <span class='slave-name'><<= SlaveFullName(_S.Concubine)>></span> is serving as your Concubine.<br><br>$He will take the lead in seeing to your pleasure. -<<else>> - You have not selected a Concubine. -<</if>> - -<br><br>''Appoint a Concubine from your devoted slaves:'' -<br><br>[[None|Master Suite][removeJob(_S.Concubine, Job.CONCUBINE)]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.masterSuite, "Master Suite")>> diff --git a/src/uncategorized/discardConfirm.tw b/src/uncategorized/discardConfirm.tw index c15cff58ef1491a11eb924c4b6ce5212301804fb..a98e63d2ca643080ca4c94d7b92d76ad13515a46 100644 --- a/src/uncategorized/discardConfirm.tw +++ b/src/uncategorized/discardConfirm.tw @@ -3,10 +3,5 @@ This will permanently remove <<= getSlave($AS).slaveName>> from the game, and you will not receive any money for $him. This is primarily intended as a way to rid yourself of bugged slaves. Are you certain? -<br><br> - -<<link "Discard $him" "Slave Sold">><</link>> - -<br><br> - -[[Cancel|Slave Interact]] +<br><br><<link "Discard $him" "Sell Slave">><</link>> +<br><br>[[Cancel|Slave Interact]] \ No newline at end of file diff --git a/src/uncategorized/djSelect.tw b/src/uncategorized/djSelect.tw deleted file mode 100644 index 7a962c67acb2dcb087239931f6a6fc6ff834293f..0000000000000000000000000000000000000000 --- a/src/uncategorized/djSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: DJ Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Club", $encyclopedia = "DJ">> -<<if (_S.DJ)>> - <<setLocalPronouns _S.DJ>> - <span class='slave-name'><<= SlaveFullName(_S.DJ)>></span> is serving as your DJ.<br><br>$He will headline entertainment in $clubName. -<<else>> - You have not selected a DJ. -<</if>> - -<br><br>''Appoint a DJ from your devoted slaves:'' -<br><br>[[None|Club][removeJob(_S.DJ, "be the DJ")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.club, "Club")>> diff --git a/src/uncategorized/hgSelect.tw b/src/uncategorized/hgSelect.tw deleted file mode 100644 index 8ef653742e91d627531e1c47b57b915b2310411e..0000000000000000000000000000000000000000 --- a/src/uncategorized/hgSelect.tw +++ /dev/null @@ -1,95 +0,0 @@ -:: HG Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back to Main", $nextLink = "Main", $encyclopedia = "Head Girl">> - -<h1>Head Girl Management</h1> - -<<set _HGName = "Your Head Girl">> -<<if ($HeadGirlID != 0)>> - <<setLocalPronouns _S.HeadGirl>> - <<set _HGName = SlaveFullName(_S.HeadGirl)>> - <span class='slave-name'>_HGName</span> is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort; it is $his role to serve and comfort you at your side, in addition to performing normal Head Girl duties<</if>>. - <<if ($HGSuite)>> - <br> Currently $he lives in <<link "<<= capFirstChar($HGSuiteName)>>""Head Girl Suite">><</link>> - <</if>> - <br><br> -<</if>> - -__Slave training__ - -//_HGName will prioritize enabled items in the following order.// - -<br> -<<if $headGirlTrainsHealth>><<checkbox "$headGirlTrainsHealth" 0 1 checked>><<else>><<checkbox "$headGirlTrainsHealth" 0 1>><</if>> -Health -<br> -<<if $headGirlTrainsParaphilias>><<checkbox "$headGirlTrainsParaphilias" 0 1 checked>><<else>><<checkbox "$headGirlTrainsParaphilias" 0 1>><</if>> -Paraphilias -<br> -<<if $headGirlTrainsFlaws>><<checkbox "$headGirlTrainsFlaws" 0 1 checked>><<else>><<checkbox "$headGirlTrainsFlaws" 0 1>><</if>> -Flaws -<<if $headGirlSoftensFlaws>><<checkbox "$headGirlSoftensFlaws" 0 1 checked>><<else>><<checkbox "$headGirlSoftensFlaws" 0 1>><</if>> -Soften -<<if $headGirlOverridesQuirks>><<checkbox "$headGirlOverridesQuirks" 0 1 checked>><<else>><<checkbox "$headGirlOverridesQuirks" 0 1>><</if>> -Soften and Replace -<br> -<<if $headGirlTrainsObedience>><<checkbox "$headGirlTrainsObedience" 0 1 checked>><<else>><<checkbox "$headGirlTrainsObedience" 0 1>><</if>> -Obedience -<br> -<<if $headGirlTrainsSkills>><<checkbox "$headGirlTrainsSkills" 0 1 checked>><<else>><<checkbox "$headGirlTrainsSkills" 0 1>><</if>> -Skills - -<br>__Training methods__ -<br> -_HGName will be -<<if ($HGSeverity > 0)>> - ''aggressive'' when punishing, with rape strongly encouraged. [[Moderate|HG Select][$HGSeverity = 0]] -<<elseif ($HGSeverity == 0)>> - ''moderate'' when punishing, carefully selecting appropriate consequences. [[Be aggressive|HG Select][$HGSeverity = 1]] | [["Restrict " + $him|HG Select][$HGSeverity = -1]] -<<else>> - ''respectful'' when punishing, treating slaves decently. [[Be stricter|HG Select][$HGSeverity = 0]] -<</if>> -<br> -_HGName is -<<if $HGPiercings>> - ''allowed'' to use piercings as a tool to improve slaves' attitudes. [[Disallow|HG Select][$HGPiercings = 0]] -<<else>> - ''not allowed'' to use piercings as a tool to improve slaves' attitudes. [[Allow|HG Select][$HGPiercings = 1]] -<</if>> - -<br>__Behavior towards you__ -<br> -_HGName -<<if ($HGFormality != 0)>> - will be ''formal'': $he will always call you <<= getWrittenTitle(_S.HeadGirl)>>, just like any other slave. [[Allow private informality|HG Select][$HGFormality = 0]] -<<else>> - is allowed to be ''informal'': in private, $he may call you <<= properTitle()>>. [[Maintain complete formality|HG Select][$HGFormality = 1]] -<</if>> - -<<if $seePreg != 0>> - <<if $HeadGirlID != 0>> - <<if $universalRulesImpregnation == "HG">> - <br><br>_HGName is responsible for impregnating fertile slaves. - <<set $HGCum = 2+Math.trunc((_S.HeadGirl.balls/5)+(_S.HeadGirl.energy/95)+(_S.HeadGirl.health.condition/95)+(_S.HeadGirl.devotion/95)+($reproductionFormula*5))>> - <<if canPenetrate(_S.HeadGirl) && _S.HeadGirl.pubertyXY == 1>> - To maximize the chances of impregnation, $he will fuck fertile pussies frequently during the week. _S.HeadGirl.slaveName can service $HGCum slaves this way. - <<if _S.HeadGirl.devotion > 95>>$He loves you so much $he'll fuck them until $he's sore.<<else>>If $he were more devoted to you, $he might be able to drive $himself to get hard and service one more.<</if>> - <<if _S.HeadGirl.balls >= 120>>$His unreal balls produce nearly an endless supply of semen; $his ability to impregnate is almost limitless.<<elseif _S.HeadGirl.balls >= 80>>$His inhuman balls produce so much semen $he can easily impregnate twenty girls in one sitting.<<elseif _S.HeadGirl.balls >= 50>>$His giant balls produce so much semen $he can easily impregnate twelve girls in one sitting.<<elseif _S.HeadGirl.balls >= 25>>$His oversized balls produce so much semen $he can cum repeatedly in a single session.<<elseif _S.HeadGirl.balls >= 5>>$His big balls produce so much semen $he can cum more before $he's drained.<<else>>Bigger balls would let $him cum more before $he's drained.<</if>> - <<if _S.HeadGirl.health.condition > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>> - <<if _S.HeadGirl.energy > 95>>$His nymphomania drives $him to go above and beyond in this.<<else>>A more powerful sex drive could reduce $his refractory period.<</if>> - <<else>> - However, _S.HeadGirl.slaveName cannot perform this duty. - <</if>> - [["Rescind " + $his + " impregnation responsibility"|HG Select][$universalRulesImpregnation = "none"]] | [[See to it yourself|HG Select][$universalRulesImpregnation = "PC"]] - <<else>> - <<if canPenetrate(_S.HeadGirl) && _S.HeadGirl.pubertyXY == 1>> - <br><br>_HGName is capable of impregnating slaves, but it's not part of $his responsibilities. [["Assign " + $him + " to impregnate"|HG Select][$universalRulesImpregnation = "HG"]] - <</if>> - <</if>> - <</if>> -<</if>> - -<br><br>''Appoint a Head Girl from among your devoted slaves:'' -<br><br>[[None|Main][removeJob(_S.HeadGirl, "be your Head Girl")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.headGirlSuite, "Main")>> diff --git a/src/uncategorized/industrialDairyAssignmentScene.tw b/src/uncategorized/industrialDairyAssignmentScene.tw index e263e35eda99311207f63a3167b712862d61f508..e60fbe5cc10f86a61f66b4b784440a6f3cbe295f 100644 --- a/src/uncategorized/industrialDairyAssignmentScene.tw +++ b/src/uncategorized/industrialDairyAssignmentScene.tw @@ -2,6 +2,7 @@ <<set $nextButton = "Continue", $nextLink = $returnTo>> +<<set _slave = getSlave($AS)>> <<run App.Utils.setLocalPronouns(getSlave($AS))>> <span id="art-frame"> @@ -24,7 +25,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <<if !canTalk(getSlave($AS))>> $He <<if (!hasAnyArms(getSlave($AS)))>>mouths<<else>>gestures<</if>> $his thanks dreamily. <<else>> - "Thank you, <<Master>>," $he <<say>>s simply. "I de<<s>>erve thi<<s>>," $he adds quietly, half to $himself. + "Thank you, <<Master _slave>>," $he <<say>>s simply. "I de<<s>>erve thi<<s>>," $he adds quietly, half to $himself. <</if>> Then $he falls silent and <<if canSee(getSlave($AS))>>stares at<<else>>faces<</if>> the machine. Though $he hates $himself and looks forward to the release of being unable to do anything but get fucked, that doesn't mean $he isn't afraid. <<if (hasAnyArms(getSlave($AS)))>> @@ -63,7 +64,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <<if !canTalk(getSlave($AS))>> $He <<if (!hasAnyArms(getSlave($AS)))>>mouths<<else>>gestures<</if>> $his thanks shakily. <<else>> - "Th-thank you, <<Master>>," $he <<say>>s through $his tears. "I love you." + "Th-thank you, <<Master _slave>>," $he <<say>>s through $his tears. "I love you." <</if>> Then $he falls silent and <<if canSee(getSlave($AS))>>stares at<<elseif (hasAnyArms(getSlave($AS)))>>reaches out to touch<<else>>faces<</if>> the machine. $He's probably imagined this a thousand times, but the prospect is still frightening. <<if (hasAnyArms(getSlave($AS)))>> @@ -101,7 +102,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee As $he realizes $his fate, the worshipful slave squares $his shoulders, steeling $himself. <<if canTalk(getSlave($AS))>> - "<<Master>>," $he <<say>>s, "I will do my best to <<s>>erve you." + "<<Master _slave>>," $he <<say>>s, "I will do my best to <<s>>erve you." <<else>> $He gestures that $he'll do $his best for you. <</if>> @@ -136,7 +137,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <<if ($dairyFeedersSetting > 1)>> $He moves $his hand to the dildo that will occupy $his throat, feeding $him. <<if canTalk(getSlave($AS))>> - "I will need my mouth to take in a<<s>> much food a<<s>> I can," $he <<say>>s. "I won't be able to talk. <<S>>o, I'll <<s>>ay it one la<<s>>t time, <<Master>>: I love you." + "I will need my mouth to take in a<<s>> much food a<<s>> I can," $he <<say>>s. "I won't be able to talk. <<S>>o, I'll <<s>>ay it one la<<s>>t time, <<Master _slave>>: I love you." <<else>> $He focuses on just how much time $he'll need to spend with $his mouth full, so $he blows you one final kiss to show $his love. <</if>> @@ -150,7 +151,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <</if>> $He does not hesitate or <<if canSee(getSlave($AS))>>glance back at<<else>>show any resistance to<</if>> you. You stand by as the straps automatically tighten, robbing $him of the ability to move. <<if canTalk(getSlave($AS))>> - "<<Master>>," $he <<say>>s quietly, "I will try to be <<s>>trong enough to <<s>>tand up to thi<<s>>. But if I'm not, and I forget too much, plea<<s>>e leave me in here <<s>>o I can be u<<s>>eful." + "<<Master _slave>>," $he <<say>>s quietly, "I will try to be <<s>>trong enough to <<s>>tand up to thi<<s>>. But if I'm not, and I forget too much, plea<<s>>e leave me in here <<s>>o I can be u<<s>>eful." <<else>> $He swears to you that $he will try $his best, but implores you to leave $him to the machine should $his mind fade. <</if>> @@ -159,7 +160,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee As $he realizes $his fate, the tears come quickly. <<if canTalk(getSlave($AS))>> - "<<Master>>," $he <<say>>s quietly, "i<<s>> thi<<s>> for me?" + "<<Master _slave>>," $he <<say>>s quietly, "i<<s>> thi<<s>> for me?" <<else>> $He shakily gestures if this is where $he will be staying. <</if>> @@ -201,7 +202,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <<if ($dairyFeedersSetting > 1)>> $He moves $his hand to the dildo that will occupy $his throat, feeding $him. <<if canTalk(getSlave($AS))>> - "I-I won't be able to t-talk m-much," $he <<say>>s sadly. "<<S>>-<<s>>o, I'll <<s>>ay it one la<<s>>t time, <<Master>>: I love you." + "I-I won't be able to t-talk m-much," $he <<say>>s sadly. "<<S>>-<<s>>o, I'll <<s>>ay it one la<<s>>t time, <<Master _slave>>: I love you." <<else>> $He knows $he won't have another chance at this, so $he gives you one last tearful 'I love you'. <</if>> @@ -214,7 +215,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee Another slave helps $him <<if getSlave($AS).clothes != "no clothing">>strip and lays $him in<<else>>into<</if>> the machine. <</if>> <<if canTalk(getSlave($AS))>> - "<<Master>>," $he gasps out, the tears coming fast now. "C-can you + "<<Master _slave>>," $he gasps out, the tears coming fast now. "C-can you <<if (hasAnyArms(getSlave($AS)))>> h-hold my h-hand while it a-activate<<s>>? Plea<<s>>e?" You take $his hand as the straps automatically tighten, robbing $him of the ability to move. $He grips your hand tightly. <<else>> @@ -250,7 +251,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee <</if>> begging and sobbing, into the machine's embrace. <<if canTalk(getSlave($AS))>> - "Plea<<s>>e, <<Master>>!" $he begs. "Plea<<s>>e no! + "Plea<<s>>e, <<Master _slave>>!" $he begs. "Plea<<s>>e no! <<if ($dairyStimulatorsSetting > 1)>> I-it'll fuck my b-butthole <<s>>o wide I'll be u<<s>>ele<<ss>> for anal! <</if>> @@ -289,7 +290,7 @@ When <<= getSlave($AS).slaveName>> reports to the dairy, it's to the <<if canSee begging and sobbing, into the machine's embrace. <<if canTalk(getSlave($AS))>> - "Plea<<s>>e, <<Master>>!" $he begs. "Plea<<s>>e no! + "Plea<<s>>e, <<Master _slave>>!" $he begs. "Plea<<s>>e no! <<if ($dairyStimulatorsSetting > 1)>> I-it'll fuck my b-butthole so loo<<s>>e I'll be u<<s>>ele<<ss>> for anal! I p-promi<<s>>e I'll be a good little bitch from now on! <</if>> @@ -415,7 +416,7 @@ and brutal sodomy. <<if getSlave($AS).devotion > 95>> $He relaxes and does $his best to enjoy $himself, $his cheeks flushing with arousal. Once $his sphincter is well stretched, the machine withdraws the dildo, and before $his anus can begin to close, the machine replaces it with the main instrument. Despite the preparation, it's so huge that $he moans with fear $he feels the head touch $his buttocks. The moan becomes a long low groan as $his butthole accommodates the enormous thing. When it's all the way in, the dildo begins to withdraw for its first stroke, and $he <<if canTalk(getSlave($AS))>> - whispers, "<<Master>>, it's <<s>>-<<s>>o b-big." $He relaxes and recollects $himself, and then adds, "I can do thi<<s>>." + whispers, "<<Master _slave>>, it's <<s>>-<<s>>o b-big." $He relaxes and recollects $himself, and then adds, "I can do thi<<s>>." <<else>> begins distressing over its size before relaxing and recollecting $himself. $He smiles to show you $he can do this. <</if>> @@ -428,7 +429,7 @@ and brutal sodomy. <</if>> as $his butthole accommodates the enormous thing. When $he finally runs out of breath and slumps within $his restraints, the dildo begins to withdraw for its first stroke, and $he <<if canTalk(getSlave($AS))>> - whispers, "<<Master>>, it'<<s>> too b-big. It hu-hurt<<s>>." + whispers, "<<Master _slave>>, it'<<s>> too b-big. It hu-hurt<<s>>." <<else>> attempts to tell you that it is too big for $his hole. <</if>> diff --git a/src/uncategorized/jeSlaveDispute.tw b/src/uncategorized/jeSlaveDispute.tw index 510ebc9744b579e9984db557a626f30d5cfd7637..b89e97fa00966fdc248179330f099bc842095ddb 100644 --- a/src/uncategorized/jeSlaveDispute.tw +++ b/src/uncategorized/jeSlaveDispute.tw @@ -139,7 +139,7 @@ <<set _slave.vagina = 2>> <<set _slave.ovaries = 1>> <<if isFertile(_slave) && $seePreg == 1>> - <<= knockMeUp(_slave, 100, 2, -2, 1)>> + <<run knockMeUp(_slave, 100, 2, -2)>> <</if>> <</if>> <</switch>> diff --git a/src/uncategorized/madamSelect.tw b/src/uncategorized/madamSelect.tw deleted file mode 100644 index 35ec6c33eb6b97f7f5f6e8f5dca0c69b1643e038..0000000000000000000000000000000000000000 --- a/src/uncategorized/madamSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Madam Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Brothel", $encyclopedia = "Madam">> -<<if ($MadamID != 0)>> - <<setLocalPronouns _S.Madam>> - <span class='slave-name'><<= SlaveFullName(_S.Madam)>></span> is serving as your Madam.<br><br>$He will manage the brothel. -<<else>> - You have not selected a Madam. -<</if>> - -<br><br>''Appoint a Madam from your devoted slaves:'' -<br><br>[[None|Brothel][removeJob(_S.Madam, "be the Madam")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.brothel, "Brothel")>> diff --git a/src/uncategorized/milkmaidSelect.tw b/src/uncategorized/milkmaidSelect.tw deleted file mode 100644 index 02bfe668d0e973b28a3b8deef5ae6eb7d2e896b4..0000000000000000000000000000000000000000 --- a/src/uncategorized/milkmaidSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Milkmaid Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Dairy", $encyclopedia = "Milkmaid">> -<<if ($MilkmaidID != 0)>> - <<setLocalPronouns _S.Milkmaid>> - <span class='slave-name'><<= SlaveFullName(_S.Milkmaid)>></span> is serving as your Milkmaid.<br><br>$He will look after your livestock, helping them give milk<<if $seeDicks > 0>> and semen<</if>>. -<<else>> - You have not selected a Milkmaid. -<</if>> - -<br><br>''Appoint a Milkmaid from your obedient slaves:'' -<br><br>[[None|Dairy][removeJob(_S.Milkmaid, "be the Milkmaid")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.dairy, "Dairy")>> diff --git a/src/uncategorized/nurseSelect.tw b/src/uncategorized/nurseSelect.tw deleted file mode 100644 index 84211a0e169b22a1ea03c3bf0e92c6006fdfad19..0000000000000000000000000000000000000000 --- a/src/uncategorized/nurseSelect.tw +++ /dev/null @@ -1,15 +0,0 @@ -:: Nurse Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Clinic", $encyclopedia = "Nurse">> -<<if _S.Nurse>> - <<setLocalPronouns _S.Nurse>> - <span class='slave-name'><<= SlaveFullName(_S.Nurse)>></span> is serving as your Nurse.<br><br>$He will help heal your slaves. -<<else>> - You have not selected a Nurse. -<</if>> - -<br><br>''Appoint a Nurse from your devoted slaves:'' -<br><br>[[None|Clinic][removeJob(_S.Nurse, "be the Nurse")]] -<br><br> - -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.clinic, "Clinic")>> diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index cd9657606fbd9e8bf8b01f53232889f8cd6c10cb..055ab978f3436aab8b142598466124d149c860a7 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -270,7 +270,7 @@ and it's also obvious that they've been filling the few minutes they've been wai <<if (canDoVaginal(_S.Concubine) && _S.Concubine.vagina > 0)>> /* this is up here to give the PC priority on pregnancy */ <<if canImpreg(_S.Concubine, $PC)>> - <<= knockMeUp(_S.Concubine, 10, 0, -1, 1)>> + <<run knockMeUp(_S.Concubine, 10, 0, -1)>> <</if>> <<set _S.Concubine.counter.vaginal++, $vaginalTotal++>> _He2 moans into you as _he2 feels you run <<if $PC.dick == 0>>the cool head of the phallus<<else>>your cockhead<</if>> along _his2<<if _S.Concubine.labia > 0>> generous<</if>> labia before plunging it inside _him2. Getting the idea, _S.HeadGirl.slaveName @@ -285,14 +285,14 @@ and it's also obvious that they've been filling the few minutes they've been wai <</if>> <<if $PC.dick != 0>>You feel the penetration through _S.Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> <<if canImpreg(_S.Concubine, _S.HeadGirl)>> - <<= knockMeUp(_S.Concubine, 10, 1, _S.HeadGirl.ID, 1)>> + <<run knockMeUp(_S.Concubine, 10, 1, _S.HeadGirl.ID)>> <</if>> <<set _S.Concubine.counter.anal++, $analTotal++>> <<else>> gently eases $his cock in beside you.<<if $PC.dick != 0>> The added friction against you in _S.Concubine.slaveName's vagina feels incredible.<</if>> <<set _S.Concubine.counter.vaginal++, $vaginalTotal++>> <<if canImpreg(_S.Concubine, _S.HeadGirl)>> - <<= knockMeUp(_S.Concubine, 10, 0, _S.HeadGirl.ID, 1)>> + <<run knockMeUp(_S.Concubine, 10, 0, _S.HeadGirl.ID)>> <</if>> <</if>> <<set _S.HeadGirl.counter.penetrative++, $penetrativeTotal++>> @@ -318,7 +318,7 @@ and it's also obvious that they've been filling the few minutes they've been wai <<else>> /* this is up here to give the PC priority on pregnancy */ <<if canImpreg(_S.Concubine, $PC)>> - <<= knockMeUp(_S.Concubine, 10, 1, -1, 1)>> + <<run knockMeUp(_S.Concubine, 10, 1, -1)>> <</if>> <<set _S.Concubine.counter.anal += 2, $analTotal += 2>> Getting the idea, _S.HeadGirl.slaveName @@ -333,7 +333,7 @@ and it's also obvious that they've been filling the few minutes they've been wai Then $he grabs _S.Concubine.slaveName <<if !hasAnyLegs(_S.Concubine)>>by the stumps<<else>>behind the knee<<if hasBothLegs(_S.Concubine)>>s<</if>><</if>> and spreads _his2 <<if hasBothLegs(_S.Concubine)>>legs<<else>>cheeks<</if>> as far as they'll go, rotating _his2 hips to position _him2 for another phallus up the butt. <<set _S.HeadGirl.counter.penetrative++, $penetrativeTotal++>> <<if canImpreg(_S.Concubine, _S.HeadGirl)>> - <<= knockMeUp(_S.Concubine, 10, 1, _S.HeadGirl.ID, 1)>> + <<run knockMeUp(_S.Concubine, 10, 1, _S.HeadGirl.ID)>> <</if>> <<else>> slides a hand down and @@ -410,19 +410,19 @@ and it's also obvious that they've been filling the few minutes they've been wai /* sex count cleanup for _S.HeadGirl since the above block is not pretty */ <<if (canDoVaginal(_S.HeadGirl) && _S.HeadGirl.vagina > 0)>> <<if canImpreg(_S.HeadGirl, $PC)>> - <<= knockMeUp(_S.HeadGirl, 10, 0, -1, 1)>> + <<run knockMeUp(_S.HeadGirl, 10, 0, -1)>> <</if>> <<set _S.HeadGirl.counter.vaginal++, $vaginalTotal++>> <<if (canPenetrate(_S.Concubine))>> <<if (canDoAnal(_S.HeadGirl) && _S.HeadGirl.anus > 0)>> <<if canImpreg(_S.HeadGirl, _S.Concubine)>> - <<= knockMeUp(_S.HeadGirl, 10, 1, $ConcubineID, 1)>> + <<run knockMeUp(_S.HeadGirl, 10, 1, $ConcubineID)>> <</if>> <<set _S.HeadGirl.counter.anal++, $analTotal++>> <<else>> <<set _S.HeadGirl.counter.vaginal++, $vaginalTotal++>> <<if canImpreg(_S.HeadGirl, _S.Concubine)>> - <<= knockMeUp(_S.HeadGirl, 10, 0, $ConcubineID, 1)>> + <<run knockMeUp(_S.HeadGirl, 10, 0, $ConcubineID)>> <</if>> <</if>> <<set _S.Concubine.counter.penetrative++, $penetrativeTotal++>> @@ -435,13 +435,13 @@ and it's also obvious that they've been filling the few minutes they've been wai <</if>> <<else>> <<if canImpreg(_S.HeadGirl, $PC)>> - <<= knockMeUp(_S.HeadGirl, 10, 1, -1, 1)>> + <<run knockMeUp(_S.HeadGirl, 10, 1, -1)>> <</if>> <<set _S.HeadGirl.counter.anal += 2, $analTotal += 2>> <<if (canPenetrate(_S.Concubine))>> <<set _S.HeadGirl.counter.penetrative++, $penetrativeTotal++>> <<if canImpreg(_S.HeadGirl, _S.Concubine)>> - <<= knockMeUp(_S.HeadGirl, 10, 1, $ConcubineID, 1)>> + <<run knockMeUp(_S.HeadGirl, 10, 1, $ConcubineID)>> <</if>> <</if>> <</if>> diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw index fca571696d41b738d6797fa86c10443aa5f48bae..30c5424c9e4f1751959225506830d6759e377273 100644 --- a/src/uncategorized/randomIndividualEvent.tw +++ b/src/uncategorized/randomIndividualEvent.tw @@ -1,7 +1,7 @@ :: Random Individual Event [nobr] <<if $eventSlave == 0>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $nextButton = "Refresh", $nextLink = "Random Individual Event", $returnTo = "Random Individual Event", $encyclopedia = "Random Events">> <<link "Skip week-end events" "Next Week">><</link>> @@ -31,7 +31,7 @@ /* EVENT RANDOMIZATION */ <<set $events = populateEventArray().concat(App.Events.getIndividualEventsPassageList($eventSlave))>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0 && $debugModeEventSelection > 0)>> <<goto "random event select">> <<else>> <<goto "random event roll">> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index 3fb705ca53f581ea4575c402e9a9fc057f11e364..5cf2c24f5bb5ac038984caaa9554f21dc2d01274 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -2,7 +2,7 @@ <<if $eventSlave == 0>> <<set $eventSlave = $slaves.random()>> - <<if $cheatMode == 1>> + <<if ($debugMode > 0) && ($debugModeEventSelection > 0)>> <<set $nextButton = "Refresh", $nextLink = "Random Nonindividual Event", $returnTo = "Random Nonindividual Event", $encyclopedia = "Random Events">> <<link "Skip week-end events" "Next Week">><</link>> @@ -19,9 +19,11 @@ <<goto "Random Nonindividual Event">> <</if>> <<else>> - <<silently>> + /* <<silently>> */ /* initialize event lists as arrays [], not objects {} */ <<set $events = [], $RecETSevent = [], $REFIevent = [], $PESSevent = [], $PETSevent = [], $REFSevent = [], $activeSlave = 0, _recruitEvents = []>> + /* FIXME: almost none of the events that use this condition do so correctly. 50 || 25 is 50, not 25. */ + <<set _oneIfDebug = ($debugMode > 0 && $debugModeEventSelection > 0) ? 1 : 0>> <<if $week >= 10>> <<set $events.push("P associates public slut")>> @@ -173,11 +175,6 @@ <<if App.Entity.facilities.arcade.employeesIDs().size > 3>> <<set $events.push("RE busy arcade")>> <</if>> - <<if App.Entity.facilities.masterSuite.employeesIDs().size > 3>> - <<if $ConcubineID != 0>> - <<set $events.push("RE busy master suite")>> - <</if>> - <</if>> /* Position Events */ @@ -313,25 +310,25 @@ <<if $seePreg != 0>> <<if $seeHyperPreg == 1>> - <<if $arcologies[0].FSRestart == "unset" && ((random(1,100) <= 5) || $cheatMode)>> + <<if $arcologies[0].FSRestart == "unset" && ((random(1,100) <= 5) || ($debugMode > 0 && $debugModeEventSelection > 0))>> <<set $RecETSevent.push("desperate broodmother")>> <</if>> <</if>> <</if>> - <<if (($rep/400) > random(1,100)) || $cheatMode>> + <<if (($rep/400) > random(1,100)) || ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $RecETSevent.push("identical pair")>> <</if>> - <<if (($rep/400) > random(1,100)) || $cheatMode>> + <<if (($rep/400) > random(1,100)) || ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $RecETSevent.push("posh mother daughter")>> <</if>> <<if $seeIncest != 0>> - <<if (($rep/400) > random(1,100)) || $cheatMode>> + <<if (($rep/400) > random(1,100)) || ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $RecETSevent.push("incest sister sister")>> <</if>> - <<if (($rep/400) > random(1,100)) || $cheatMode>> + <<if (($rep/400) > random(1,100)) || ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $RecETSevent.push("incest twin sister")>> <</if>> - <<if (($rep/400) > random(1,100)) || $cheatMode>> + <<if (($rep/400) > random(1,100)) || ($debugMode > 0 && $debugModeEventSelection > 0)>> <<set $RecETSevent.push("incest mother daughter")>> <</if>> <</if>> @@ -346,286 +343,255 @@ <<if (_S.HeadGirl && _S.HeadGirl.devotion > 50)>> <<set $RecETSevent.push("mismatched pair")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("matched pair")>> <</if>> <<if $seeIncest != 0>> <<if $seePreg != 0>> - <<if ($rep/400) > (random(1,100) || $cheatMode) && $arcologies[0].FSRestart == "unset">> + <<if ($rep/400) > (random(1,100) || _oneIfDebug) && $arcologies[0].FSRestart == "unset">> <<set $RecETSevent.push("identical herm pair")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode) && $arcologies[0].FSRestart == "unset">> + <<if ($rep/400) > (random(1,100) || _oneIfDebug) && $arcologies[0].FSRestart == "unset">> <<set $RecETSevent.push("incest mother son")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode) && $arcologies[0].FSRestart == "unset">> + <<if ($rep/400) > (random(1,100) || _oneIfDebug) && $arcologies[0].FSRestart == "unset">> <<set $RecETSevent.push("incest father daughter")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("incest brother sister")>> <</if>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("incest twins mixed")>> <</if>> <</if>> <</if>> <<if $seeIncest != 0>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("incest brother brother")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("incest twin brother")>> <</if>> - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("incest father son")>> <</if>> <</if>> <</if>> - <<if $arcologyUpgrade.drones == 1>> - <<set _recruitEvents.push("RE malefactor")>> - <<set $malefactor = ["addict", "whore"]>> - <<if $seeDicks != 100>> - <<set $malefactor.push("businesswoman")>> - <<set $malefactor.push("liberator")>> - <<if $seePreg != 0>> - <<set $malefactor.push("anchorBaby")>> - <<if $arcologies[0].FSRepopulationFocus < 50>> - <<set $malefactor.push("mule")>> /* blends right in */ - <</if>> - <</if>> - <</if>> - <<if $seeDicks != 0>> - <<set $malefactor.push("rapist")>> - <</if>> - <<if $minimumSlaveAge <= 12>> - <<set $malefactor.push("orphanloli")>> - <</if>> - <<if $arcologies[0].FSPaternalist < 50>> - <<set $malefactor.push("escapee")>> - <</if>> - <<if $arcologies[0].FSSupremacistLawME + $arcologies[0].FSSubjugationistLawME > 0>> - <<set $malefactor.push("passfail")>> - <</if>> - <<set $malefactor = $malefactor.random()>> - <<if ($rep/150) > (random(1,100) || $cheatMode)>> - <<set _recruitEvents.push("RE malefactor")>> - <</if>> - <</if>> - - <<if ($rep/400) > (random(1,100) || $cheatMode)>> + <<if ($rep/400) > (random(1,100) || _oneIfDebug)>> <<set $RecETSevent.push("addict mother daughter")>> <</if>> <<if $FSAnnounced == 1>> <<set $FSAcquisitionEvents = []>> - <<if $arcologies[0].FSSupremacist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSupremacist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Supremacist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSubjugationist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSubjugationist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Subjugationist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSGenderRadicalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSGenderRadicalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Gender Radicalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSRepopulationFocus > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSRepopulationFocus > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Repopulation Efforts")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSRestart > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSRestart > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Eugenics")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <<if $seePreg != 0>> - <<if $arcologies[0].FSGenderFundamentalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSGenderFundamentalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Gender Fundamentalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <</if>> - <<if $arcologies[0].FSPaternalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPaternalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Paternalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSDegradationist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSDegradationist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Degradationist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSIntellectualDependency > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSIntellectualDependency > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Intellectual Dependency")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSlaveProfessionalism > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSlaveProfessionalism > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Slave Professionalism")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSBodyPurist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSBodyPurist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Body Purist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSTransformationFetishist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSTransformationFetishist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Transformation Fetishist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSPetiteAdmiration > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPetiteAdmiration > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Petite Admiration")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSStatuesqueGlorification > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSStatuesqueGlorification > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Statuesque Glorification")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSYouthPreferentialist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSYouthPreferentialist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Youth Preferentialist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSMaturityPreferentialist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Maturity Preferentialist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSlimnessEnthusiast > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Slimness Enthusiast")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSAssetExpansionist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSAssetExpansionist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Asset Expansionist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <<if $seePreg != 0>> - <<if $arcologies[0].FSPastoralist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPastoralist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Pastoralist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <</if>> - <<if $arcologies[0].FSPhysicalIdealist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPhysicalIdealist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Physical Idealist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSHedonisticDecadence > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSHedonisticDecadence > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Hedonistic Decadence")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSChattelReligionist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSChattelReligionist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Chattel Religionist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSupremacist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSupremacist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Supremacist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSubjugationist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSubjugationist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Subjugationist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSGenderRadicalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSGenderRadicalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Gender Radicalist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <<if $seePreg != 0>> - <<if $arcologies[0].FSGenderFundamentalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSGenderFundamentalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Gender Fundamentalist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> <</if>> - <<if $arcologies[0].FSPaternalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPaternalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Paternalist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSDegradationist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSDegradationist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Degradationist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSIntellectualDependency > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSIntellectualDependency > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Intellectual Dependency Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSlaveProfessionalism > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSlaveProfessionalism > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Slave Professionalism Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSBodyPurist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSBodyPurist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Body Purist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSTransformationFetishist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSTransformationFetishist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Transformation Fetishist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSPetiteAdmiration > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPetiteAdmiration > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Petite Admiration Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSStatuesqueGlorification > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSStatuesqueGlorification > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Statuesque Glorification Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSYouthPreferentialist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSYouthPreferentialist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Youth Preferentialist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSMaturityPreferentialist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Maturity Preferentialist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSSlimnessEnthusiast > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Slimness Enthusiast Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSAssetExpansionist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSAssetExpansionist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Asset Expansionist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSPastoralist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPastoralist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Pastoralist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSPhysicalIdealist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSPhysicalIdealist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Physical Idealist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSHedonisticDecadence > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSHedonisticDecadence > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Hedonistic Decadence Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSChattelReligionist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSChattelReligionist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Chattel Religionist Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSRepopulationFocus > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSRepopulationFocus > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Repopulation Efforts Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSRestart > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSRestart > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Eugenics Two")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSRomanRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSRomanRevivalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Roman Revivalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSNeoImperialist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Neo Imperialist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSAztecRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSAztecRevivalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Aztec Revivalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSEdoRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSEdoRevivalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Edo Revivalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSArabianRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSArabianRevivalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Arabian Revivalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSChineseRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSChineseRevivalist > (random(1,100) || _oneIfDebug)>> <<set $FSAcquisitionEvents.push("Chinese Revivalist")>> <<set _recruitEvents.push("RE FS acquisition")>> <</if>> - <<if $arcologies[0].FSEgyptianRevivalist > (random(1,100) || $cheatMode)>> + <<if $arcologies[0].FSEgyptianRevivalist > (random(1,100) || _oneIfDebug)>> <<set _recruitEvents.push("RE FSEgyptianRevivalist acquisition")>> <</if>> <<set $FSNonconformistEvents = []>> @@ -1016,7 +982,7 @@ <</if>> <</if>> - <<if minimumSlaveCost() > 3000 && (random(1,2) == 1 || $cheatMode)>> + <<if minimumSlaveCost() > 3000 && (random(1,2) == 1 || ($debugMode > 0 && $debugModeEventSelection > 0))>> <<set $events.push("RE shipping container")>> <</if>> @@ -1025,14 +991,14 @@ <</if>> <<if $mercenaries > 0>> - <<if (random(1,2) == 1 || $cheatMode)>> + <<if (random(1,2) == 1 || ($debugMode > 0 && $debugModeEventSelection > 0))>> <<set $events.push("RE AWOL")>> <<else>> <<set $events.push("RE Poker Night")>> <</if>> <</if>> - <<if ($arcologies[0].prosperity >= 100 && ($rep > random(1,30000)) || $cheatMode)>> + <<if ($arcologies[0].prosperity >= 100 && ($rep > random(1,30000)) || _oneIfDebug)>> <<set _milfSlaves = $slaves.filter(function(s) { return s.devotion > 20 && canTalk(s) && canWalk(s) && (s.assignment == "serve the public" || s.assignment == "serve in the club"); })>> <<if _milfSlaves.length > 0>> <<set $events.push("RE milf tourist")>> @@ -1051,7 +1017,7 @@ <<else>> <<set $events.push("RE citizen hookup")>> <</if>> - <<if ($rep-10000 > random(1,10000) || $cheatMode)>> + <<if ($rep-10000 > random(1,10000) || ($debugMode > 0 && $debugModeEventSelection > 0))>> <<if ($PC.vagina > 0 && $PC.boobs >= 300 && $PC.title == 0) && (random(0,99) < $seeDicks)>> <<set $events.push("RE male arcology owner")>> <<else>> @@ -1074,43 +1040,43 @@ /* FUTURE SOCIETY EVENTS */ - <<if $arcologies[0].FSBodyPurist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSBodyPurist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("body purism encounter")>> <</if>> - <<if $arcologies[0].FSTransformationFetishist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSTransformationFetishist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("transformation fetishism encounter")>> <</if>> - <<if $arcologies[0].FSYouthPreferentialist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSYouthPreferentialist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("youth preferentialist encounter")>> <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSMaturityPreferentialist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("maturity preferentialist encounter")>> <</if>> - <<if $arcologies[0].FSPastoralist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSPastoralist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("pastoralist encounter")>> <</if>> - <<if $arcologies[0].FSPhysicalIdealist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSPhysicalIdealist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("physical idealist encounter")>> <</if>> - <<if $arcologies[0].FSPaternalist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSPaternalist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("paternalist encounter")>> <</if>> - <<if $arcologies[0].FSDegradationist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSDegradationist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("degradationist encounter")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(25,100) || $cheatMode+24) && $arcologies[0].FSNeoImperialistLaw1 == 1>> + <<if $arcologies[0].FSNeoImperialist > (random(25,100) || _oneIfDebug+24) && $arcologies[0].FSNeoImperialistLaw1 == 1>> <<set $REFSevent.push("knightly duel")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(25,100) || $cheatMode+24) && $arcologies[0].FSNeoImperialistLaw2 == 1 && $newBaron == 1>> + <<if $arcologies[0].FSNeoImperialist > (random(25,100) || _oneIfDebug+24) && $arcologies[0].FSNeoImperialistLaw2 == 1 && $newBaron == 1>> <<set $REFSevent.push("dead baron")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(25,100) || $cheatMode+24) && $arcologies[0].FSNeoImperialistLaw2 == 1>> + <<if $arcologies[0].FSNeoImperialist > (random(25,100) || _oneIfDebug+24) && $arcologies[0].FSNeoImperialistLaw2 == 1>> <<set $REFSevent.push("baron demand")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(25,100) || $cheatMode+24) && $arcologies[0].FSNeoImperialistLaw2 == 1 && $arcologies[0].FSNeoImperialistLaw1 == 1 && $policies.regularParties == 1>> + <<if $arcologies[0].FSNeoImperialist > (random(25,100) || _oneIfDebug+24) && $arcologies[0].FSNeoImperialistLaw2 == 1 && $arcologies[0].FSNeoImperialistLaw1 == 1 && $policies.regularParties == 1>> <<set $REFSevent.push("feast")>> <</if>> - <<if $arcologies[0].FSNeoImperialist > (random(25,100) || $cheatMode+24)>> + <<if $arcologies[0].FSNeoImperialist > (random(25,100) || _oneIfDebug+24)>> <<set $REFSevent.push("warhound")>> <</if>> @@ -1137,11 +1103,11 @@ <<set _recruitEvents.length = _maxRecruitNumber>> <</if>> <<set $events = $events.concat(_recruitEvents).concat(App.Events.getNonindividualEventsPassageList())>> - <<if $cheatMode == 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<goto "random event select">> <<else>> <<goto "random event roll">> <</if>> - <</silently>> + /* <</silently>>*/ <</if>> /* CLOSES SLAVE SELECT */ diff --git a/src/uncategorized/reBusyMasterSuite.tw b/src/uncategorized/reBusyMasterSuite.tw deleted file mode 100644 index 16a1aafe364b4dd3f990dbfae26da359ec03fbc6..0000000000000000000000000000000000000000 --- a/src/uncategorized/reBusyMasterSuite.tw +++ /dev/null @@ -1,204 +0,0 @@ -:: RE busy master suite [nobr] - -<<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check">> - -/* figure out how each slave will be participating in the train */ -<<set _msSlaves = $slaves.filter((s) => s.fuckdoll === 0 && s.assignment === "serve in the master suite") - .map((s) => { - let options = []; - if (canDoAnal(s) && s.anus > 0) { - options.push("anal"); - } - if (canDoVaginal(s) && s.vagina > 0) { - options.push("vaginal"); - } - if (options.length === 0) { - options.push("none"); - } - return {slave: s, mode: options.pluck()}; - });>> -<<set _bottomSlave = _msSlaves.find((s) => s.mode !== "none").slave>> - -/* insufficient participants */ -<<set _participantCount = _msSlaves.filter((s) => s.mode !== "none").length>> /* SC <<if>> parser is stupid and can't deal with lambdas, so stuff it in a temporary */ -<<if _participantCount < 3>> - <<goto "RIE Eligibility Check">> -<<else>> - -<<setLocalPronouns _S.Concubine>> -<<setLocalPronouns _bottomSlave 2>> - -<p>You have an extended meeting with a prominent citizen planned, from the start of business in the morning until you're done. That's likely to be in the late evening, since he's probably going to get into technical business proposals, and _S.Concubine.slaveName knows it. $He is surprised, therefore, when a minor business emergency calls your would-be interlocutor away, canceling the meeting and sending you home hours earlier than you'd planned. $He <<if canTalk(_S.Concubine)>>giggles helplessly<<else>>signs humorously<</if>> at the surprise when you walk into your suite. Apparently, $he decided to while away the hours until you got back by having some truly grandiose group sex with all the slaves you have in the suite.</p> - -<p>$He had to turn to greet you as you entered, since $he was facing away from the entry, and the reason why is rather obvious. Up near the opposite wall, _bottomSlave.slaveName is on the floor with _his2 face down and _his2 ass up. - -/* build the train from all participating slaves */ -<<print _msSlaves.filter((s) => s.mode !== "none").reduce((acc, cur, i, arr) => { - let r = ``; - const {mode, slave} = cur; - const nextSlave = (i+1 >= arr.length) ? S.Concubine : arr[i+1].slave; - let hole = () => { - if (mode === "vaginal") { - if (slave.vagina > 2) { - return "loose pussy"; - } else if (slave.vagina > 1) { - return "pussy"; - } else { - return "tight pussy"; - } - } else if (mode === "anal") { - if (slave.anus > 2) { - return "asspussy"; - } else if (slave.anus > 1) { - return "asshole"; - } else { - return "tight butt"; - } - } - }; - let penetrator = () => { - let t = ``; - if (canPenetrate(nextSlave)) { - t += nextSlave.slaveName + "'s "; - if (nextSlave.dick > 3) { - t += "painfully big"; - } else { - t = "hard"; - } - t += "dick"; - } else { - t += "a "; - const size = (mode === "vaginal" ? slave.vagina : slave.anus); - if (size > 2) { - t += "huge"; - } else if (size > 1) { - t += "big"; - } else { - t += "moderate"; - } - t += " strap-on worn by " + nextSlave.slaveName; - } - return t; - }; - - if (i === 0) { - return r; /* bottom slave already accounted for */ - } else if (i !== arr.length-1) { - /* middle slaves */ - r += `${slave.slaveName}'s ${hole()} ` + "is" /* FUCK SUGARCUBE */ + ` filled by ${penetrator()}, `; - if (nextSlave.belly >= 150000) { - r += `whose middle is so obscenely distended that ${slave.slaveName} is struggling to support it.`; - } else if (nextSlave.belly >= 10000 || nextSlave.weight >= 160) { - r += `whose middle is resting on ${slave.slaveName}'s ${slave.skin} back.`; - } else if (nextSlave.boobs > 10000) { - r += `whose tits are so unreasonably large they're resting on ${slave.slaveName}'s ${slave.skin} back.`; - } else if (slave.butt > 4) { - r += `well cushioned by ${slave.slaveName}'s huge ass.`; - } else if (nextSlave.nipples === "huge") { - r += `who is bending to rub ${getPronouns(nextSlave).his} enormous hard nipples across ${slave.slaveName}'s ${slave.skin} back.`; - } else if (nextSlave.lips > 40) { - r += `who is bending forward to nibble along ${slave.slaveName}'s ${slave.skin} neck.`; - } else if (hasAnyArms(nextSlave)) { - r += `who is reaching around to grope ${slave.slaveName}'s ${slave.skin} chest.`; - } else { - r += `who is propped up against ${slave.slaveName}'s ${slave.skin} butt.`; - } - } else { - /* top slave */ - r += `Finally, ${slave.slaveName}'s ${hole()} ` + "is" /* FUCK SUGARCUBE */ + ` filled by ${penetrator()}, `; - r += "who has paused $his thrusting to issue a preemptory order to the slaves to stay where they are, before turning to greet you cheerfully."; - } - seX(nextSlave, "penetrative", slave, mode, 1); - return acc + ` ` + r; -}, ``)>></p> - -/* and now describe what the non-participating slaves are doing */ -<<set _nonparticipants = _msSlaves.filter((s) => s.mode === "none").map((s) => s.slave)>> -<<if _nonparticipants.length > 0>> - <p> - <<print _nonparticipants.map((s) => s.slaveName).reduce((res, ch, i, arr) => res + (i === arr.length - 1 ? ' and ' : ', ') + ch)>> can't participate in the train, so _S.Concubine.slaveName has them busy lying under the slaves who are, offering what oral stimulation they can manage. - </p> - <<run _nonparticipants.forEach((s) => actX(s, "oral"))>> -<</if>> - -<<set _top = _msSlaves.slice().reverse().find((s) => s.mode !== "none")>> - -<<set _concubineMode = "none">> -<<if canDoAnal(_S.Concubine) && _S.Concubine.anus > 0>> - <<set _concubineMode = "anal">> - <<if (_S.Concubine.anus > 2)>><<set _concubineHole = "loose anus">><<elseif (_S.Concubine.anus > 1)>><<set _concubineHole = "asshole">><<else>><<set _concubineHole = "tight little asshole">><</if>> -<<elseif canDoVaginal(_S.Concubine) && _S.Concubine.vagina > 0>> - <<set _concubineMode = "vaginal">> - <<if (_S.Concubine.vagina > 2)>><<set _concubineHole = "loose pussy">><<elseif (_S.Concubine.vagina > 1)>><<set _concubineHole = "pussy">><<else>><<set _concubineHole = "tight little pussy">><</if>> -<</if>> -<span id="result"> -<<if _concubineMode !== "none">> - <<link "Slide in behind the concubine for some action">> - <<replace "#result">> - <<setLocalPronouns _top.slave 2>> - _S.Concubine.slaveName anticipates you, and is already sliding $himself partway out of _top.slave.slaveName and cocking $his hips to spread $his - <<if _S.Concubine.butt > 15>> - immeasurable - <<elseif _S.Concubine.butt > 10>> - expansive - <<elseif _S.Concubine.butt > 7>> - enormous - <<elseif (_S.Concubine.butt > 5)>> - huge - <<elseif (_S.Concubine.butt > 2)>> - healthy - <<else>> - trim - <</if>> - buttocks as wide as $he can without disentangling $himself from the sex train. Up on the bed $he's at just the right height, and $he winks $his _concubineHole invitingly<<if canTalk(_S.Concubine)>>, laughing at the sheer decadence of it<</if>>. <<if ($PC.dick == 0)>>You pull on a strap-on and push it<<else>>You push yourself<</if>> home with some force, your concubine's extreme state of arousal leaving $his ass very relaxed and welcoming; the thrust shoves $him forward to hilt $himself in _top.slave.slaveName, and so on down the line, producing more giggling, some squealing, and much scrabbling for balance. It takes a while to find the rhythm, and while you wait for the inevitable tangles to be fixed you decide to challenge yourself. You reach around and <<if (_S.Concubine.boobs > 10000)>>sink your hands into _S.Concubine.slaveName's massive boobs<<elseif (_S.Concubine.boobs > 1000)>>heft _S.Concubine.slaveName's heavy boobs<<elseif (_S.Concubine.boobs > 300)>>tease _S.Concubine.slaveName's healthy breasts<<else>>massage _S.Concubine.slaveName's flat chest<</if>>, nibbling $his _S.Concubine.skin neck, and generally torturing $him with stimulation until $he climaxes to $his beloved <<= getWrittenTitle(_S.Concubine)>>. When $he does, you extract yourself and pull $him unceremoniously off _top.slave.slaveName, replacing $him in _top.slave.slaveName's <<if _top.mode === "anal">>butt<<else>>pussy<</if>>. You work your way down the line, orgasm by orgasm, delaying your own climax until the exhausted _bottomSlave.slaveName manages yet another orgasm by heroic efforts, and you're done. As you roll off _him2, panting, there is scattered applause and much congratulation from your harem of @@.mediumaquamarine;trusting slaves.@@ - <<set _S.Concubine.trust += 5>> - <<run seX($PC, "penetrative", _S.Concubine, _concubineMode)>> - <<run _msSlaves.forEach((s) => { - s.slave.trust += 1; - seX($PC, "penetrative", s.slave, s.mode); - })>> - <<if canImpreg(_bottomSlave, $PC)>> - <<= knockMeUp(_bottomSlave, 10, 1, $PC.ID, 1)>> - <</if>> - <</replace>> - <</link>> -<</if>> -<br><<link "Slide in up at the head of the bed for some oral">> - <<replace "#result">> - <<setLocalPronouns _bottomSlave 2>> - _bottomSlave.slaveName's <<= App.Desc.eyesColor(_bottomSlave)>> widen when you push _him2 upright for a moment and slide in under _him2, but _he2 wraps _his2 - <<if (_bottomSlave.lips > 95)>> - facepussy - <<elseif (_bottomSlave.lips > 70)>> - dick sucking lips - <<elseif (_bottomSlave.lips > 20)>> - pretty lips - <<else>> - lips - <</if>> - around your <<if ($PC.dick == 0)>>clit<<else>>cock<<if $PC.vagina != -1>> and starts stroking your pussy<</if>><</if>> eagerly enough, even as _msSlaves[1].slave.slaveName goes back to fucking _him2. The sex train is fairly gentle, since anything too fast would disintegrate the gymnastic arrangement, but _bottomSlave.slaveName is still getting enough stimulation that _he2 whimpers quietly into your <<if ($PC.vagina != -1)>>pussy<<else>>dick<</if>>, a nice feeling. The blowjob is <<if (_bottomSlave.skill.oral >= 100)>>masterful, despite the distraction<<elseif (_bottomSlave.skill.oral > 10)>>serviceable, despite the distraction<<else>>only mediocre, but serviceable enough<</if>>, so you let _him2 work for a while before gently shoving _him2 off the side of the bed and telling _him2 to get to the back of the line. The slaves all shuffle forward awkwardly, and inadvertently block your view so that you hear rather than see _bottomSlave.slaveName start groping your concubine _S.Concubine.slaveName's - <<if _S.Concubine.butt > 15>> - immeasurable - <<elseif _S.Concubine.butt > 10>> - expansive - <<elseif _S.Concubine.butt > 7>> - enormous - <<elseif (_S.Concubine.butt > 5)>> - huge - <<elseif (_S.Concubine.butt > 2)>> - healthy - <<else>> - trim - <</if>> - ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired slaves, all of whom are resting with at least one body part in contact with their @@.hotpink;beloved@@ <<= properMaster()>>. - <<set _S.Concubine.devotion += 5>> - <<run seX($PC, "penetrative", _S.Concubine, "oral")>> - <<run _msSlaves.forEach((s) => { - s.slave.devotion += 1; - seX($PC, "penetrative", s.slave, "oral", 2); - })>> - <</replace>> -<</link>> -</span> - -<</if>> /* closes eligibility check */ diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 622f2b83f4b832e0326d267a86e55b828c1f2b09..2aaac0a9f4ca4ec7da765084dc84f7d1e2c4e567 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -1,7 +1,7 @@ :: RE FS acquisition [nobr] <<if Array.isArray($FSAcquisitionEvents)>> - <<if $cheatMode == 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random FS acquisition event would have been selected from the following:'' <br> @@ -1475,7 +1475,7 @@ //You lack the necessary funds to enslave $him.// <</if>> -<<if $cheatMode == 1>> +<<if $debugMode > 0 && $debugModeEventSelection > 0>> <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][_slave = 0, $eventSlave = 0]] <</if>> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw deleted file mode 100644 index 2f280e5ae0c1b532df1f5af4ca92cb9107f6dc6e..0000000000000000000000000000000000000000 --- a/src/uncategorized/reMalefactor.tw +++ /dev/null @@ -1,577 +0,0 @@ -:: RE malefactor [nobr] - -<<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", $returnTo = "RIE Eligibility Check", $encyclopedia = "Free Cities Justice">> - -<<switch $malefactor>> -<<case "addict">> - <<set _slave = GenerateNewSlave()>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for attempted burglary.">> - <<set _slave.career = "a criminal">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(-40, -20))>> - <<set _slave.addict = 30>> - <<set _slave.anus = 3>> - <<if _slave.dick === 0>> - <<set _slave.balls = 0>> - <<set _slave.vagina = 2>> - <<set _slave.skill.vaginal = 15>> - <<else>> - <<set _slave.ovaries = 0>> - <<set _slave.clit = 0>> - <<set _slave.skill.vaginal = 0>> - <</if>> - <<set _slave.skill.oral = 15>> - <<set _slave.skill.anal = 35>> - <<set _slave.skill.whoring = 15>> - <<set _slave.earPiercing = 1>> - <<set _slave.nosePiercing = 1>> - <<set _slave.nipplesPiercing = 1>> - <<set _slave.clitPiercing = 1>> - <<set _slave.behavioralFlaw = "odd">> -<<case "escapee">> - <<set _slave = GenerateNewSlave(null, {disableDisability: 1})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for suspected escapism.">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(-80, -70), undefined, undefined, undefined, 70)>> - <<set _slave.heels = 1>> - <<set _slave.boobs += 100*random(12,32)>> - <<set _slave.butt += random(2,4)>> - <<set _slave.anus = 1>> - <<if _slave.dick === 0>> - <<set _slave.balls = 0>> - <<set _slave.vagina = 2>> - <<set _slave.skill.vaginal = 15>> - <<else>> - <<set _slave.dick = random(4,5)>> - <<set _slave.balls = random(0,2)>> - <<set _slave.ovaries = 0>> - <<set _slave.clit = 0>> - <<set _slave.skill.vaginal = 0>> - <</if>> - <<set _slave.skill.oral = 0>> - <<set _slave.skill.anal = 0>> - <<set _slave.skill.whoring = 0>> - <<set _slave.sexualFlaw = "hates penetration">> - <<set _slave.behavioralFlaw = "odd">> -<<case "anchorBaby">> - <<set _slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: $fertilityAge, maxAge: 42})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for smuggling slaves within $his body.">> - <<set _slave.career = App.Data.Careers.General.uneducated.random()>> - <<set _slave.devotion = random(-75,-50)>> - <<set _slave.trust = random(-75,-60)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(20, 40), undefined, undefined, undefined, 60)>> - <<set _slave.weight = random(40,80)>> - <<set _slave.accent = 3>> - <<set _slave.boobs += 200>> - <<set _slave.lactation = 1>> - <<set _slave.lactationDuration = 2>> - <<set _slave.ovaries = 1>> - <<if _slave.vagina < 2>> - <<set _slave.vagina += 3>> - <</if>> - <<set _slave.bellySag = 3, _slave.bellySagPreg = 3>> - <<set _slave.preg = 0>> - <<set _slave.pregWeek = -4>> - <<set _slave.counter.birthsTotal = 2>> - <<set _slave.counter.births = 2>> - <<set _slave.skill.vaginal = 30>> - <<set _slave.skill.oral = 15>> - <<set _slave.skill.anal = 15>> - <<set _slave.sexualFlaw = "crude">> - <<set _slave.behavioralFlaw = "bitchy">> -<<case "orphanloli">> - <<set _slave = GenerateNewSlave(null, {minAge: $minimumSlaveAge, maxAge: 12, disableDisability: 1})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for suspected escapism.">> - <<set _slave.career = "an orphan">> - <<set _slave.devotion = random(-15,0)>> - <<set _slave.trust = random(-75,-60)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(-80, -70), undefined, undefined, undefined, 70)>> - <<set _slave.weight = -100>> - <<set _slave.accent = 3>> - <<set _slave.boobs = 0>> - <<set _slave.butt = 0>> - <<set _slave.anus = 0>> - <<if _slave.dick === 0>> - <<set _slave.balls = 0>> - <<set _slave.vagina = 0>> - <<else>> - <<set _slave.dick = random(1,2)>> - <<set _slave.balls = random(1,2)>> - <<set _slave.ovaries = 0>> - <<set _slave.clit = 0>> - <</if>> - <<set _slave.skill.vaginal = 0>> - <<set _slave.skill.oral = 0>> - <<set _slave.skill.anal = 0>> - <<set _slave.skill.whoring = 0>> - <<set _slave.sexualFlaw = "apathetic">> - <<set _slave.behavioralFlaw = "gluttonous">> -<<case "businesswoman">> - <<set _slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: 35, maxAge: 45, race: "nonslave"})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for fraud and theft.">> - <<set _slave.career = "a criminal businesswoman">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<set _slave.vagina = 2>> - <<set _slave.preg = -1>> - <<set _slave.skill.vaginal = 15>> - <<set _slave.anus = 0>> - <<set _slave.boobs += 400>> - <<set _slave.boobsImplant = 400>> - <<set _slave.boobsImplantType = "normal">> - <<set _slave.butt += 2>> - <<set _slave.buttImplant = 2>> - <<set _slave.buttImplantType = "normal">> - <<run setHealth(_slave, jsRandom(20, 40), undefined, undefined, undefined, 10)>> - <<set _slave.sexualFlaw = "hates oral">> - <<set _slave.behavioralFlaw = "arrogant">> - <<set _slave.hStyle = "fashionable for a Free Cities businesswoman, up in a tight bun">> - <<set _slave.custom.tattoo = "$He has a pretty floral tattoo along $his collarbone.">> -<<case "whore">> - <<set _slave = GenerateNewSlave(null, {disableDisability: 1, race: "nonslave"})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for theft and battery.">> - <<set _slave.career = "a prostitute">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(-40, -20))>> - <<set _slave.anus = 2>> - <<if _slave.dick === 0>> - <<set _slave.balls = 0>> - <<set _slave.vagina = 2>> - <<set _slave.skill.vaginal = 35>> - <</if>> - <<set _slave.skill.oral = 35>> - <<set _slave.skill.anal = 35>> - <<set _slave.skill.whoring = 35>> - <<set _slave.boobs += 400>> - <<set _slave.boobsImplant = 400>> - <<set _slave.boobsImplantType = "normal">> - <<set _slave.butt++>> - <<set _slave.buttImplant = 1>> - <<set _slave.buttImplantType = "normal">> - <<set _slave.lips += 10>> - <<set _slave.lipsImplant = 10>> - <<set _slave.lipsPiercing = 1>> - <<set _slave.tonguePiercing = 1>> - <<set _slave.earPiercing = 1>> - <<set _slave.nosePiercing = 1>> - <<set _slave.eyebrowPiercing = 1>> - <<set _slave.nipplesPiercing = 1>> - <<set _slave.clitPiercing = 1>> - <<set _slave.sexualFlaw = "hates penetration">> - <<set _slave.hStyle = "strip">> - <<set _slave.custom.tattoo = "$He has a teardrop tattooed under each eye.">> -<<case "rapist">> - <<set _slave = GenerateNewSlave("XY", {disableDisability: 1, minAge: 16, race: "nonslave"})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for the rape of a free woman.">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(0, 20), undefined, undefined, 0, 5)>> - <<set _slave.anus = 0>> - <<set _slave.balls = random(2,4)>> - <<set _slave.skill.oral = 0>> - <<set _slave.skill.anal = 0>> - <<set _slave.behavioralFlaw = "arrogant">> - <<set _slave.sexualFlaw = "hates men">> -<<case "mule">> - <<set _pram = {disableDisability: 1, minAge: 13, race: "nonslave"}>> - <<if $pedo_mode === 0>> - <<set _pram.maxAge = 26>> - <</if>> - <<set _slave = GenerateNewSlave("XX", _pram)>> - <<set _slave.origin = "You sentenced $him to enslavement for smuggling drugs into the arcology.">> - <<set _slave.career = "a drug mule">> - <<set _slave.devotion = random(-50,-20)>> - <<set _slave.trust = random(-100,-75)>> - <<set _slave.vagina = 2>> - <<set _slave.preg = -2>> - <<set _slave.bellyImplant = 0>> - <<set _slave.cervixImplant = 1>> - <<set _slave.pubicHStyle = "shaved">> - <<set _slave.bellySag = 2>> - <<set _slave.skill.vaginal = 50>> - <<set _slave.anus = 0>> - <<set _slave.hips = 0>> - <<set _slave.weight = -60>> - <<set _slave.waist = random(-30,-10)>> - <<set _slave.boobs = random(4,5)*100>> - <<set _slave.boobShape = "perky">> - <<run setHealth(_slave, jsRandom(-20, 10), undefined, undefined, undefined, 40)>> - <<set _slave.sexualFlaw = "hates penetration">> - <<set _slave.behavioralFlaw = "shamefast">> - <<set _slave.accent = 0>> -<<case "liberator">> - <<set _slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: random(12, 28) , maxAge: 43})>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for attempted theft of a slave.">> - <<set _slave.career = "an antislavery activist">> - <<set _slave.devotion = random(-75,-60)>> - <<set _slave.trust = random(-15,0)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<set _slave.muscles = 50>> - <<set _slave.weight = random(-20,30)>> - <<set _slave.waist = random(-10,10)>> - <<set _slave.skill.vaginal = 0>> - <<set _slave.skill.oral = 0>> - <<set _slave.skill.anal = 0>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.combat = 1>> - <<set _slave.anus = 0>> - <<run setHealth(_slave, jsRandom(60, 80), undefined, undefined, 0, 10)>> - <<set _slave.behavioralFlaw = "arrogant">> - <<set _slave.sexualFlaw = "hates men">> - <<set _slave.hStyle = "shaved into a mohawk">> - <<set _slave.custom.tattoo = "$He seems to have had slave tattoos at one time, but has had them cheaply removed.">> -<<case "passfail">> - <<set _pram = {disableDisability: 1}>> - <<if $arcologies[0].FSSubjugationistLawME === 1>> - <<set _pram.race = $arcologies[0].FSSubjugationistRace>> - <<elseif $arcologies[0].FSSupremacistLawME === 1>> - <<set _races = App.Utils.getRaceArrayWithoutParamRace($arcologies[0].FSSupremacistRace)>> - <<set _pram.race = _races.random()>> - <</if>> - <<set _slave = GenerateNewSlave(null, _pram)>> - <<set _slave.origin = "You sentenced $him to enslavement as a punishment for defying local racial segregation laws.">> - <<set _slave.career = App.Data.Careers.General.educated.random()>> - <<set _slave.devotion = random(-75,-50)>> - <<set _slave.trust = random(-75,-50)>> - <<set _slave.oldDevotion = _slave.devotion>> - <<run setHealth(_slave, jsRandom(-40, -20), undefined, undefined, 0, 10)>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 15>> - <<if $arcologies[0].FSSupremacistLawME === 1>> - <<set _fakeRace = $arcologies[0].FSSupremacistRace>> - <<elseif $arcologies[0].FSSubjugationistLawME === 1>> - <<set _races = App.Utils.getRaceArrayWithoutParamRace($arcologies[0].FSSubjugationistRace)>> - <<set _fakeRace = _races.random()>> - <</if>> - <<set _realRace = _slave.race>> - <<set _slave.race = _fakeRace>> - <<set _slave.skin = randomRaceSkin(_fakeRace)>> - <<run setEyeColor(_slave, randomRaceEye(_fakeRace))>> - <<set _slave.hColor = randomRaceHair(_fakeRace)>> - <<set _slave.override_Race = 1, _slave.override_Skin = 1, _slave.override_H_Color = 1, _slave.override_Eye_Color = 1>> -<</switch>> - -<<run App.Utils.setLocalPronouns(_slave)>> - -<<= capFirstChar($assistant.name)>> alerts you that a <<if $malefactor === "mule">>potential <</if>>criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, -<<if $malefactor !== "liberator">> - since nothing can escape the notice of the omnipresent monitoring systems. -<</if>> - -<<switch $malefactor>> -<<case "addict">> - Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a $girl suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. $He's now lying <<if $seePee === 1>>in a pool of $his own urine<<else>>face-down on the pavement<</if>> with a taser round stuck in $his ass; the drone responsible is hovering helpfully nearby, hitting $him with another shock whenever $he does more than twitch. -<<case "escapee">> - This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. The criminal is anything but usual, however. $He bears signs of extreme hormone manipulation over a long period, and has had $his Achilles tendons clipped. Camera records show $him crawling in with a cargo shipment. $He's clad in rags, and you cannot find any record of $him anywhere. The growing crowd is convinced $he's an escaped slave, and is growing ugly. -<<case "anchorBaby">> - This is likely another case of attempted escape by a slave or potentially a smuggling operation. The cause of detection is a steady stream of moaning emanating from a cargo container recently deposited into the arcology's cargo depot and has attracted a crowd of curious onlookers. Video feeds show the container being open and a heavily pregnant <<if _slave.physicalAge > 30>>$woman<<elseif _slave.physicalAge > 19>>young $woman<<elseif _slave.physicalAge > 12>>teenager<<else>>little $girl<</if>> staggering out while clutching a newborn to $his breast and struggling to hold back $his second child from being born. From what little language $he knows, $he seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, $he squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and $his inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. -<<case "orphanloli">> - This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. Several reports of petty theft were made in the area recently as well. The criminal is anything but usual, however. $He is very young, emaciated, and desperate. Camera records show $him crawling in through an air vent. $He's clad in rags, clutching a presumably stolen apple, and you cannot find any record of $him anywhere. The growing crowd is convinced $he's an escaped slave, and $his inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. -<<case "businesswoman">> - Nevertheless, it seems one of your tenants, a hitherto well-respected business<<= $woman>>, has left the straight and narrow. It seems $his business affairs took a decisive turn for the worse, so $he attempted to drain $his clients' funds and leave your arcology before anyone was the wiser. Unfortunately for $him, your security drones, controlled by $assistant.name, were very much the wiser. <<= capFirstChar($assistant.name)>> has with machine efficiency compiled the completest proofs of corporate malfeasance you have ever seen. Your wretched tenant signed a contract with you that included provisions forbidding theft. $He is entirely at your mercy. -<<case "whore">> - Nevertheless, it seems one of your tenants, a free whore, has been systematically stealing from clients. $He was furtive enough to get away with it for a time, but has now been caught red-handed. The john who caught $him attempted to stop $him, and $he fought him. Like many prostitutes $he carried a weapon in $his handbag, and the man is severely wounded. <<= capFirstChar($assistant.name)>> has with machine efficiency compiled a staggering dossier of video logs and personal testimony from previous customers who now understand where their personal belongings went, as well as appalling footage of today's victim's injuries. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. $He is entirely at your mercy. -<<case "rapist">> - Nevertheless, it seems one of your tenants saw fit to rape a free woman. Within ten minutes, the inhuman efficiency of $assistant.name has compiled video recordings, physical evidence, and even the victim's testimony, which is quite consistent with the first two. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. $He is entirely at your mercy. -<<case "mule">> - However some individuals still make attempts to fool them. In this case, the cameras are fixed on a clearly pregnant, and hugely at that, $woman as $he works $his way through the crowded market sectors. You watch as $he repeatedly bumps into other patrons and stalls, pausing to apologize before proceeding on $his way, as if $he wasn't familiar with $his gravid swell. $His body is also clearly underdeveloped for someone ready to drop quadruplets at any moment; thin, with barely any hips to speak of and a pert bust clearly not swollen with milk. $He even walks like a $woman not burdened with nine months of gestating multiples, let alone a single. As $he stumbles under $his own weight, $his shirt rides up, giving you a clear view of the deep red stretch marks of a belly that grew far faster than it could handle. You've seen enough and order the drones to corral $him until security arrives. $His expression shifts from fear as they encircle $him to panic as a groan escapes $his lips. $He grabs $his stomach as a capsule falls to the floor. As another contraction hits $him, $he drops to the ground and begins to "give birth" to $his illegal cargo. - <<if $bellyImplants === 1>> - $He likely has a belly implant designed to carry foreign objects inside $his womb and, having lost $his composure, is now vacating its contents. - <<else>> - You have no idea what you are witnessing until <<if $assistant.name === "your personal assistant">>your personal assistant pulls up an advertisement for a fillable womb located implant<<else>>$assistant.name introduces you to a fillable womb located implant<</if>> that $he likely has installed. - <</if>> - $He is easily taken into custody and $his contraband confiscated once the jeering crowd is dispersed enough to reach $him. -<<case "liberator">> - <<setNonlocalPronouns $seeDicks>> - but this is a special case. A well-muscled, well-armed $woman was caught attempting to smuggle a slave owned by one of your tenants out of the arcology. Though the slave surrendered immediately (and will be dealt with by _hisU owner), the would-be liberatrix was caught by your security drones. $He destroyed two of them and caused @@.red;other minor damage@@<<run cashX(forceNeg(1000), "event", _slave)>> that will require a small sum to repair, but was eventually subdued. The drones had to expend a great deal of nonlethal ordnance to bring $him down and keep $him down, but $he is now entirely at your mercy. -<<case "passfail">> - Nevertheless, it seems one of your tenants, a rather ordinary white collar worker, has been severely wounded in a freak industrial accident, to the point that a blood transfusion was needed. In the course of doing so, an arcology hospital's autosurgery noted several genetic discrepancies and alerted a few nearby drones. Simply put, while the $woman appears to be a normal _fakeRace $woman, this is the result of numerous cosmetic surgeries; $he is actually _realRace. The laws of your arcology hold that members of the _realRace race are fit only for slavery, quite unlike the superior _fakeRace people. That <<= addA(_realRace)>> $girl would gain a position of relatively high class and power through such deception and fraud is considered an outrage by many of your citizens, and so $he was placed under arrest before $he even awoke from surgery. $He is now entirely at your mercy. -<</switch>> - -<<set _ContractCost = 1000>> -<<set _slaveCost = slaveCost(_slave)>> -<<set _slaveCost -= 1000>> - -<br><br>//Applying enslavement as punishment will cost <<print cashFormat(_ContractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat(_slaveCost)>>.// -<br><br> <<includeDOM App.Desc.longSlave(_slave, {market: "generic"})>> - -<br><br> -<span id="result"> - <<if $cash >= _ContractCost>> - <<link "Enslave $him">> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as $he begins begging for a fix. Then it's off to the penthouse for basic slave induction. - <<case "escapee">> - You complete the legalities and biometric scanning quickly and without fuss. $He remains limp throughout the process, only recovering enough to barely grasp the situation as $he is enslaved. - <<case "orphanloli">> - You complete the legalities and biometric scanning quickly and without fuss. $He sobs throughout the process, though stops once $he realizes being a slave means free food. - <<case "anchorBaby">> - You complete the legalities and biometric scanning quickly and without fuss. $He doesn't stop screaming "citizenship" until $his children are taken from $him and $he is shoved off to the penthouse for basic slave induction. - <<case "businesswoman" "mule" "passfail" "rapist" "whore">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. - <<case "liberator">> - You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, $he could awake at any time. Based on the drone logs, $he is likely to be violent when $he does. - <</switch>> - <<includeDOM App.UI.newSlaveIntro(_slave)>> - <</replace>> - <</link>> - <br><<link "Sentence $him to a day in the stocks, then enslave $him">> - <<run healthDamage(_slave, 10)>> - <<set _slave.behavioralFlaw = "odd">> - <<set _slave.sexualFlaw = "hates penetration">> - <<set _slave.anus = 2>> - <<set _fuckCount = random(20,35)>> - <<run seX(_slave, "anal", "public", "penetrative", _fuckCount)>> - <<if _slave.vagina > -1>> - <<if _slave.vagina < 2>> - <<set _slave.vagina = 2>> - <</if>> - <<if isFertile(_slave) && _slave.eggType === "human">> - <<= knockMeUp(_slave, 40, 2, -2)>> - <</if>> - <<run seX(_slave, "vaginal", "public", "penetrative", _fuckCount*2)>> - <</if>> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - You declare $his holes fair game for the entire arcology, since $he must somehow repay $his debt to society. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "escapee">> - You declare $his holes fair game for the entire arcology, so that all free citizens can own $him for a moment, if they wish. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "orphanloli">> - You declare $his holes fair game for the entire arcology, so that all free citizens can own $him for a moment, if they wish. $He spends a torturous day in the stocks before being hauled in for enslavement, @@.health.dec;completely broken@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<set _slave.fetish = "mindbroken">> - <<case "anchorBaby">> - You declare $his holes fair game for the entire arcology; since $he wants to produce future slaves, your arcology might as well have the privilege of fathering them. $He spends a torturous day in the stocks after $his children are taken to a slave orphanage before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "businesswoman">> - You declare $his holes fair game for the entire arcology, in payment for $his crimes. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "whore">> - You declare $his holes fair game for the entire arcology, to repay $his thefts. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "rapist">> - You declare $his holes fair game for the entire arcology. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "mule">> - You declare $his holes fair game for the entire arcology as punishment for trying to smuggle in a load instead of taking one. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<case "liberator">> - Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. $His holes are thus fair game for the entire arcology. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. - <<case "passfail">> - You declare $his holes fair game for the entire arcology; after all, $he did want to be around lots of _fakeRace people, didn't $he? $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.health.dec;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if _slave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <</switch>> - <<run repX(500, "event", _slave)>> - <<set $arcologies[0].prosperity += 2>> - <<includeDOM App.UI.newSlaveIntro(_slave)>> - <</replace>> - <</link>> - <<if $arcade > 0>> - <br><<link "Enslave $him and sentence $him to a month in the arcade">> - <<= assignJob(_slave, "be confined in the arcade")>> - <<set _slave.choosesOwnAssignment = 0>> - <<set _slave.sentence = 4>> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned recovers enough by the end of the process to start masturbating weakly, even as $he begins begging for a fix. When $he learns $he's headed to the arcade, $he actually relaxes a little, having heard the whores there get drugs. The public @@.green;looks forward@@ to seeing $him there, especially the owner of the shop $he attempted to burglarize. - <<case "escapee" "orphanloli">> - You complete the legalities and biometric scanning quickly, and tell the crowd that $his holes will be available at the arcade within the hour. The public @@.green;looks forward@@ to seeing $him there, angrily suspecting $him of being an escapee and glad that they'll be able to take part in $his punishment. - <<case "anchorBaby">> - You complete the legalities and biometric scanning quickly and have $his children taken away. The condemned screeches $his displeasure throughout the process until you grow tired of the whining and sedate $him for immurement in the arcade. The public @@.green;looks forward@@ to seeing $him there and vying to see who gets to fill $his womb with another child. - <<case "businesswoman" "mule" "passfail" "rapist" "whore">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned sobs and begs throughout the process until you grow tired of the whining and sedate $him for immurement in the arcade. The public @@.green;looks forward@@ to seeing $him there and getting some of their own back. - <<case "liberator">> - You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, $he could awake at any time. It would be best to have $him restrained for public use in the arcade first. The public @@.green;looks forward@@ to seeing $him there. - <</switch>> - <<run repX(250, "event", _slave)>> - <<run newSlave(_slave)>> /* skip New Slave Intro */ - <</replace>> - <</link>> - <</if>> - <<if $malefactor !== "mule">> - <<if $dairy > 0>> - <<if $dairyRestraintsSetting > 1>> - <br><<link "Enslave $him and send $him straight to the industrial dairy">> - <<= assignJob(_slave, "work in the dairy")>> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned accepts a sedative, thinking it's aphrodisiacs, and $his unconscious body is installed in $dairyName. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the addict's <<if $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction<<else>>breasts as they are roughly milked<</if>>, together with a lengthy report on the experimental detox process used to ensure that the milk $he produces will be untainted. - <<case "escapee">> - You complete the legalities and biometric scanning quickly. The condemned is too far gone to resist as $he is installed in $dairyName. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the escapee's <<if $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction<<else>>breasts as they are roughly milked<</if>>. - <<case "orphanloli">> - You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as $he is installed in $dairyName but $he weeps the entire time. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the escapee's <<if $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && (_slave.vagina > 0)>>agony as $his once tight pussy adapts to industrial reproduction<<else>>budding breasts as they are roughly milked<</if>>. - <<case "anchorBaby">> - You complete the legalities and biometric scanning quickly and cautiously before having $his children taken away. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of $his next batch of slave product in eighteen years and nine months<<elseif $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<case "businesswoman">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of $his first slave product in eighteen years and nine months<<elseif $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<case "whore">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his well-traveled pussy adapts to industrial reproduction<<elseif $dairyStimulatorsSetting > 1>>discomfort as $his well-traveled anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<case "rapist">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the rapist's <<if $dairyStimulatorsSetting > 1>>agony as $his anus adapts to accommodate rectal dildo hydration<<else>>newly growing breasts as they are roughly milked<</if>>. - <<case "liberator">> - You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction<<elseif $dairyStimulatorsSetting > 1>>discomfort as $his anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>, together with a report on the likely productivity of such a fit body capable of withstanding the stress of high throughput. - <<case "passfail">> - You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as $he is installed in $dairyName but $he weeps the entire time. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && (_slave.vagina > 0)>>discomfort as $his pussy adapts to industrial reproduction<<elseif $dairyStimulatorsSetting > 1>>discomfort as $his anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <</switch>> - <<run repX(250, "event", _slave)>> - <<run newSlave(_slave)>> /* skip New Slave Intro */ - <</replace>> - <</link>> - <</if>> - <</if>> /* closes dairy > 0 */ - <</if>> - <<if $seeExtreme > 0>> - <br><<link "Punitively amputate $his limbs, and then enslave $him">> - <<run healthDamage(_slave, 20)>> - <<run removeLimbs(_slave, "all")>> - <<set _slave.behavioralFlaw = "odd">> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs for a fix until $he realizes what's coming, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness.@@ - <<case "escapee">> - An example must be made. If $he escaped once with $his tendons clipped, $he must be rather talented at it. It remains to be seen if $he can manage to escape with neither arms nor legs, so you announce $his sentence to the crowd and send $his unconscious form for reduction. Of course, @@.health.dec;$his health is affected.@@ The public @@.green;approves of this harshness,@@ believing that you have taken strong measures against escapees. - <<case "orphanloli">> - An example must be made. If $he thinks $he can escape captivity and steal to survive, let's see $him try without arms and legs, so you announce $his sentence to the crowd and send $his unconscious form for reduction. Of course, @@.health.dec;$his health is affected.@@ The public @@.green;approves of this harshness,@@ believing that you have taken strong measures against escapees. - <<case "anchorBaby">> - An example must be made. Potential immigrants must understand that attempting to circumvent the process will result in severe fines and proportional punishment when they are incapable of paying them. The protesting mother is stripped, both of clothing and children, and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since $he can hardly attempt to smuggle things into your arcology without the ability to move. - <<case "businesswoman">> - An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness.@@ - <<case "whore">> - An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since $he can hardly attempt to steal anything without hands. - <<case "rapist">> - An example must be made. Rape is rare in your arcology, since citizens are so generously provided with means of sexual outlet. When the price of renting a slave that's impossible to rape is as low as it is, sexual assault of a free woman is doubly unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since even if $he cheers up and ever manages an erection again, $he's not likely to rape anyone without arms or legs. - <<case "mule">> - An example must be made. With the quantity of drugs consumed in the arcology, quality is everything and attempting to undermine that is unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since $he can hardly haul contraband into your arcology without the ability to move $himself. - <<case "liberator">> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since $he will scarcely be able to liberate anyone without arms or legs. - <<case "passfail">> - An example must be made. The citizens of your arcology must be assured that the racially inferior will not try to rise above their station, no matter their deceptions. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.health.dec;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness.@@ - <</switch>> - <<run repX(500, "event", _slave)>> - <<includeDOM App.UI.newSlaveIntro(_slave)>> - <</replace>> - <</link>> - <<if $malefactor === "rapist" && _slave.balls > 0>> - <br><<link "Enslave the criminal and geld $him">> - <<run healthDamage(_slave, 20)>> - <<set _slave.balls = 0>> - <<set _slave.devotion -= 25>> - <<set _slave.trust -= 25>> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - Video feeds from your remote surgery are made public as the protesting criminal is strapped down and gelded. $He is so utterly broken by this turn of events that you complete the legalities and biometric scanning without fuss. The condemned sobs weakly throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ which increases your arcology's prosperity by @@.green;giving it a reputation for swift and terrible justice.@@ - <<run repX(500, "event", _slave)>> - <<set $arcologies[0].prosperity += 10>> - <<includeDOM App.UI.newSlaveIntro(_slave)>> - <</replace>> - <</link>> - <</if>> - <</if>> /* closes seeExtreme */ - <<if $malefactor === "orphanloli">> - <br><<link "'Adopt' $him">> - <<set _slave.devotion = 25>> - <<set _slave.trust = 25>> - <<set _slave.origin = "$He was an orphan forced to live and steal on the streets until you adopted $him.">> - <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> - <<replace "#result">> - You sit down and talk to the exhausted $girl, handing $him a contract cleverly altered to resemble adoption papers. Once $he comprehends what $he is looking at, $he eagerly signs it. Only once $he has reached the penthouse and been introduced to the slave life does $he realize $he willingly signed away $his freedom. Though $he can't complain. A warm cot and plenty of food await, which to $him is a huge improvement over a slow death on the streets. The public - <<if $arcologies[0].FSPaternalist != "unset">> - @@.green;is impressed by your act,@@ even if it is a trick. - <<run repX(500, "event", _slave)>> - <<else>> - @@.red;feels you let this criminal off too easy.@@ - <<run repX(forceNeg(100), "event", _slave)>> - <</if>> - <<includeDOM App.UI.newSlaveIntro(_slave)>> - <</replace>> - <</link>> - <</if>> - <<else>> - //You lack the necessary funds to enslave $him.// - <</if>> - <<if $malefactor === "anchorBaby">> - <br><<link "Grant $him citizenship">> - <<replace "#result">> - You help the exhausted mother to $his feet and hand $him $his second newborn. $He watches you, uncertain of your motives, until you have $him escorted to the proper welcoming facility and put in a good word for having $him added to your arcology's free population. You announce to the public that such a fertile <<if _slave.physicalAge > 30>>MILF<<elseif _slave.physicalAge > 19>>$woman<<elseif _slave.physicalAge > 12>>teen<<else>>youth<</if>> will be a boon to <<if $arcologies[0].FSRepopulationFocus != "unset">>Repopulationism<<else>>society<</if>>, and that the contract $he is signing mandates $he be on powerful fertility agents whenever $he isn't pregnant. During $his residency, free or not, $he will provide society with dozens of future children. The public - <<if $arcologies[0].FSRepopulationFocus != "unset">> - @@.green;approves of breeders, free or not,@@ and word spreads that any and all mothers are welcome into your arcology @@.green;adding to its prosperity.@@ - <<run repX(500, "event", _slave)>> - <<elseif $arcologies[0].FSPaternalist != "unset">> - @@.green;sympathizes with your charity.@@ - <<run repX(100, "event", _slave)>> - <<else>> - @@.red;feels you let this criminal off too easy.@@ - <<run repX(forceNeg(100), "event", _slave)>> - <</if>> - <</replace>> - <</link>> - <</if>> - <br><<link "Publicly flog the criminal">> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The twitching, begging malefactor is stripped and flogged on the promenade before being escorted bleeding, and still twitching from withdrawal, out of the arcology. The public @@.green;approves of this harshness.@@ - <<case "escapee">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The begging malefactor is flogged on the promenade before being escorted bleeding and half-dead out of the arcology. The public @@.green;approves of this harshness.@@ - <<case "orphanloli">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The crying $girl is flogged on the promenade before being dragged bleeding and broken out of the arcology. The public @@.green;approves of this harshness.@@ - <<case "anchorBaby">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The screaming breeder is flogged on the promenade before being dragged bleeding and broken out of the arcology sans $his children; they are destined for the slave orphanage. The public @@.green;approves of this harshness.@@ - <<case "businesswoman">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <<case "mule" "rapist" "whore">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <<case "passfail">> - Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that _realRace scum won't steal their livelihoods. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <<case "liberator">> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <</switch>> - <<run repX(500, "event", _slave)>> - <</replace>> - <</link>> - <<if $malefactor === "liberator">> - <br><<link "Permit the slaveowner $he tried to steal from to flog $him">> - <<replace "#result">> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. $He is stripped and the slaveowner whose property $he tried to free is handed the leathern instrument. It seems the escapee was a favorite he does not wish to mangle, so he flogs the criminal mercilessly instead. $He is flung out of the arcology, nearly dead. The public @@.green;approves of this harshness,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. - <<run repX(500, "event", _slave)>> - <<set $arcologies[0].prosperity += 10>> - <</replace>> - <</link>> - <</if>> - <br><<link "Sell $him immediately">> - <<run cashX(_slaveCost, "slaveTransfer")>> - <<if $cash4Babies === 1 && $malefactor === "anchorBaby">> - <<run cashX(random(20,30), "slaveTransfer")>> - <</if>> - <<replace "#result">> - <<switch $malefactor>> - <<case "addict">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as $he begins begging for a fix. Then it's off to slave markets for sale. - <<case "escapee">> - You complete the legalities and biometric scanning quickly and without fuss. $He remains limp throughout the process, only recovering enough to barely grasp the situation as $he is enslaved and heading to the slave markets. - <<case "orphanloli">> - You complete the legalities and biometric scanning quickly and without fuss. $He sobs throughout the process, though stops once $he realizes being a slave means free food. $He starts crying again once $he realizes $he is heading for the slave markets. - <<case "anchorBaby">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. $His children <<if $cash4Babies === 1>>head off to be sold as well<<else>>will be sent to a slave orphanage for future sale<</if>>. - <<case "businesswoman" "mule" "passfail" "rapist" "whore">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. - <<case "liberator">> - You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, $he could awake at any time. Based on the drone logs, $he is likely to be violent when $he does. You make sure that $he isn't going to get loose as $he is sent off to the slave market; the public would not be pleased if $he went on another rampage. - <</switch>> - <</replace>> - <</link>> -</span> \ No newline at end of file diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw index 7a2dbd4b76776ce9a593547648bec5ee59b4ab04..7420dcd4d6544d32b3b3d0b8fc77d2b474754615 100644 --- a/src/uncategorized/recETS.tw +++ b/src/uncategorized/recETS.tw @@ -2,7 +2,7 @@ <<if Array.isArray($RecETSevent)>> <<set _slave = $eventSlave>> - <<if $cheatMode === 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ <div style="font-weight:bold"> A random two slave recruitment event would have been selected from the following: @@ -12,37 +12,35 @@ <<print "[[$RecETSevent[_i]|RecETS][$RecETSevent = $RecETSevent[" + _i + "]]]">> </div> <</for>> - <<if $debugMode === 1>> - <div> - For debug purposes, the following scenes would not have been selected but can be chosen. - </div> - <<set _allEvents = [ - "addict mother daughter", - "posh mother daughter", - "incest mother son", - "incest father daughter", - "incest brother sister", - "incest sister sister", - "incest brother brother", - "incest twin sister", - "incest twin brother", - "incest twins mixed", - "incest mother daughter", - "incest father son", - "mismatched pair", - "matched pair", - "identical pair", - "identical herm pair", - "desperate broodmother" - ]>> - <<for _i = 0; _i < _allEvents.length; _i++>> - <<if !$RecETSevent.includes(_allEvents[_i])>> - <div> - <<print "[[_allEvents[_i]|RecETS][$RecETSevent = _allEvents[" + _i + "]]]">> - </div> - <</if>> - <</for>> - <</if>> + <div> + For debug purposes, the following scenes would not have been selected but can be chosen. + </div> + <<set _allEvents = [ + "addict mother daughter", + "posh mother daughter", + "incest mother son", + "incest father daughter", + "incest brother sister", + "incest sister sister", + "incest brother brother", + "incest twin sister", + "incest twin brother", + "incest twins mixed", + "incest mother daughter", + "incest father son", + "mismatched pair", + "matched pair", + "identical pair", + "identical herm pair", + "desperate broodmother" + ]>> + <<for _i = 0; _i < _allEvents.length; _i++>> + <<if !$RecETSevent.includes(_allEvents[_i])>> + <div> + <<print "[[_allEvents[_i]|RecETS][$RecETSevent = _allEvents[" + _i + "]]]">> + </div> + <</if>> + <</for>> <p> [[Go Back to Random Nonindividual Event|Random Nonindividual Event][$eventSlave = 0]] @@ -1574,7 +1572,7 @@ </div> <</if>> - <<if $cheatMode === 1>> + <<if $debugMode > 0 && $debugModeEventSelection > 0>> <p> DEBUG: <span class="indent"> diff --git a/src/uncategorized/recruiterSelect.tw b/src/uncategorized/recruiterSelect.tw deleted file mode 100644 index 23c96f0d8cc23063cdd6b7620c8c611222adee15..0000000000000000000000000000000000000000 --- a/src/uncategorized/recruiterSelect.tw +++ /dev/null @@ -1,67 +0,0 @@ -:: Recruiter Select [nobr jump-to-safe jump-from-safe] - -<<set $nextButton = "Back to Main", $nextLink = "Main", $encyclopedia = "Recruiter">> -<<if ($RecruiterID != 0)>> - <<setLocalPronouns _S.Recruiter>> - <span class='slave-name'><<= SlaveFullName(_S.Recruiter)>></span> is - <<if $recruiterTarget != "other arcologies">> - recruiting girls. - <<else>> - acting as a sexual - <<if $arcologies[0].influenceTarget == -1>> - Ambassador. @@.red;Since you have not selected another arcology to influence, $he has no target for Ambassadorial duties. Select an influence target to apply $his talents.@@ - <<else>> - Ambassador to <<for $i = 0; $i < $arcologies.length; $i++>><<if $arcologies[$i].direction == $arcologies[0].influenceTarget>>$arcologies[$i].name<<break>><</if>><</for>>. - <</if>> - <</if>> -<<else>> - You do not have a recruiter working at present. -<</if>> - -<br><br>Your recruiter will <<if $recruiterTarget != "other arcologies">>target ''$recruiterTarget.''<<else>>spread your arcology's culture to neighboring arcologies.<</if>> __Assign a different focus:__ -<br> [[Desperate whores|Recruiter Select][$recruiterTarget = "desperate whores"]] //Likely to be skilled but unhealthy// -<br> [[Young migrants|Recruiter Select][$recruiterTarget = "young migrants"]] //Young and inexperienced but unhealthy// -<br> [[Recent divorcees|Recruiter Select][$recruiterTarget = "recent divorcees"]] //Will be mature// -<<if ($seeDicks != 100) && $seePreg != 0>> - <br> [[Expectant mothers|Recruiter Select][$recruiterTarget = "expectant mothers"]] //Will be pregnant, and likely unhealthy// -<</if>> -<<if ($seeDicks != 0)>> - <br> [[Dissolute sissies|Recruiter Select][$recruiterTarget = "dissolute sissies"]] //Will be born male and have some experience// - <br> [[Reassignment candidates|Recruiter Select][$recruiterTarget = "reassignment candidates"]] //Will be born male// -<</if>> -<<if $arcologies.length > 1>> - <<if $FSAnnounced>> - <br> [[Other arcologies' cultures|Recruiter Select][$oldRecruiterTarget = $recruiterTarget, $recruiterTarget = "other arcologies"]] //Will appoint the Recruiter to be a sexual Ambassador// - <</if>> -<</if>> - -<br><br>Target only individuals that can pass eugenics SMR. -<<if $recruiterEugenics < 1>>[[Target|Recruiter Select][$recruiterEugenics = 1]] - <<else>>[[Stop targeting|Recruiter Select][$recruiterEugenics = 0]] -<</if>> -<br> //This option will increase time it takes to recruit depending on how many eugenics SMR are active.// - -/* sum for "facilities & leadership" */ -<<set _idleTarget = (2 + $brothel + $club + $arcade + $dairy + $servantsQuarters + $masterSuite)>> -<<if $HGSuite>><<set _idleTarget++>><</if>> -<<if $dojo>><<set _idleTarget++>><</if>> -<<if $brothel>><<set _idleTarget++>><</if>> -<<if $club>><<set _idleTarget++>><</if>> -<<if $dairy && ($dairyRestraintsSetting < 2)>><<set _idleTarget++>><</if>> -<<if $farmyard>><<set _idleTarget++>><</if>> -<<if $servantsQuarters>><<set _idleTarget++>><</if>> -<<if $masterSuite>><<set _idleTarget++>><</if>> -<<if $schoolroom>><<set _idleTarget++>><</if>> -<<if $spa>><<set _idleTarget++>><</if>> -<<if $nursery>><<set _idleTarget++>><</if>> -<<if $clinic>><<set _idleTarget++>><</if>> -<<if $cellblock>><<set _idleTarget++>><</if>> - -<br><br>Suspend active recruiting and focus on publicity when: <span id="idleRule"><<switch $recruiterIdleRule>><<case "number">>''$recruiterIdleNumber sex slaves owned''<<case "facility">>''match facility expansion'', currently <<if _idleTarget >= 20>>_idleTarget positions<<else>>20 positions (rule minimum)<</if>><<default>>''always recruit''<</switch>></span> -<br> <<link "Always recruit">><<set $recruiterIdleRule = "always">><<replace "#idleRule">>''always recruit''<</replace>><</link>> | <<link "Facilities & leadership">><<set $recruiterIdleRule = "facility">><<replace "#idleRule">>''match facility expansion'', currently <<if _idleTarget >=20>>_idleTarget positions<<else>>20 positions (rule minimum)<</if>><</replace>><</link>> | <<link "Set to this many slaves:">><<set $recruiterIdleRule = "number", $recruiterIdleNumber = Math.max(Math.trunc(Number($seed) || 20), 20)>><<replace "#idleRule">>''$recruiterIdleNumber sex slaves owned''<</replace>><<replace "#numberBox">><<textbox "$seed" $recruiterIdleNumber>><</replace>><</link>> <span id="numberBox"><<textbox "$seed" $recruiterIdleNumber>></span> /* use of $seed in conjunction with link prevents NaN error */ -<br> //"Facilities" doesn't include training slots in cellblock, schoolroom, spa, clinic (but does include those leaders)// - -<br><br>''Appoint a recruiter from among your devoted slaves:'' -<br>[[None|Main][removeJob(_S.Recruiter, "recruit girls")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.penthouse, "Main")>> diff --git a/src/uncategorized/schoolteacherSelect.tw b/src/uncategorized/schoolteacherSelect.tw deleted file mode 100644 index 7572a3d974d9a863dcab5b573fc2886f6a5cb300..0000000000000000000000000000000000000000 --- a/src/uncategorized/schoolteacherSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Schoolteacher Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Schoolroom", $encyclopedia = "Schoolteacher">> -<<if _S.Schoolteacher>> - <<setLocalPronouns _S.Schoolteacher>> - <span class='slave-name'><<= SlaveFullName(_S.Schoolteacher)>></span> is serving as your Schoolteacher.<br><br>$He will help teach your slaves. -<<else>> - You have not selected a Schoolteacher. -<</if>> - -<br><br>''Appoint a Schoolteacher from your devoted slaves:'' -<br><br>[[None|Schoolroom][removeJob(_S.Schoolteacher, "be the Schoolteacher")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.schoolroom, "Schoolroom")>> diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw deleted file mode 100644 index 0966d569f6c61e77e23d8db629b3902b2a295697..0000000000000000000000000000000000000000 --- a/src/uncategorized/spa.tw +++ /dev/null @@ -1,161 +0,0 @@ -:: Spa [nobr jump-to-safe jump-from-safe] - -<<set _DL = App.Entity.facilities.spa.employeesIDs().size, $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Spa", $encyclopedia = "Spa">> - -<<set _spaNameCaps = capFirstChar($spaName)>> -<p class="scene-intro"> - _spaNameCaps - <<switch $spaDecoration>> - <<case "Roman Revivalist">> - is built as a Roman bath. The flooring is pleasantly warm due to a modernized version of hypocaust heating, and is covered in mosaic depicting slaves enjoying sex. - <<case "Neo-Imperialist">> - is built as a modern Imperial garden. Bright green plants mix with the pulsating lights of high technology, and clear, sleek windows fog up with the steam of a central bath heated by the latest hydraulic technology. - <<case "Aztec Revivalist">> - is built as an Aztec bathhouse. Water steams from the middle of the room and the air is heavy with the scent of herbs and essences. The idols by the door glisten with moisture. - <<case "Egyptian Revivalist">> - is decorated like an Egyptian water garden. All but the hottest pools include aquatic plants around their edges, and the atmosphere is heavy with perfume. - <<case "Edo Revivalist">> - is decorated like a traditional onsen. The stone-lined pools are surrounded by meticulously kept gardens, and there are proper provisions for bathing in the old Japanese style. - <<case "Arabian Revivalist">> - looks like a dream of an Arabian palace garden. Every surface is richly tiled in vibrant colors, and the beguiling scents of perfumes from the Levant hang in the air. - <<case "Chinese Revivalist">> - is gloomy and hot, filled with an oppressive steam that immediately dulls the senses. Though relaxation is possible and indeed easy here, it is a stultifying relaxation whose humid warmth seems to suppress independence. - <<case "Chattel Religionist">> - is dedicated to the purification of the body and the spirit. The pools are arranged for the completion of self-purification procedures which include ritual masturbation. - <<case "Degradationist">> - is utilitarian. There are waterproof cameras positioned throughout the spa so that anyone who wants to can watch the nude slaves. One wall has a screen showing the current viewer count to keep the slaves aware of this. - <<case "Asset Expansionist">> - is utilitarian. It is equipped with all sorts of devices to help slaves care for huge assets, including lifts to help them in and out of the water, and all around showers to help clean and moisturize difficult to reach spots. - <<case "Transformation Fetishist">> - is utilitarian. It is equipped with special devices to help speed surgical recovery, including a series of baths designed to prevent scarring. - <<case "Repopulationist">> - is comfortable, with waterproof cushions lining the pools. It is equipped with all sorts of devices to aid pregnant slaves, including lifts to help them in and out of the water, baths just for their feet, and all around showers to help clean and moisturize difficult to reach spots. - <<case "Eugenics">> - is comfortable, albeit split in half. One side for the lower classes' slaves, and the other for the Elite and their pets. - <<case "Gender Radicalist">> - is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing slave girls with all different varieties of genitalia orgasming from penetration, to keep the idea at the forefront of the slaves' minds. - <<case "Gender Fundamentalist">> - is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring a lot of beautiful women and handsome men for the slaves' edification. - <<case "Physical Idealist">> - is not the gym, but it does have some workout equipment, mostly low-impact machines designed to speed recovery. There are special hot baths to ease sore muscles. - <<case "Supremacist">> - is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring $arcologies[0].FSSupremacistRace main characters. - <<case "Subjugationist">> - is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment featuring $arcologies[0].FSSubjugationistRace characters in comic relief roles. - <<case "Paternalist">> - is comfortable, with waterproof cushions lining the pools. There are screens on the walls showing light entertainment written by and intended for smart, loyal slaves. - <<case "Pastoralist">> - is utilitarian. It is equipped with all sorts of devices to help slaves care for huge assets, including lifts to help them in and out of the water, and all around showers to help clean and moisturize difficult to reach spots. - <<case "Maturity Preferentialist">> - is comfortable, but surprisingly businesslike. It's all about beautification here; there's a bewildering array of mud baths, resting pools, and massage setups, all designed to keep mature slaves looking their very best. - <<case "Youth Preferentialist">> - is comfortable and fun. There are hot tubs and massage tables for slaves who feel like relaxing, but there's also a colder pool with pool toys for slaves who want to play. It even has a small waterslide. - <<case "Body Purist">> - is comfortable, with waterproof cushions lining the pools. Everything is designed for the slaves' comfort; there are even special mud baths to perfect skin clarity. - <<case "Slimness Enthusiast">> - is comfortable, with waterproof cushions lining the pools. Everything is designed for the slaves' comfort; there are even special mud baths to perfect skin clarity. - <<case "Hedonistic">> - is comfortable, with waterproof cushions lining the pools. It is equipped with all sorts of devices to aid hefty slaves, including lifts to help them in and out of the water, specialized moisturizers to keep their skin healthy and smooth, and all around showers to help clean difficult to reach spots and between folds. <<if $arcologies[0].FSHedonisticDecadenceResearch == 1>>Platters of food and treats are readily available around the tubs so that relaxing slaves never have to strain to grab a bite to eat<<else>>Feeders connected to the slave food reserves line the pools so that so that relaxing slaves never have to strain to suck down their fill of food<</if>>. - <<case "Intellectual Dependency">> - is comfortable, fun and, most importantly, safe; even the dumbest slave can enjoy the pools without worrying their <<= properTitle()>>. There are screens on the walls showing simple entertainment designed to arouse more than titillate. - <<case "Slave Professionalism">> - is comfortable, with waterproof cushions lining the pools. It is a place where a weary slave can rest their mind after a hards day's work. There are screens on the walls showing documentaries intended for smart, skilled slaves. - <<case "Petite Admiration">> - is comfortable, but designed with short slaves in mind. The pools are shallow and easy to slip in and out of; taller slaves are likely to find them more frustrating than enjoyable. - <<case "Statuesque Glorification">> - is comfortable, but designed with tall slaves in mind. The pools are deep; too deep for a short slave to find relaxing. - <<default>> - is well-appointed, with massage tables, hot tubs, and a cold pool. - <</switch>> - - <<set _spaUtilization = 1 - ($spaSpots / ($spa * 20))>> - <<if _spaUtilization >= 1>> - It's crowded in here. Slaves are relaxing in the warm water, splashing around or just floating. Here and there some of the more sex-starved are in the early stages of intercourse, but most prefer to take time off from it all. Unfortunately there is not enough space for all of your slaves to enjoy the spa. - <<elseif _spaUtilization >= 0.5>> - It's busy in here. Slaves are relaxing in the warm water, splashing around or just floating. Here and there some of the more sex-starved are in the early stages of intercourse, but most prefer to take time off from it all. - <<elseif _spaUtilization > 0>> - It's sparsely populated; though the few slaves here have little company they like having the water to themselves. - <<elseif _DL / $spa > 0.5>> - It's busy in here. Slaves are relaxing in the warm water, splashing around or just floating. Here and there some of the more sex-starved are in the early stages of intercourse, but most prefer to take time off from it all. - <<elseif _DL > 0>> - It's sparsely populated; though the few slaves here have little company they like having the water to themselves. - <<elseif _S.Attendant>> - <<setLocalPronouns _S.Attendant>> - _S.Attendant.slaveName is alone here, and has nothing to do but keep the place (and $his own soft, wet body) spotlessly clean. - <<else>> - It's empty and quiet. - <</if>> - <<if _DL == 0 && !_S.Attendant>> - <div class="choices" style="font-style:normal"> - [[Decommission the Spa|Main][$spa = 0, $spaDecoration = "standard", $spaUpgrade = 0, $spaFix = 0]] - </div> - <</if>> -</p> - -<div> - <<set _Tmult0 = Math.trunc($spa*1000*$upgradeMultiplierArcology)>> - _spaNameCaps can house $spa slaves while they recuperate here. There <<if _DL == 1>>is<<else>>are<</if>> currently _DL slave<<if _DL != 1>>s<</if>> recuperating in $spaName. - <div class="choices"> - [[Expand the spa|Spa][cashX(forceNeg(_Tmult0), "capEx"), $spa += 5]] - <span class="note"> - Costs <<print cashFormat(_Tmult0)>> - </span> - </div> - <div class="choices"> - <<if _DL > 0>> - <<includeDOM removeFacilityWorkers("spa", "rest", "rest")>> - <</if>> - </div> -</div> - -<div> - <<if $spaUpgrade == 1>> - _spaNameCaps has been upgraded with state of the art temperature treatment options, from hot and cold mineral water pools to baking saunas and dense steam rooms. - <<else>> - <<set _Tmult1 = Math.trunc($spa*1000*$upgradeMultiplierArcology)>> - _spaNameCaps is a standard spa. - <div class="choices"> - [[Upgrade the spa with saunas, steam rooms, and mineral water baths|Spa][cashX(forceNeg(_Tmult1), "capEx"), $spaUpgrade = 1]] - <span class="note"> - Costs <<print cashFormat(_Tmult1)>> - </span> - </div> - <</if>> -</div> -<div> - <<if _S.Attendant>> - <<setLocalPronouns _S.Attendant>> - <<if $spaFix == 2>> - _S.Attendant.slaveName is focusing only on the health and wellness of the slaves under $his care, obeying your orders to avoid attempting to right mental flaws. - <div class="choices"> - [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] | - [["Let " + $him + " tend as " + $he + " sees fit"|Spa][$spaFix = 0]] - </div> - <<elseif $spaFix == 1>> - _S.Attendant.slaveName is focusing on the health and wellness of the slaves under $his care, as well as trying to bring mindbroken slaves back, while ignoring any mental hang-ups a slave may have. - <div class="choices"> - [["Order " + $him + " to not fix flaws"|Spa][$spaFix = 2]] | - [["Let " + $him + " tend as " + $he + " sees fit"|Spa][$spaFix = 0]] - </div> - <<else>> - _S.Attendant.slaveName is not following any special orders and is tending to your slaves as $he sees fit. - <div class="choices"> - [["Order " + $him + " to not fix any flaws"|Spa][$spaFix = 2]] | - [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] - </div> - <</if>> - <</if>> -</div> - -<p> - <<includeDOM App.UI.SlaveList.stdFacilityPage(App.Entity.facilities.spa, true)>> -</p> - -<p> - Rename $spaName: <<textbox "$spaName" $spaName "Spa">> - <span class="note"> - Use a noun or similar short phrase - </span> -</p> - -<<run App.UI.SlaveList.ScrollPosition.restore()>> diff --git a/src/uncategorized/stewardessSelect.tw b/src/uncategorized/stewardessSelect.tw deleted file mode 100644 index a9dc36cfaa208ee59e6792dc62cb935d5337c05b..0000000000000000000000000000000000000000 --- a/src/uncategorized/stewardessSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Stewardess Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Servants' Quarters", $encyclopedia = "Stewardess">> -<<if (_S.Stewardess)>> - <<setLocalPronouns _S.Stewardess>> - <span class='slave-name'><<= SlaveFullName(_S.Stewardess)>></span> is serving as your Stewardess.<br><br>$He will manage the Servants' Quarters. -<<else>> - You have not selected a Stewardess. -<</if>> - -<br><br>''Appoint a Stewardess from your devoted slaves:'' -<br><br>[[None|Servants' Quarters][removeJob(_S.Stewardess, Job.STEWARD)]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.servantsQuarters, "Servants' Quarters")>> diff --git a/src/uncategorized/wardenessSelect.tw b/src/uncategorized/wardenessSelect.tw deleted file mode 100644 index 6ae7bf5aed1652a53263bca874574444d24f3719..0000000000000000000000000000000000000000 --- a/src/uncategorized/wardenessSelect.tw +++ /dev/null @@ -1,14 +0,0 @@ -:: Wardeness Select [nobr jump-to-safe jump-hidden jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Cellblock", $encyclopedia = "Wardeness">> -<<if (_S.Wardeness)>> - <<setLocalPronouns _S.Wardeness>> - <span class='slave-name'><<= SlaveFullName(_S.Wardeness)>></span> is serving as your Wardeness.<br><br>$He will help break your prisoners. -<<else>> - You have not selected a Wardeness. -<</if>> - -<br><br>''Appoint a Wardeness from your devoted slaves:'' -<br><br>[[None|Cellblock][removeJob(_S.Wardeness, "be the Wardeness")]] -<br><br> -<<includeDOM App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.cellblock, "Cellblock")>>