diff --git a/devTools/FC.ts b/devTools/FC.ts index bc57a198c381445359368d34525d4c41a1bab91a..a3125ee3a5ec7815ea39d6a05b111eb68da4d2dc 100644 --- a/devTools/FC.ts +++ b/devTools/FC.ts @@ -16,32 +16,6 @@ namespace App { } } - namespace SlaveSummary{ - class SmartPiercing{ - setting: { - off: string, - submissive: string, - lesbian: string, - oral: string, - humiliation: string, - anal: string, - boobs: string, - sadist: string, - masochist: string, - dom: string, - pregnancy: string, - vanilla: string, - all: string, - none: string, - monitoring: string, - men: string, - women: string, - "anti-men": string, - "anti-women": string, - } - } - } - class JobDesc { position: string; assignment: string; @@ -263,7 +237,7 @@ namespace App { labelTagsClear: boolean; } - declare interface Rule { + interface Rule { ID: string; name: string; condition: RuleConditions; @@ -568,7 +542,33 @@ declare namespace FC { type DefaultGameStateVariables = typeof App.Data.defaultGameStateVariables; type ResetOnNGPVariables = typeof App.Data.resetOnNGPlus; - interface GameVariables extends DefaultGameStateVariables, ResetOnNGPVariables {} + interface GameVariables extends DefaultGameStateVariables, ResetOnNGPVariables { } + + namespace SlaveSummary{ + interface SmartPiercing{ + setting: { + off: string, + submissive: string, + lesbian: string, + oral: string, + humiliation: string, + anal: string, + boobs: string, + sadist: string, + masochist: string, + dom: string, + pregnancy: string, + vanilla: string, + all: string, + none: string, + monitoring: string, + men: string, + women: string, + "anti-men": string, + "anti-women": string, + } + } + } } declare const V: FC.GameVariables; diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index 46bb53da708ee564eae510c2bd536f490a3eed0d..0270b02f7eaeeab9640de1504f751fc5ad502d2e 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -183,6 +183,10 @@ App.Data.defaultGameStateVariables = { curativeSideEffects: 1, disableTiredness: 1, disableLongDamage: 1, + // Last-used strings in Locate Slave + findName: "", + findBackground: "", + findData: "", // eslint-disable-next-line camelcase pedo_mode: 0, @@ -666,6 +670,7 @@ App.Data.resetOnNGPlus = { activeChild: 0, reminders: [], + /** @type {FC.SlaveStateOrZero} */ boomerangSlave: 0, boomerangWeeks: 0, boomerangBuyer: 0, @@ -1104,8 +1109,7 @@ App.Data.resetOnNGPlus = { milkmaidImpregnates: 0, /** @type {FC.SlaveStateOrZero} */ Farmer: 0, - /** @type {FC.SlaveStateOrZero} */ - Stewardess: 0, + StewardessID: 0, stewardessImpregnates: 0, /** @type {FC.SlaveStateOrZero} */ Schoolteacher: 0, diff --git a/js/003-data/slaveSummaryData.js b/js/003-data/slaveSummaryData.js index 4843e5912437aec08e691ac7f26cc57b628474da..bf9d36e0afec4e8e3dc221ec7640467aba60e904 100644 --- a/js/003-data/slaveSummaryData.js +++ b/js/003-data/slaveSummaryData.js @@ -240,7 +240,7 @@ App.Data.SlaveSummary = { "hates men": "Hates men.", "hates women": "Hates women.", "gluttonous": "Stress eater.", - "anorexic": "Anorexic", + "anorexic": "Anorexic.", "devout": "Devoutly religious.", "liberated": "Mentally liberated.", } @@ -570,7 +570,7 @@ App.Data.SlaveSummary = { setting: { "off": "SP off.", "submissive": "SP: submissive.", - "lesbian": "SP: lesbian", + "lesbian": "SP: lesbian.", "oral": "SP: oral.", "humiliation": "SP: humiliation.", "anal": "SP: anal.", @@ -582,11 +582,11 @@ App.Data.SlaveSummary = { "vanilla": "SP: vanilla.", "all": "SP: all.", "none": "SP: none.", - "monitoring": "SP: monitoring", - "men": "SP: men", - "women": "SP: women", - "anti-men": "SP: anti men", - "anti-women": "SP: anti women", + "monitoring": "SP: monitoring.", + "men": "SP: men.", + "women": "SP: women.", + "anti-men": "SP: anti men.", + "anti-women": "SP: anti women.", } }, skills: { diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index 9badb48800271187d79b877d43287470b7051937..bd057a26dea01fdd353ae6ce52e103a1473f1dde 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -1,7 +1,7 @@ App.Version = { base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. - pmod: "3.5.1", - release: 1071, + pmod: "3.5.2", + release: 1072, }; /* Use release as save version */ diff --git a/src/004-base/specialSlavesProxy.js b/src/004-base/specialSlavesProxy.js index 36ca1085ab44f8531695f28c0e3f66b3edb69cad..07e27ee0402c44331dcb78e62ec9f5e5a8860bf1 100644 --- a/src/004-base/specialSlavesProxy.js +++ b/src/004-base/specialSlavesProxy.js @@ -42,7 +42,7 @@ App.SpecialSlavesProxy = class SpecialSlavesProxy { return V.Schoolteacher; } get Stewardess() { - return V.Stewardess; + return slaveStateById(V.StewardessID); } get Stud() { return slaveStateById(V.StudID); diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index 3ce6a3b7a02f1d9526fbceebd16bd4b27046b1f8..15c76b0794daf4304884b379088104cfe2310eef 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -2152,7 +2152,7 @@ globalThis.FacilityDatatypeCleanup = (function() { V.servantsQuarters = Math.max(+V.servantsQuarters, 0) || 0; V.servantsQuartersUpgradeMonitoring = Math.clamp(+V.servantsQuartersUpgradeMonitoring, 0, 1) || 0; /* stewardess */ - V.Stewardess = V.slaves.find(s => s.assignment === Job.STEWARD) || 0; + V.StewardessID = findSlaveId(s => s.assignment === Job.STEWARD); V.stewardessImpregnates = Math.clamp(+V.stewardessImpregnates, 0, 1) || 0; } diff --git a/src/descriptions/familySummaries.js b/src/descriptions/familySummaries.js index 66defe224a4621f7e422beb5bfece1521bc29bf4..5db6e4def0c6fbc5cd77dd2e2f9e8758cd4d9c45 100644 --- a/src/descriptions/familySummaries.js +++ b/src/descriptions/familySummaries.js @@ -93,22 +93,32 @@ App.Desc.family = (function() { r.push(`${He} was <span class="lightgreen">born from ${knownSlave(slave.mother)}'s</span> fertile womb.`); } - let children = V.slaves.filter((s) => slave.ID === s.father); + let children = V.slaves.filter((s) => slave.ID === s.father && slave.ID === s.mother); + const isSoleParent = children.length > 0; if (children.length > 2) { - r.push(`${He} <span class="lightgreen">fathered ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">is the sole parent of ${slaveListToText(children)}.</span>`); } else if (children.length > 1) { - r.push(`${He} <span class="lightgreen">fathered a pair of your slaves: ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">is the sole parent of a pair of your slaves: ${slaveListToText(children)}.</span>`); } else if (children.length > 0) { - r.push(`${He} <span class="lightgreen">fathered a single slave of yours: ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">is the sole parent of a single slave of yours: ${slaveListToText(children)}.</span>`); } - children = V.slaves.filter((s) => slave.ID === s.mother); + children = V.slaves.filter((s) => slave.ID === s.father && slave.ID !== s.mother); if (children.length > 2) { - r.push(`${He} <span class="lightgreen">gave birth to ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">fathered ${slaveListToText(children)}${isSoleParent ? " with other mothers" : ""}.</span>`); } else if (children.length > 1) { - r.push(`${He} <span class="lightgreen">gave birth to a pair of your slaves: ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">fathered a pair of your slaves${isSoleParent ? " with other mothers" : ""}: ${slaveListToText(children)}.</span>`); } else if (children.length > 0) { - r.push(`${He} <span class="lightgreen">gave birth to a single slave of yours: ${slaveListToText(children)}.</span>`); + r.push(`${He} <span class="lightgreen">fathered a single slave of yours${isSoleParent ? " with another mother" : ""}: ${slaveListToText(children)}.</span>`); + } + + children = V.slaves.filter((s) => slave.ID === s.mother && slave.ID !== s.father); + if (children.length > 2) { + r.push(`${He} <span class="lightgreen">gave birth to ${slaveListToText(children)}${isSoleParent ? " with other fathers" : ""}.</span>`); + } else if (children.length > 1) { + r.push(`${He} <span class="lightgreen">gave birth to a pair of your slaves${isSoleParent ? " with other fathers" : ""}: ${slaveListToText(children)}.</span>`); + } else if (children.length > 0) { + r.push(`${He} <span class="lightgreen">gave birth to a single slave of yours${isSoleParent ? " with another father" : ""}: ${slaveListToText(children)}.</span>`); } function getParentIndices(slaveID) { @@ -634,16 +644,23 @@ App.Desc.family = (function() { } } + /* Player is sole parent */ + let children = V.slaves.filter((s) => s.father === V.PC.ID && s.mother === V.PC.ID); + if (children.length > 0) { + r.push(`<br>You are the sole parent of ${num(children.length)} of your slaves, <span class="lightgreen">${slaveListToText(children)}.</span>`); + } + const isSoleParent = children.length > 0; + /* Player is Father, lists children you fathered */ - let children = V.slaves.filter((s) => s.father === V.PC.ID); + children = V.slaves.filter((s) => s.father === V.PC.ID && s.mother !== V.PC.ID); if (children.length > 0) { - r.push(`<br>You fathered ${num(children.length)} of your slaves, <span class="lightgreen">${slaveListToText(children)}.</span>`); + r.push(`<br>You fathered ${num(children.length)} of your slaves${isSoleParent ? " with other mothers" : ''}, <span class="lightgreen">${slaveListToText(children)}.</span>`); } /* Player is Mother, lists birthed children */ - children = V.slaves.filter((s) => s.mother === V.PC.ID); + children = V.slaves.filter((s) => s.mother === V.PC.ID && s.father !== V.PC.ID); if (children.length > 0) { - r.push(`<br>You gave birth to ${num(children.length)} of your slaves, <span class="lightgreen">${slaveListToText(children)}.</span>`); + r.push(`<br>You gave birth to ${num(children.length)} of your slaves${isSoleParent ? " who had other fathers" : ''}, <span class="lightgreen">${slaveListToText(children)}.</span>`); } /* Player is grandparent */ diff --git a/src/endWeek/endWeek.js b/src/endWeek/endWeek.js index 56c114d32c7a9b31ee58340a8e80ee51c594f96d..6fdeb9f60703361abab5a025d25e6d58a45bf11e 100644 --- a/src/endWeek/endWeek.js +++ b/src/endWeek/endWeek.js @@ -297,7 +297,6 @@ globalThis.endWeek = (function() { V.DJRepBonus = 0; V.Milkmaid = 0; V.Farmer = 0; - V.Stewardess = 0; V.Schoolteacher = 0; V.Wardeness = 0; V.Concubine = 0; diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js index 7f9538f7eeacd85899eec3b3a47ef55590491d14..7aee822d5cbb6a214552ac6679502021d56198fd 100644 --- a/src/endWeek/saServant.js +++ b/src/endWeek/saServant.js @@ -8,15 +8,18 @@ App.SlaveAssignment.servant = (function() { let cash; let oralUse; + let stewardessBonus; return saServant; /** * @param {App.Entity.SlaveState} slave + * @param {number} [bonus=0] - bonus from facility leader effects * @returns {string} */ - function saServant(slave) { + function saServant(slave, bonus=0) { r = []; + stewardessBonus = bonus; ({ // eslint-disable-next-line no-unused-vars @@ -59,8 +62,8 @@ App.SlaveAssignment.servant = (function() { r.push(`Since there's extra space in the servants' quarters, ${V.assistant.name} attaches ${him} to the cadre of maids there.`); V.servantsQuartersSpots--; } - if (V.Stewardess !== 0) { - r.push(`This brings ${him} under ${V.Stewardess.slaveName}'s supervision. The Stewardess`); + if (S.Stewardess) { + r.push(`This brings ${him} under ${S.Stewardess.slaveName}'s supervision. The Stewardess`); if (slave.devotion < -20) { r.push(`subjects ${him} to <span class="trust dec">corrective rape</span> when ${his} service is imperfect, <span class="devotion inc">when ${he} steps out of line,</span> or when the Stewardess just feels like raping ${him}, forcing the poor slave to <span class="yellowgreen">find refuge in work.</span>`); slave.devotion += 2; @@ -74,13 +77,13 @@ App.SlaveAssignment.servant = (function() { } // Portion that calculates upkeep reduction, we call it income if (!(canHear(slave))) { - r.push(`However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`); - cash = V.stewardessBonus / 4 * healthPenalty(slave); + r.push(`However, ${his} inability to hear often leaves ${him} oblivious to ${S.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`); + cash = stewardessBonus / 4 * healthPenalty(slave); } else if ((slave.hears === -1 && slave.earwear !== "hearing aids") || (slave.hears === 0 && slave.earwear === "muffling ear plugs")) { - r.push(`However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`); - cash = V.stewardessBonus / 2 * healthPenalty(slave); + r.push(`However, ${he} often doesn't catch what ${S.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`); + cash = stewardessBonus / 2 * healthPenalty(slave); } else { - cash = V.stewardessBonus * healthPenalty(slave); + cash = stewardessBonus * healthPenalty(slave); } if (slave.assignment === window.Job.HOUSE) { cashX(cash, "slaveAssignmentHouse", slave); @@ -222,8 +225,8 @@ App.SlaveAssignment.servant = (function() { r.push(`${He} is assigned easy tasks <span class="green">so ${he} may rest</span> while still being productive.`); } else if (slave.health.tired + 11 >= 90 && !willWorkToDeath(slave)) { r.push(`${He} attempts to refuse to work due to ${his} exhaustion, but can do little to avoid it or the resulting`); - if (V.Stewardess !== 0) { - r.push(`<span class="trust dec">severe punishment</span> by ${V.Stewardess.slaveName}. ${His} slacking is kept in check by your watchful Stewardess keeping ${him} on task, but by the end of ${his} shift, <span class="devotion dec">${his} thoughts are made clear in the poor job ${he} did.</span>`); + if (S.Stewardess) { + r.push(`<span class="trust dec">severe punishment</span> by ${S.Stewardess.slaveName}. ${His} slacking is kept in check by your watchful Stewardess keeping ${him} on task, but by the end of ${his} shift, <span class="devotion dec">${his} thoughts are made clear in the poor job ${he} did.</span>`); } else { r.push(`<span class="trust dec">severe punishment.</span> ${He} <span class="devotion dec">accomplishes little,</span> having chosen ${his} overall well-being over the consequences.`); } @@ -243,8 +246,8 @@ App.SlaveAssignment.servant = (function() { r.push(`${He} is assigned easy tasks <span class="green">so ${he} may rest</span> while still being productive.`); } else if (slave.health.tired + 11 >= 90 && !willWorkToDeath(slave)) { r.push(`${He} attempts to refuse to work due to ${his} exhaustion, but can do little to avoid it or the resulting`); - if (V.servantsQuarters > 0 && V.universalRulesFacilityWork === 1 && V.servantsQuartersSpots > 0 && V.Stewardess !== 0) { - r.push(`<span class="trust dec">severe punishment</span> by ${V.Stewardess.slaveName}. ${His} slacking is kept in check by your watchful Stewardess keeping ${him} on task, but by the end of ${his} shift, <span class="devotion dec">${his} thoughts are made clear in the poor job ${he} did.</span>`); + if (V.servantsQuarters > 0 && V.universalRulesFacilityWork === 1 && V.servantsQuartersSpots > 0 && S.Stewardess) { + r.push(`<span class="trust dec">severe punishment</span> by ${S.Stewardess.slaveName}. ${His} slacking is kept in check by your watchful Stewardess keeping ${him} on task, but by the end of ${his} shift, <span class="devotion dec">${his} thoughts are made clear in the poor job ${he} did.</span>`); } else { r.push(`<span class="trust dec">severe punishment.</span> ${He} <span class="devotion dec">accomplishes little,</span> having chosen ${his} overall well-being over the consequences.`); } diff --git a/src/endWeek/servantsQuartersReport.js b/src/endWeek/servantsQuartersReport.js new file mode 100644 index 0000000000000000000000000000000000000000..8d4355f1dbfde62ac8773b3b073299a7cb5cc68b --- /dev/null +++ b/src/endWeek/servantsQuartersReport.js @@ -0,0 +1,353 @@ +App.EndWeek.servantsQuartersReport = function() { + let frag = document.createDocumentFragment(); + + const slaves = App.Utils.sortedEmployees(App.Entity.facilities.servantsQuarters); + const devBonus = (V.servantsQuartersDecoration !== "standard") ? 1 : 0; + let stewardessBonus = 0; + + function stewardessText() { + let r = []; + let FLsFetish = 0; + let stewardessImpregnated = 0; + + if (S.Stewardess) { + S.Stewardess.devotion += devBonus; + if (S.Stewardess.health.condition < -80) { + improveCondition(S.Stewardess, 20); + } else if ((S.Stewardess.health.condition < -40)) { + improveCondition(S.Stewardess, 15); + } else if ((S.Stewardess.health.condition < 0)) { + improveCondition(S.Stewardess, 10); + } else if ((S.Stewardess.health.condition < 90)) { + improveCondition(S.Stewardess, 7); + } + if (S.Stewardess.devotion <= 60) { + S.Stewardess.devotion++; + } + if (S.Stewardess.trust < 60) { + S.Stewardess.trust++; + } + if (S.Stewardess.fetishStrength <= 95) { + if (S.Stewardess.fetish !== "dom") { + if (fetishChangeChance(S.Stewardess) > jsRandom(0, 100)) { + FLsFetish = 1; + S.Stewardess.fetishKnown = 1; + S.Stewardess.fetish = "dom"; + } + } else if (S.Stewardess.fetishKnown === 0) { + FLsFetish = 1; + S.Stewardess.fetishKnown = 1; + } else { + FLsFetish = 2; + S.Stewardess.fetishStrength += 4; + } + } + if (S.Stewardess.rules.living !== "luxurious") { + S.Stewardess.rules.living = "luxurious"; + } + + const {He, he, His, his, him, wife} = getPronouns(S.Stewardess); + r.push(`${SlaveFullName(S.Stewardess)} is serving as your Stewardess.`); + if (S.Stewardess.relationship === -3 && S.Stewardess.devotion > 50) { + r.push(`${He} does ${his} best to be your perfect lovely house${wife}.`); + } + if (V.stewardessImpregnates === 1 && canPenetrate(S.Stewardess) && S.Stewardess.pubertyXY === 1) { + for (const slave of slaves) { + if (canImpreg(slave, S.Stewardess)) { // FIXME: assumes vaginal pregnancy without check + seX(S.Stewardess, "penetrative", slave, "vaginal", 10); + r.push(knockMeUp(slave, 100, 2, S.Stewardess.ID)); + if (slave.vagina === 0) { + slave.vagina = 1; // FIXME: silent virginity loss? + } + stewardessImpregnated++; + slave.need = 0; + } + } + if (stewardessImpregnated > 0) { + r.push(`It's ${his} responsibility to keep ${his} charges pregnant, so`); + if (stewardessImpregnated === 1) { + r.push(`${he} cums in the only fertile slave's pussy all week.`); + } else { + r.push(`${he} ensures the ${stewardessImpregnated} fertile servants are full of ${his} cum at all times.`); + } + if (S.Stewardess.career === "a breeding bull") { + r.push(`${He} was conditioned to fill empty wombs, so ${he} takes a <span class="hotpink">deep pleasure</span> in ${his} job.`); + S.Stewardess.devotion++; + } + S.Stewardess.need = 0; + } + } + if (FLsFetish === 1) { + r.push(`${He}'s allowed and even expected to use ${his} charges for ${his} own gratification, and sometimes they'll even instigate submissive sex with ${him} just to ingratiate themselves. ${He} becomes comfortable with the role of a <span class="lightcoral">sexual dominant.</span>`); + } else if (FLsFetish === 2) { + r.push(`Having a legion of servants jumping to obey ${his} daily commands <span class="lightsalmon">makes ${him} more dominant.</span>`); + } + if (S.Stewardess.health.condition < 10) { + r.push(`Though ${he} tries to watch the servants, ${his} lack of good health inhibits ${him}.`); + } else if (S.Stewardess.health.condition < 80) { + stewardessBonus += 50; + r.push(`${His} good health allows ${him} to work long hours and <span class="yellowgreen">drive</span> the servants hard.`); + } else { + stewardessBonus += 75; + r.push(`${His} perfect health allows ${him} to work exhaustive hours and <span class="yellowgreen">drive</span> the servants very hard.`); + } + if (setup.stewardessCareers.includes(S.Stewardess.career)) { + stewardessBonus += 25; + r.push(`${He} has applicable experience with daily sums and organizational trifles from ${his} life before ${he} was a slave.`); + } else if (S.Stewardess.skill.stewardess >= V.masteredXP) { + stewardessBonus += 25; + r.push(`${He} has applicable experience with daily sums and organizational trifles from working for you.`); + } else { + S.Stewardess.skill.stewardess += jsRandom(1, Math.ceil((S.Stewardess.intelligence + S.Stewardess.intelligenceImplant) / 15) + 8); + } + if (S.Stewardess.actualAge > 35) { + stewardessBonus += 25; + r.push(`${His} age and experience give ${him} added effectiveness.`); + } else if (V.AgePenalty === 0) { + stewardessBonus +=25; + } + if (S.Stewardess.intelligence + S.Stewardess.intelligenceImplant > 15) { + stewardessBonus += S.Stewardess.intelligence + S.Stewardess.intelligenceImplant; + r.push(`${He}'s smart enough that ${he} misses very little.`); + } + const bonusToggle = S.Stewardess.energy > 95 || (S.Stewardess.fetishKnown === 1 && S.Stewardess.fetish === "dom"); + for (const slave of slaves) { + const {he2, him2, his2} = getPronouns(slave).appendSuffix('2'); + if (S.Stewardess.rivalryTarget === slave.ID) { + r.push(`${He} bears down on ${his} ${rivalryTerm(S.Stewardess)}, ${slave.slaveName}, forcing ${him2} to work extra hard or suffer punishment.`); + slave.devotion--; + slave.trust--; + if (jsRandom(1, 100) > 65) { + S.Stewardess.rivalry++; + slave.rivalry++; + } + } else if (S.Stewardess.relationshipTarget === slave.ID) { + r.push(`${He} dotes over ${his} ${relationshipTerm(S.Stewardess)}}, _${slave.slaveName}, making sure ${he2} knows how to do a good job and keeping ${him2} well stocked with everything ${he2} needs.`); + slave.devotion++; + } else if (areRelated(S.Stewardess, slave)) { + r.push(`${He} pays special attention to ${his} ${relativeTerm(S.Stewardess, slave)}, ${slave.slaveName}, making sure ${he2} doesn't slack off just because they are related.`); + slave.trust++; + } + switch (slave.prestigeDesc) { + case "$He is a famed Free Cities whore, and commands top prices.": + r.push(`${He} does ${his} best to motivate the famous whore, ${slave.slaveName}, though ${he} is uncertain why ${he2} is here.`); + break; + case "$He is a famed Free Cities slut, and can please anyone.": + r.push(`${He} ignores ${his} duties in order the fawn over the famous entertainer, ${slave.slaveName}.`); + break; + case "$He is remembered for winning best in show as a cockmilker.": + if ((slave.dick !== 0) && (slave.balls !== 0) && (slave.prostate > 1)) { + r.push(`${slave.slaveName} leaves a trail of cum wherever ${he2} goes and frequently stops to masturbate, greatly annoying ${S.Stewardess.slaveName}.`); + if (jsRandom(1, 100) > 90 && S.Stewardess.rivalry === 0 && slave.rivalry === 0) { + S.Stewardess.rivalryTarget = slave.ID; + S.Stewardess.rivalry++; + slave.rivalryTarget = S.Stewardess.ID; + slave.rivalry++; + } + } + break; + case "$He is remembered for winning best in show as a dairy cow.": + if ((slave.lactation > 0) && ((slave.boobs-slave.boobsImplant) > 6000)) { + r.push(`${slave.slaveName}'s huge breasts frequently get in the way of ${his2} work and ${he2} leaks milk everywhere, greatly annoying ${S.Stewardess.slaveName}.`); + if (jsRandom(1, 100) > 90 && S.Stewardess.rivalry === 0 && slave.rivalry === 0) { + S.Stewardess.rivalryTarget = slave.ID; + S.Stewardess.rivalry++; + slave.rivalryTarget = S.Stewardess.ID; + slave.rivalry++; + } + } + break; + case "$He is remembered for winning best in show as a breeder.": + if (slave.bellyPreg >= 10000) { + r.push(`${slave.slaveName}'s big pregnant belly frequently gets in the way of ${his2} work. However, ${S.Stewardess.slaveName} is willing to overlook it, as well as allow ${him2} easy jobs, due to how valuable ${his2} womb is.`); + } + break; + } + if (bonusToggle && slave.devotion < 45) { + slave.devotion += 5; + } + } + if (slaves.length > 0) { + if (S.Stewardess.fetishKnown === 1 && S.Stewardess.fetish === "dom") { + r.push(`${He} walks among the cowering servants as a queen among peasants, playing the role of a dominant to perfection and increasing ${his} charges' <span class="hotpink">obedience.</span>`); + } else if (S.Stewardess.energy > 95) { + r.push(`${He} walks among the cowering servants looking for an excuse to extract sex from shirkers as <span class="hotpink">punishment.</span>`); + } + cashX(stewardessBonus * slaves.length, "servantsQuarters", S.Stewardess); + } + if (V.arcologies[0].FSRestart !== "unset" && stewardessImpregnated > 0 && V.eugenicsFullControl !== 1) { + r.push(`<br>The Societal Elite know you've ordered ${S.Stewardess.slaveName} to impregnate your maids. <span class="red">They are not amused by your disinterest in eugenics.</span>`); + V.failedElite += 10; + } + } + return r.join(' '); + } + + /** Generate (and return, if not silent) the "standard" part of the slave report + * @param {App.Entity.SlaveState} slave + * @param {boolean} silent + * @returns {HTMLElement|null} + */ + function standardSlaveReport(slave, silent) { + const clothes = App.SlaveAssignment.choosesOwnClothes(slave); + tired(slave); + const rules = App.UI.DOM.renderPassage("SA rules"); + const diet = App.UI.DOM.renderPassage("SA diet"); + const ltEffects = App.UI.DOM.renderPassage("SA long term effects"); + const drugs = App.SlaveAssignment.drugs(slave); + const relationships = App.UI.DOM.renderPassage("SA relationships"); + const rivalries = App.UI.DOM.renderPassage("SA rivalries"); + const devotion = App.UI.DOM.renderPassage("SA devotion"); + if (!silent) { + const content = App.UI.DOM.makeElement("div", '', "indent"); + $(content).append(clothes, rules, diet, ltEffects, drugs, relationships, rivalries, document.createElement('br'), devotion); + return content; + } + } + + const stewardessEffects = App.UI.DOM.appendNewElement("p", frag, '', "indent"); + $(stewardessEffects).append(stewardessText()); + + if (slaves.length > 0) { + const intro = App.UI.DOM.appendNewElement("p", frag, '', "indent"); + let r = []; + if (slaves.length > 1) { + r.push(`<strong>There are ${slaves.length} slaves working out of the servants' quarters.</strong> They work to`); + } else { + const {He} = getPronouns(slaves[0]); + r.push(`<strong>There is one slave working out of the servants' quarters.</strong> ${He} works to`); + } + r.push(`<span class="yellowgreen">reduce</span> your household expenses; having a well-staffed house slightly <span class="green">increases</span> your reputation.`); + $(intro).append(r.join(' ')); + } + + if (S.Stewardess) { + /** @type {App.Entity.SlaveState} */ + const slave = S.Stewardess; + V.i = V.slaveIndices[slave.ID]; + App.Utils.setLocalPronouns(slave); // need this for the includes + /* apply following SA passages to facility leader */ + if (V.showEWD !== 0) { + const stewardessEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); + if (V.seeImages && V.seeReportImages) { + App.UI.DOM.appendNewElement("div", stewardessEntry, App.Art.SlaveArtElement(slave, 0, 0), ["imageRef", "tinyImg"]); + } + $(stewardessEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as your Stewardess.`); + $(stewardessEntry).append(standardSlaveReport(slave, false)); + } else { + standardSlaveReport(slave, true); + } + } + + V.servantMilkersMultiplier = 0.5; + let SQMilk = 0; + let SQMilkSale = 0; + + for (const slave of slaves) { + V.i = V.slaveIndices[slave.ID]; + slave.devotion += devBonus; + if (slave.devotion <= 20 && slave.trust >= -20) { + slave.devotion -= 5; + slave.trust -= 5; + } else if (slave.devotion <= 10) { + slave.devotion += 2; + } else if (slave.devotion >= 80) { + slave.devotion -= 2; + } + if (slave.devotion < -20) { + slave.trust += 3; + } else if (slave.trust < -50) { + slave.trust += 2; + } else if (slave.trust < -30) { + slave.trust += 1; + } + if (slave.health.condition < -80) { + improveCondition(slave, 20); + } else if (slave.health.condition < -40) { + improveCondition(slave, 10); + } else if (slave.health.condition < 0) { + improveCondition(slave, 7); + } else if (slave.health.condition < 90) { + improveCondition(slave, 3); + } + switch (V.servantsQuartersDecoration) { + case "Arabian Revivalist": + case "Aztec Revivalist": + case "Chattel Religionist": + case "Chinese Revivalist": + case "Degradationist": + case "Edo Revivalist": + case "Egyptian Revivalist": + case "Roman Revivalist": + case "Subjugationist": + case "Supremacist": + slave.rules.living = "spare"; + break; + case "Slave Professionalism": + if (slave.intelligence+slave.intelligenceImplant > 15) { + slave.rules.living = "normal"; + } else { + slave.rules.living = "spare"; + } + break; + case "Petite Admiration": + case "Statuesque Glorification": + if (heightPass(slave)) { + slave.rules.living = "normal"; + } else { + slave.rules.living = "spare"; + } + break; + default: + slave.rules.living = "normal"; + } + + App.Utils.setLocalPronouns(slave); // need this for the includes + if (V.showEWD !== 0) { + const {He} = getPronouns(slave); + const slaveEntry = App.UI.DOM.appendNewElement("div", frag, '', "slave-report"); + if (V.seeImages && V.seeReportImages) { + App.UI.DOM.appendNewElement("div", slaveEntry, App.Art.SlaveArtElement(slave, 0, 0), ["imageRef", "tinyImg"]); + } + $(slaveEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> `); + if (slave.choosesOwnAssignment === 2) { + $(slaveEntry).append(App.UI.DOM.renderPassage("SA chooses own job")); + } else { + $(slaveEntry).append(`is working out of ${V.servantsQuartersName}.`); + } + const servantContent = App.UI.DOM.appendNewElement("div", slaveEntry, '', "indent"); + $(servantContent).append(`${He} ${App.SlaveAssignment.servant(slave, stewardessBonus)}`); + if ((V.servantMilkers === 1) && (slave.lactation > 0)) { + const milkContent = App.UI.DOM.appendNewElement("div", slaveEntry, '', "indent"); + $(milkContent).append(`${He} ${App.SlaveAssignment.getMilked(slave)}`); + SQMilk += V.milk; + SQMilkSale += V.milkSale; + } + $(slaveEntry).append(standardSlaveReport(slave, false)); + } else { + // discard return values silently + App.SlaveAssignment.servant(slave, stewardessBonus); + if ((V.servantMilkers === 1) && (slave.lactation > 0)) { + App.SlaveAssignment.getMilked(slave); + SQMilk += V.milk; + SQMilkSale += V.milkSale; + } + standardSlaveReport(slave, true); + } + } + + if (SQMilk > 0) { + const milkEffects = App.UI.DOM.appendNewElement("p", frag, '', "indent"); + $(milkEffects).append(`Since your lactating servants spend most of their time working in the penthouse, they use the milkers there, giving ${SQMilk} liters of milk over the week, which is sold for <span class="yellowgreen">${cashFormat(SQMilkSale)}.</span>`); + } + + if (V.servantsQuartersDecoration !== "standard") { + const decorationEffects = App.UI.DOM.appendNewElement("p", frag, '', "indent"); + $(decorationEffects).append(`${V.servantsQuartersNameCaps}'s ${V.servantsQuartersDecoration} atmosphere <span class="hotpink">has a minor impact on your servants.</span>`); + } + + V.servantMilkersMultiplier = 1; + repX(slaves.length * 20, "servantsQuarters"); + + return frag; +}; diff --git a/src/endWeek/slaveAssignmentReport.js b/src/endWeek/slaveAssignmentReport.js index 64bfb6ffd7cf808552f35fea961eac9f565b7a3f..de174c7a7da10a0d8203342428b4d56dab3f3fa9 100644 --- a/src/endWeek/slaveAssignmentReport.js +++ b/src/endWeek/slaveAssignmentReport.js @@ -561,30 +561,29 @@ App.EndWeek.slaveAssignmentReport = function() { } break; case Job.STEWARD: - V.Stewardess = slave; if (!canTalk(slave)) { _printSlaveUnassignedNote(slave, "can't give servants verbal orders"); - V.Stewardess = 0; + V.StewardessID = 0; } else if (slave.preg > 37 && slave.broodmother === 2) { _printSlaveUnassignedNote(slave, "spends so much time giving birth and laboring that", `${getPronouns(slave).he} cannot effectively serve as your Stewardess any longer`); - V.Stewardess = 0; + V.StewardessID = 0; } else if (slave.fetish === "mindbroken") { _printSlaveUnassignedNote(slave, "is mindbroken"); - V.Stewardess = 0; + V.StewardessID = 0; } else if (!canWalk(slave)) { _printSlaveUnassignedNote(slave, "is no longer independently mobile"); - V.Stewardess = 0; + V.StewardessID = 0; } else if (!canHold(slave)) { _printSlaveUnassignedNote(slave, `can no longer handle ${getPronouns(slave).his} underlings nor effectively clean`); - V.Stewardess = 0; + V.StewardessID = 0; } else if (!canSee(slave)) { _printSlaveUnassignedNote(slave, "can no longer see"); - V.Stewardess = 0; + V.StewardessID = 0; } else if (!canHear(slave)) { _printSlaveUnassignedNote(slave, "can no longer hear"); - V.Stewardess = 0; + V.StewardessID = 0; } - if (V.Stewardess === 0) { + if (V.StewardessID === 0) { removeJob(slave, Job.STEWARD); } break; diff --git a/src/gui/css/mainStyleSheet.css b/src/gui/css/mainStyleSheet.css index 083a1985fe51bbd417f4718fbc95ced8beb78041..e380ff8791f1bc0c60203b6c2562700912828939 100644 --- a/src/gui/css/mainStyleSheet.css +++ b/src/gui/css/mainStyleSheet.css @@ -307,6 +307,10 @@ table.corporate td { .tab { margin-left: 2em; } +div.slave-report { + margin-top: 1em; + margin-bottom: 1em; +} div.indent, p.indent { text-indent: 2em; } diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js index a065abf550d9de0b33c6ee0106c0c873d766be12..928b2ebfc5f9720c2055057648c53724c516daab 100644 --- a/src/interaction/main/walkPast.js +++ b/src/interaction/main/walkPast.js @@ -3670,7 +3670,7 @@ globalThis.walkPast = (function() { break; case "overalls": if (slave.boobs > (slave.belly+250)) { - t += `Yourslave.slaveName's giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`; + t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`; } diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js index 9adec3e81745c629d565c9e40df3129d7707074e..bfe93714e75325264cf8dd37070df8362f6a0f72 100644 --- a/src/js/DefaultRules.js +++ b/src/js/DefaultRules.js @@ -1238,7 +1238,7 @@ globalThis.DefaultRules = (function() { if (V.arcologies[0].FSSlimnessEnthusiastResearch === 1) { shrinkDrugs.lips = "lip atrophiers"; if (slave.dick > 0) { - shrinkDrugs.penis = "penis atrophiers"; + shrinkDrugs.dick = "penis atrophiers"; } if (slave.balls > 0) { shrinkDrugs.balls = "testicle atrophiers"; diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 0f5cdb5ce5f16ea133802f2997c2c89971cfa5fd..3e4d868891266afe5e50cb12e934b676bbea274f 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -78,7 +78,7 @@ globalThis.inferiorRaceP = function(slave) { */ globalThis.isLeaderP = function(slave) { /** @type {FC.SlaveStateOrZero[]} */ - const leaders = [V.HeadGirl, V.Bodyguard, V.Recruiter, V.Concubine, V.Nurse, S.Attendant, V.Matron, V.Madam, V.DJ, V.Milkmaid, V.Farmer, V.Stewardess, V.Schoolteacher, V.Wardeness]; + const leaders = [V.HeadGirl, V.Bodyguard, V.Recruiter, V.Concubine, V.Nurse, S.Attendant, V.Matron, V.Madam, V.DJ, V.Milkmaid, V.Farmer, S.Stewardess, V.Schoolteacher, V.Wardeness]; return leaders.some(leader => leader && leader.ID && leader.ID === slave.ID); }; @@ -465,7 +465,8 @@ globalThis.getEnunciation = function(slave) { ret.title = "Mithtreth"; } if (V.allowFamilyTitles === 1) { - if (slave.father === -1) { + const soleParentPrefersMom = slave.father === -1 && slave.mother === -1 && V.PC.title === 0; + if (slave.father === -1 && !soleParentPrefersMom) { if (slave.actualAge < 4 && slave.physicalAge < 4) { ret.title = "Dadda"; } else if (slave.actualAge < 9) { @@ -543,7 +544,8 @@ globalThis.getEnunciation = function(slave) { ret.title = "Mistress"; } if (V.allowFamilyTitles === 1) { - if (slave.father === -1) { + const soleParentPrefersMom = slave.father === -1 && slave.mother === -1 && V.PC.title === 0; + if (slave.father === -1 && !soleParentPrefersMom) { if (slave.actualAge < 4 && slave.physicalAge < 4) { ret.title = "Dadda"; } else if (slave.actualAge < 9) { diff --git a/src/js/assignJS.js b/src/js/assignJS.js index e40f3e6136ffa32b284a9bf385a4c6c46b1dd307..a79213523cab2231a372807a8bda25c85a24d73f 100644 --- a/src/js/assignJS.js +++ b/src/js/assignJS.js @@ -506,8 +506,8 @@ globalThis.removeJob = function(slave, assignment, saveRecord = false) { V.Matron = 0; } else if (V.Nurse !== 0 && slave.ID === V.Nurse.ID) { V.Nurse = 0; - } else if (V.Stewardess !== 0 && slave.ID === V.Stewardess.ID) { - V.Stewardess = 0; + } else if (V.StewardessID === slave.ID) { + V.StewardessID = 0; } else if (V.Wardeness !== 0 && slave.ID === V.Wardeness.ID) { V.Wardeness = 0; } else if (V.Concubine !== 0 && slave.ID === V.Concubine.ID) { diff --git a/src/js/findSlave.js b/src/js/findSlave.js index 8bf1329a87b05e25bef09c4df4594d7cd3598c31..6587925d17b6a6508b246b1b342a3ca0b6c7e6d6 100644 --- a/src/js/findSlave.js +++ b/src/js/findSlave.js @@ -25,15 +25,34 @@ App.FindSlave._slaveIDs = function(predicate) { }, []); }; +/** + * Display a list of results, or text indicating that there were none + * @param {number[]} ids + * @param {DocumentFragment} frag + */ +App.FindSlave._appendResultList = function(ids, frag) { + if (ids.length === 0) { + App.UI.DOM.appendNewElement("p", frag, "No matching slaves."); + } else { + frag.appendChild(App.UI.SlaveList.render.listDOM(ids, [], App.UI.SlaveList.SlaveInteract.stdInteract)); + } +}; + /** * Generate a slave list as the result of fragment searching all the name-type fields * @param {string} query * @returns {DocumentFragment} */ App.FindSlave.searchByName = function(query) { - const needles = query.split(" ").map((needle) => { return new RegExp(needle, "i"); }); - const ids = this._slaveIDs((slave) => { return this._fragmentSearch([slave.slaveName, slave.slaveSurname, slave.birthName, slave.birthSurname], needles); }); - return App.UI.SlaveList.render.listDOM(ids, [], App.UI.SlaveList.SlaveInteract.stdInteract); + const frag = document.createDocumentFragment(); + if (query) { + const resultTitle = App.UI.DOM.appendNewElement("p", frag, "Query results for name: "); + App.UI.DOM.appendNewElement("code", resultTitle, query); + const needles = query.split(" ").map((needle) => { return new RegExp(needle, "i"); }); + const ids = this._slaveIDs((slave) => { return this._fragmentSearch([slave.slaveName, slave.slaveSurname, slave.birthName, slave.birthSurname], needles); }); + this._appendResultList(ids, frag); + } + return frag; }; /** @@ -42,9 +61,15 @@ App.FindSlave.searchByName = function(query) { * @returns {DocumentFragment} */ App.FindSlave.searchByBackground = function(query) { - const needles = query.split(" ").map((needle) => { return new RegExp(needle, "i"); }); - const ids = this._slaveIDs((slave) => { return this._fragmentSearch([slave.career, slave.origin], needles); }); - return App.UI.SlaveList.render.listDOM(ids, [], App.UI.SlaveList.SlaveInteract.stdInteract); + const frag = document.createDocumentFragment(); + if (query) { + const resultTitle = App.UI.DOM.appendNewElement("p", frag, "Query results for background: "); + App.UI.DOM.appendNewElement("code", resultTitle, query); + const needles = query.split(" ").map((needle) => { return new RegExp(needle, "i"); }); + const ids = this._slaveIDs((slave) => { return this._fragmentSearch([slave.career, slave.origin], needles); }); + this._appendResultList(ids, frag); + } + return frag; }; /** @@ -53,7 +78,13 @@ App.FindSlave.searchByBackground = function(query) { * @returns {DocumentFragment} */ App.FindSlave.searchByExpression = function(query) { - const pred = new Function("slave", "return (" + query + ");"); - const ids = runWithReadonlyProxy(() => { return this._slaveIDs(pred); }); - return App.UI.SlaveList.render.listDOM(ids, [], App.UI.SlaveList.SlaveInteract.stdInteract); + const frag = document.createDocumentFragment(); + if (query) { + const resultTitle = App.UI.DOM.appendNewElement("p", frag, "Query results from expression: "); + App.UI.DOM.appendNewElement("code", resultTitle, query); + const pred = new Function("slave", "return (" + query + ");"); + const ids = runWithReadonlyProxy(() => { return this._slaveIDs(pred); }); + this._appendResultList(ids, frag); + } + return frag; }; diff --git a/src/js/generateRelatedSlave.js b/src/js/generateRelatedSlave.js index b901cb77e300a50f1f021ed5bd8bc064b2ce9415..832945f4cc7e421e391e3cd92868d80d6353503d 100644 --- a/src/js/generateRelatedSlave.js +++ b/src/js/generateRelatedSlave.js @@ -268,8 +268,8 @@ globalThis.generateRelatedSlave = (function() { */ function randomiseFetishFlaws(slave) { slave.fetishStrength = random(0, 90); - slave.fetish = either("buttslut", "cumslut", "dom", "humiliation", "masochist", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive"); - slave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "masochist", "none", "none", "none", "odd"); + slave.fetish = either("buttslut", "cumslut", "dom", "humiliation", "masochist", "boobs", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive"); + slave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "liberated", "none", "none", "none", "odd"); if (slave.behavioralFlaw === "devout") { slave.sexualFlaw = either("apathetic", "none", "repressed", "shamefast"); } else { diff --git a/src/js/pregJS.js b/src/js/pregJS.js index 39d567cde31dcd49e6c25b1b4319d4480907a95e..1bcec8237648c669fcf309e101b18aa885ef1829 100644 --- a/src/js/pregJS.js +++ b/src/js/pregJS.js @@ -414,14 +414,15 @@ globalThis.setPregType = function(actor) { return Math.ceil(ovum); }; -/* - Penetrative ability, ability to become pregnant, and canBreed() must be checked outside of this. Designed to assume .eggType === "human". - target is the slave to get pregnant. Also accepts the PC. - chance is the % chance to conceive. - hole control's the hole involved (0 - vagina, 1 - ass, 2 - both). .mpreg did this. - fatherID is the ID of her sire or 0 if undefined. - displayOverride is an override if defined - fatherID must be defined in this case. -*/ +/** Attempt to get a slave pregnant + * Penetrative ability, ability to become pregnant, and canBreed() must be checked outside of this. Designed to assume .eggType === "human". + * @param {App.Entity.SlaveState} target is the slave to get pregnant. Also accepts the PC. + * @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) { let He; let r = ``; diff --git a/src/js/slaveSummaryHelpers.js b/src/js/slaveSummaryHelpers.js index 55daa7b5cc9f7d48b6b4c2986ae8b3306fe89db0..ca3ae710a8079bdee791357703a177e25453659c 100644 --- a/src/js/slaveSummaryHelpers.js +++ b/src/js/slaveSummaryHelpers.js @@ -288,7 +288,7 @@ App.UI.SlaveSummaryImpl = function() { /** * @param {App.Entity.SlaveState} slave - * @param {App.Data.SlaveSummary.SmartPiercing} spData + * @param {FC.SlaveSummary.SmartPiercing} spData * @returns {string} */ function smartFetishStr(slave, spData) { @@ -318,7 +318,7 @@ App.UI.SlaveSummaryImpl = function() { /** * @param {App.Entity.SlaveState} slave - * @param {App.Data.SlaveSummary.SmartPiercing} spData + * @param {FC.SlaveSummary.SmartPiercing} spData * @returns {string} */ function smartAttractionStr(slave, spData) { @@ -332,24 +332,24 @@ App.UI.SlaveSummaryImpl = function() { } else { return sps.monitoring; } - case "men": - if (slave.attrXY < 95) { - return sps.men; - } else { - return sps.monitoring; - } - case "anti-women": - if (slave.attrXX > 0) { - return sps["anti-women"]; - } else { - return sps.monitoring; - } - case "anti-men": - if (slave.attrXY > 0) { - return sps["anti-men"]; - } else { - return sps.monitoring; - } + case "men": + if (slave.attrXY < 95) { + return sps.men; + } else { + return sps.monitoring; + } + case "anti-women": + if (slave.attrXX > 0) { + return sps["anti-women"]; + } else { + return sps.monitoring; + } + case "anti-men": + if (slave.attrXY > 0) { + return sps["anti-men"]; + } else { + return sps.monitoring; + } } } else { switch (cs){ @@ -1115,34 +1115,8 @@ App.UI.SlaveSummaryImpl = function() { * @param {Node} c * @returns {void} */ - function short_smart_fetish(slave, c) { - const s = smartFetishStr(slave, data.short.smartPiercing); - if (s) { - makeSpan(c, s); - } - } - - /** - * @param {App.Entity.SlaveState} slave - * @param {Node} c - * @returns {void} - */ - function short_smart_attraction(slave, c) { - /* - if (slave.attrKnown === 1) { - if ((slave.attrXX < 100) && (slave.clitSetting === "women")) { - makeSpan(c, `SP: women.`); - } else if ((slave.attrXY < 100) && (slave.clitSetting === "men")) { - makeSpan(c, `SP: men.`); - } - } else { - if (slave.clitSetting === "women") { - makeSpan(c, `SP: women.`); - } else if (slave.clitSetting === "men") { - makeSpan(c, `SP: men.`); - } - }*/ - const s = smartAttractionStr(slave, data.short.smartPiercing); + function short_smart_piercing(slave, c) { + const s = smartFetishStr(slave, data.short.smartPiercing) || smartAttractionStr(slave, data.short.smartPiercing); if (s) { makeSpan(c, s); } @@ -1228,20 +1202,8 @@ App.UI.SlaveSummaryImpl = function() { * @param {Node} c * @returns {void} */ - function long_smart_fetish(slave, c) { - const s = smartFetishStr(slave, data.long.smartPiercing); - if (s) { - makeSpan(c, s); - } - } - - /** - * @param {App.Entity.SlaveState} slave - * @param {Node} c - * @returns {void} - */ - function long_smart_attraction(slave, c) { - const s = smartAttractionStr(slave, data.long.smartPiercing); + function long_smart_piercing(slave, c) { + const s = smartFetishStr(slave, data.short.smartPiercing) || smartAttractionStr(slave, data.short.smartPiercing); if (s) { makeSpan(c, s); } @@ -1360,10 +1322,10 @@ App.UI.SlaveSummaryImpl = function() { let res = ""; let handled = 0; if (slave.mother > 0) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.mother); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s ${getPronouns(slave).daughter}`; - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + const _ssj = V.slaves.find(s => s.ID === slave.mother); + if (_ssj) { + res += `${SlaveFullName(_ssj)}'s ${getPronouns(slave).daughter}`; + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTermShort(slave); res += ` & ${friendShipShort}`; handled = 1; @@ -1381,10 +1343,10 @@ App.UI.SlaveSummaryImpl = function() { res += `${V.missingTable[slave.mother].fullName}'s ${getPronouns(slave).daughter} `; } if (slave.father > 0 && slave.father !== slave.mother) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.father); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s ${getPronouns(slave).daughter}`; - if (slave.relationshipTarget === V.slaves[_ssj].ID && handled !== 1) { + const _ssj = V.slaves.find(s => s.ID === slave.father); + if (_ssj) { + res += `${SlaveFullName(_ssj)}'s ${getPronouns(slave).daughter}`; + if (slave.relationshipTarget === _ssj.ID && handled !== 1) { const friendShipShort = relationshipTermShort(slave); res += ` & ${friendShipShort}`; handled = 1; @@ -1402,20 +1364,10 @@ App.UI.SlaveSummaryImpl = function() { res += `${V.missingTable[slave.father].fullName}'s ${getPronouns(slave).daughter}`; } if (slave.daughters === 1) { - let _ssj = V.slaves.findIndex(s => s.mother === slave.ID); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s mother`; - if (slave.relationshipTarget === V.slaves[_ssj].ID) { - const friendShipShort = relationshipTermShort(slave); - res += ` & ${friendShipShort}`; - handled = 1; - } - } - res += " "; - _ssj = V.slaves.findIndex(s => s.father === slave.ID); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s father`; - if (slave.relationshipTarget === V.slaves[_ssj].ID && handled !== 1) { + const _ssj = V.slaves.find(s => s.mother === slave.ID || s.father === slave.ID); + if (_ssj) { + res += `${SlaveFullName(_ssj)}'s ${relativeTerm(_ssj, slave)}`; + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTermShort(slave); res += ` & ${friendShipShort}`; handled = 1; @@ -1426,10 +1378,10 @@ App.UI.SlaveSummaryImpl = function() { res += `multiple daughters `; } if (slave.sisters === 1) { - const _ssj = V.slaves.findIndex(s => areSisters(s, slave) > 0); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s ${getPronouns(slave).sister}`; - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + const _ssj = V.slaves.find(s => areSisters(s, slave) > 0); + if (_ssj) { + res += `${SlaveFullName(_ssj)}'s ${getPronouns(slave).sister}`; + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTermShort(slave); res += `& ${friendShipShort}`; handled = 1; @@ -1440,9 +1392,9 @@ App.UI.SlaveSummaryImpl = function() { res += `multiple sisters `; } if (slave.relationship > 0 && handled !== 1) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.relationshipTarget); - if (_ssj !== -1) { - res += `${SlaveFullName(V.slaves[_ssj])}'s`; + const _ssj = V.slaves.find(s => s.ID === slave.relationshipTarget); + if (_ssj) { + res += `${SlaveFullName(_ssj)}'s`; const friendShipShort = relationshipTermShort(slave); res += ` ${friendShipShort}`; } @@ -1475,14 +1427,14 @@ App.UI.SlaveSummaryImpl = function() { function short_rival(slave, c) { if (slave.rivalry !== 0) { const block = makeBlock(c, "lightsalmon"); - const _ssj = V.slaves.findIndex(s => s.ID === slave.rivalryTarget); - if (_ssj !== -1) { + const _ssj = V.slaves.find(s => s.ID === slave.rivalryTarget); + if (_ssj) { if (slave.rivalry <= 1) { - block.textContent = `Disl ${SlaveFullName(V.slaves[_ssj])}`; + block.textContent = `Disl ${SlaveFullName(_ssj)}`; } else if (slave.rivalry <= 2) { - block.textContent = `${SlaveFullName(V.slaves[_ssj])}'s rival`; + block.textContent = `${SlaveFullName(_ssj)}'s rival`; } else { - block.textContent = `Hates ${SlaveFullName(V.slaves[_ssj])}`; + block.textContent = `Hates ${SlaveFullName(_ssj)}`; } } } @@ -1497,11 +1449,11 @@ App.UI.SlaveSummaryImpl = function() { let handled = 0; const block = makeBlock(); if (slave.mother > 0) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.mother); - if (_ssj !== -1) { - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); + const _ssj = V.slaves.find(s => s.ID === slave.mother); + if (_ssj) { + addText(block, `${SlaveFullName(_ssj)}'s `); const tmpSpan = makeSpan(block, getPronouns(slave).daughter, "lightgreen"); - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTerm(slave); tmpSpan.textContent += ` and ${friendShipShort}`; handled = 1; @@ -1521,11 +1473,11 @@ App.UI.SlaveSummaryImpl = function() { makeSpan(block, `${getPronouns(slave).daughter}.`, "lightgreen"); } if (slave.father > 0 && slave.father !== slave.mother) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.father); - if (_ssj !== -1) { - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); + const _ssj = V.slaves.find(s => s.ID === slave.father); + if (_ssj) { + addText(block, `${SlaveFullName(_ssj)}'s `); const tmpSpan = makeSpan(block, getPronouns(slave).daughter, "lightgreen"); - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTerm(slave); tmpSpan.textContent += ` and ${friendShipShort}`; handled = 1; @@ -1554,22 +1506,11 @@ App.UI.SlaveSummaryImpl = function() { } } if (slave.daughters === 1) { - let _ssj = V.slaves.findIndex(s => s.mother === slave.ID); - if (_ssj !== -1) { - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); - const tmpSpan = makeSpan(block, "mother", "lightgreen"); - if (slave.relationshipTarget === V.slaves[_ssj].ID) { - const friendShipShort = relationshipTerm(slave); - tmpSpan.textContent += ` and ${friendShipShort}`; - handled = 1; - } - tmpSpan.textContent += '.'; - } - _ssj = V.slaves.findIndex(s => s.father === slave.ID); - if (_ssj !== -1) { - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); - const tmpSpan = makeSpan(block, "father", "lightgreen"); - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + const _ssj = V.slaves.find(s => s.mother === slave.ID || s.father === slave.ID); + if (_ssj) { + addText(block, `${SlaveFullName(_ssj)}'s `); + const tmpSpan = makeSpan(block, relativeTerm(_ssj, slave), "lightgreen"); + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTerm(slave); tmpSpan.textContent += ` and ${friendShipShort}`; handled = 1; @@ -1586,11 +1527,11 @@ App.UI.SlaveSummaryImpl = function() { } } if (slave.sisters === 1) { - const _ssj = V.slaves.findIndex(s => areSisters(s, slave) > 0); - if (_ssj !== -1) { - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); + const _ssj = V.slaves.find(s => areSisters(s, slave) > 0); + if (_ssj) { + addText(block, `${SlaveFullName(_ssj)}'s `); const tmpSpan = makeSpan(block, getPronouns(slave).sister, "lightgreen"); - if (slave.relationshipTarget === V.slaves[_ssj].ID) { + if (slave.relationshipTarget === _ssj.ID) { const friendShipShort = relationshipTerm(slave); tmpSpan.textContent += ` and ${friendShipShort}`; handled = 1; @@ -1607,10 +1548,10 @@ App.UI.SlaveSummaryImpl = function() { } } if (slave.relationship > 0 && handled !== 1) { - const _ssj = V.slaves.findIndex(s => s.ID === slave.relationshipTarget); - if (_ssj !== -1) { + const _ssj = V.slaves.find(s => s.ID === slave.relationshipTarget); + if (_ssj) { const friendship = relationshipTerm(slave); - addText(block, `${SlaveFullName(V.slaves[_ssj])}'s `); + addText(block, `${SlaveFullName(_ssj)}'s `); makeSpan(block, `${friendship}.`, "lightgreen"); } } else if (slave.relationship === -3 && slave.mother !== -1 && slave.father !== -1 && areSisters(V.PC, slave) === 0) { @@ -1645,17 +1586,17 @@ App.UI.SlaveSummaryImpl = function() { function long_rival(slave, c) { if (slave.rivalry !== 0) { const block = makeBlock(c); - const _ssj = V.slaves.findIndex(s => s.ID === slave.rivalryTarget); - if (_ssj !== -1) { + const _ssj = V.slaves.find(s => s.ID === slave.rivalryTarget); + if (_ssj) { if (slave.rivalry <= 1) { makeSpan(block, "Dislikes", "lightsalmon"); - block.appendChild(document.createTextNode(` ${SlaveFullName(V.slaves[_ssj])}.`)); + block.appendChild(document.createTextNode(` ${SlaveFullName(_ssj)}.`)); } else if (slave.rivalry <= 2) { - block.appendChild(document.createTextNode(`${SlaveFullName(V.slaves[_ssj])}'s `)); + block.appendChild(document.createTextNode(`${SlaveFullName(_ssj)}'s `)); makeSpan(block, "rival.", "lightsalmon"); } else { makeSpan(block, "Hates", "lightsalmon"); - block.appendChild(document.createTextNode(` ${SlaveFullName(V.slaves[_ssj])}.`)); + block.appendChild(document.createTextNode(` ${SlaveFullName(_ssj)}.`)); } } } @@ -1698,8 +1639,7 @@ App.UI.SlaveSummaryImpl = function() { buttplug: long_buttplug, fetish: long_fetish, attraction: long_attraction, - smart_fetish: long_smart_fetish, - smart_attraction: long_smart_attraction, + smart_piercing: long_smart_piercing, behavior_flaw: long_behavior_flaw, sex_flaw: long_sex_flaw, behavior_quirk: long_behavior_quirk, @@ -1743,8 +1683,7 @@ App.UI.SlaveSummaryImpl = function() { */ fetish: short_fetish, attraction: short_attraction, - smart_fetish: short_smart_fetish, - smart_attraction: short_smart_attraction, + smart_piercing: short_smart_piercing, behavior_flaw: short_behavior_flaw, sex_flaw: short_sex_flaw, behavior_quirk: short_behavior_quirk, diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js index adb622a4bb353e13c67ef96a9e73d187990b23a9..2ee39a5a880ebd7234aedf3d31d490232373f646 100644 --- a/src/js/slaveSummaryWidgets.js +++ b/src/js/slaveSummaryWidgets.js @@ -300,8 +300,7 @@ App.UI.SlaveSummaryRenderers = function() { } } if (slave.clitPiercing === 3) { - b.smart_fetish(slave, c); - b.smart_attraction(slave, c); + b.smart_piercing(slave, c); } b.behavior_flaw(slave, c); b.sex_flaw(slave, c); @@ -695,8 +694,7 @@ App.UI.SlaveSummaryRenderers = function() { } } if (slave.clitPiercing === 3) { - b.smart_fetish(slave, c); - b.smart_attraction(slave, c); + b.smart_piercing(slave, c); } b.behavior_flaw(slave, c); b.sex_flaw(slave, c); @@ -921,7 +919,6 @@ App.UI.SlaveSummary = function() { delegates.drugs(slave, para); para = helpers.makeParagraph(res); - para.classList.add("pink"); helpers.makeSpan(para, `${capFirstChar(SlaveTitle(slave))}${abbrSettings.physicals === 2 ? '.' : ''}`, ["coral", "strong"]); delegates.race(slave, para); delegates.nationality(slave, para); diff --git a/src/npc/bodyguard/bgDescription.js b/src/npc/bodyguard/bgDescription.js new file mode 100644 index 0000000000000000000000000000000000000000..fcf0a377ffeb94aab3d23bd8494624b916315e64 --- /dev/null +++ b/src/npc/bodyguard/bgDescription.js @@ -0,0 +1,474 @@ +/** + * @param {App.Entity.SlaveState} slave + * @returns {string} + */ +App.Desc.bodyguard = function(slave) { + const r = []; + const { + his, He, he + } = getPronouns(slave); + if (slave.fuckdoll !== 0 || slave.ID !== V.Bodyguard.ID) { + return; + } + r.push(`${He} is your bodyguard.`); + r.push(bgWeapon(slave)); + + if (slave.skill.combat > 0) { + r.push(`${He} is <span class="aquamarine">skilled at combat:</span> ${he} is comfortable with the use of modern firearms and edged weapons, and ${his} hands`); + if (!hasBothArms(slave)) { + r.push(`would be deadly weapons if ${he} had`); + if (!hasAnyArms(slave)) { + r.push(`any.`); + } else { + r.push(`more than one.`); + } + } else { + if ((getArmCount(slave, 5) + getArmCount(slave, 6) > 1)) { + r.push(`would be deadly weapons even if they weren't full of deadly weapons already.`); + } else { + r.push(`are deadly weapons.`); + } + } + } + + return r.join(" "); + + function bgWeapon() { + const w = []; + if ((slave.muscles + slave.height - 100) / 25 > 5) { + w.push(`${He} has a long ceramic sword strapped to ${his} back,`); + switch (slave.nationality) { + case "American": + w.push(`and, in keeping with ${his} heritage, a US Ordnance Mk43 Mod.1 GPMG`); + break; + case "Armenian": + case "Belarusian": + case "Cuban": + case "Hungarian": + case "Kazakh": + case "Uzbek": + w.push(`and, in keeping with ${his} heritage, a PKM GPMG`); + break; + case "Australian": + w.push(`and, in keeping with ${his} heritage, a Lithgow F89 Maximi GPMG`); + break; + case "Austrian": + w.push(`and, in keeping with ${his} heritage, a Steyr MG 74 GPMG`); + break; + case "Belgian": + w.push(`and, in keeping with ${his} heritage, a FN Minimi M3 LMG`); + break; + case "British": + case "Scottish": + w.push(`and, in keeping with ${his} heritage, an L7A2 GPMG`); + break; + case "Canadian": + w.push(`and, in keeping with ${his} heritage, a Colt Canada 5.56-LSW LMG`); + break; + case "Chilean": + case "German": + w.push(`and, in keeping with ${his} heritage, a Rheinmetall MG3 GPMG`); + break; + case "Chinese": + w.push(`and, in keeping with ${his} heritage, a Norinco QJY-88 LMG`); + break; + case "Czech": + case "Slovak": + w.push(`and, in keeping with ${his} heritage, a ZVI Uk vz.59 Rachot GPMG`); + break; + case "Filipina": + w.push(`and, in keeping with ${his} heritage, a Government Arsenal M60E4 GPMG`); + break; + case "Finnish": + w.push(`and, in keeping with ${his} heritage, a Valmet KvKK 62 LMG`); + break; + case "French": + w.push(`and, in keeping with ${his} heritage, a MAS AAT-F1 GPMG`); + break; + case "Indian": + w.push(`and, in keeping with ${his} heritage, an OFB MG 2A1 GPMG`); + break; + case "Indonesian": + w.push(`and, in keeping with ${his} heritage, a Pindad SM2 LMG`); + break; + case "Iranian": + w.push(`and, in keeping with ${his} heritage, a DIO MGA3 GPMG`); + break; + case "Israeli": + w.push(`and, in keeping with ${his} heritage, an IWI Negev NG7 GPMG`); + break; + case "Japanese": + w.push(`and, in keeping with ${his} heritage, a Sumitomo Type 62 GPMG`); + break; + case "Korean": + w.push(`and, in keeping with ${his} heritage, a S&T K12 GPMG`); + break; + case "Mexican": + w.push(`and, in keeping with ${his} heritage, a SEDENA MG-21 GPMG`); + break; + case "Polish": + w.push(`and, in keeping with ${his} heritage, a ZMT UKM-2000 GPMG`); + break; + case "Romanian": + w.push(`and, in keeping with ${his} heritage, a FACSA PM md.93 LMG`); + break; + case "Russian": + w.push(`and, in keeping with ${his} heritage, a PKP Pecheneg GPMG`); + break; + case "Serbian": + w.push(`and, in keeping with ${his} heritage, a Zastava M09 LMG`); + break; + case "South African": + w.push(`and, in keeping with ${his} heritage, a Vektor SS-77 GPMG`); + break; + case "Spanish": + w.push(`and, in keeping with ${his} heritage, a CETME MG 82 Ameli LMG`); + break; + case "Swiss": + w.push(`and, in keeping with ${his} heritage, a W+F-Bern MG51 GPMG`); + break; + case "Turkish": + w.push(`and, in keeping with ${his} heritage, a MKEK MG3 GPMG`); + break; + case "Ukrainian": + w.push(`and, in keeping with ${his} heritage, a Fort-401 LMG`); + break; + case "Vietnamese": + w.push(`and, in keeping with ${his} heritage, a Z111 RPK LMG`); + break; + case "Zimbabwean": + if (slave.race === "white") { + w.push(`and, in keeping with ${his} heritage, a FN MAG-58 GPMG`); + } else { + w.push(`and a FN MAG 60.20 GPMG`); + } + break; + default: + w.push(`and a FN MAG 60.20 GPMG`); + } + w.push(`slung crosswise on ${his} chest.`); + } else if ((slave.muscles + slave.height - 100) / 25 > 4) { + w.push(`${He} has a ceramic sword strapped to ${his} back`); + switch (slave.nationality) { + case "American": + w.push(`and, in keeping with ${his} heritage, a Colt M16A4 assault rifle`); + break; + case "Argentinian": + w.push(`and, in keeping with ${his} heritage, a FMAP FARA-83 assault rifle`); + break; + case "Armenian": + case "Belarusian": + case "Kazakh": + case "Uzbek": + w.push(`and, in keeping with ${his} heritage, a Kalashnikov AK-74M assault rifle`); + break; + case "Australian": + w.push(`and, in keeping with ${his} heritage, a Lithgow EF88 Austeyr bullpup assault rifle`); + break; + case "Austrian": + w.push(`and, in keeping with ${his} heritage, a Steyr AUG A3 bullpup assault rifle`); + break; + case "Belgian": + w.push(`and, in keeping with ${his} heritage, a FN FNC M2 assault rifle`); + break; + case "Brazilian": + w.push(`and, in keeping with ${his} heritage, an IMBEL IA2 assault rifle`); + break; + case "British": + case "Scottish": + w.push(`and, in keeping with ${his} heritage, an L85A3 bullpup assault rifle`); + break; + case "Canadian": + w.push(`and, in keeping with ${his} heritage, a Colt Canada MRR assault rifle`); + break; + case "Chilean": + w.push(`and, in keeping with ${his} heritage, a FAMAE ACE 22NC assault rifle`); + break; + case "Chinese": + w.push(`and, in keeping with ${his} heritage, a Norinco QBZ-95-1 bullpup assault rifle`); + break; + case "Colombian": + w.push(`and, in keeping with ${his} heritage, an Indumil ACE 22 assault rifle`); + break; + case "Croatian": + w.push(`and, in keeping with ${his} heritage, an HS Produkt VHS-2 bullpup assault rifle`); + break; + case "Cuban": + w.push(`and, in keeping with ${his} heritage, an AKM assault rifle`); + break; + case "Czech": + case "Slovak": + w.push(`and, in keeping with ${his} heritage, a CZUB CZ-806 BREN-2 assault rifle`); + break; + case "Filipina": + w.push(`and, in keeping with ${his} heritage, an Elitool M653P carbine`); + break; + case "Finnish": + w.push(`and, in keeping with ${his} heritage, a SAKO Rk 95 TP assault rifle`); + break; + case "French": + w.push(`and, in keeping with ${his} heritage, a Nexter FAMAS G2 bullpup assault rifle`); + break; + case "German": + w.push(`and, in keeping with ${his} heritage, a H&K G36A2 assault rifle`); + break; + case "Hungarian": + w.push(`and, in keeping with ${his} heritage, a FEG AMD-65M assault rifle`); + break; + case "Indian": + w.push(`and, in keeping with ${his} heritage, an OFB MCIWS assault rifle`); + break; + case "Indonesian": + w.push(`and, in keeping with ${his} heritage, a Pindad SS2 assault rifle`); + break; + case "Iranian": + w.push(`and, in keeping with ${his} heritage, a DIO KH-2002 Khaybar bullpup assault rifle`); + break; + case "Israeli": + w.push(`and, in keeping with ${his} heritage, an IWI MTAR-21 bullpup assault rifle`); + break; + case "Italian": + w.push(`and, in keeping with ${his} heritage, a Beretta ARX-160 assault rifle`); + break; + case "Japanese": + w.push(`and, in keeping with ${his} heritage, a Howa Type 89 assault rifle`); + break; + case "Korean": + w.push(`and, in keeping with ${his} heritage, a Daewoo K2C1 assault rifle`); + break; + case "Mexican": + w.push(`and, in keeping with ${his} heritage, a DGIM FX-05 Xiuhcoatl assault rifle`); + break; + case "Peruvian": + w.push(`and, in keeping with ${his} heritage, a SIMA FAD bullpup assault rifle`); + break; + case "Polish": + w.push(`and, in keeping with ${his} heritage, a FB MSBS assault rifle`); + break; + case "Romanian": + w.push(`and, in keeping with ${his} heritage, a ROMARM PA md.86 assault rifle`); + break; + case "Russian": + w.push(`and, in keeping with ${his} heritage, an Izhmash AN-94 Abakan assault rifle`); + break; + case "Serbian": + w.push(`and, in keeping with ${his} heritage, a Zastava M21A assault rifle`); + break; + case "South African": + w.push(`and, in keeping with ${his} heritage, a Vektor R4 assault rifle`); + break; + case "Spanish": + w.push(`and, in keeping with ${his} heritage, a CETME Model C battle rifle`); + break; + case "Swedish": + w.push(`and, in keeping with ${his} heritage, a Bofors Ak-5C assault rifle`); + break; + case "Swiss": + w.push(`and, in keeping with ${his} heritage, a SIG SG 550 assault rifle`); + break; + case "Thai": + w.push(`and, in keeping with ${his} heritage, a MND Type 11 assault rifle`); + break; + case "Turkish": + w.push(`and, in keeping with ${his} heritage, a MKEK MPT-76 assault rifle`); + break; + case "Ukrainian": + w.push(`and, in keeping with ${his} heritage, a Fort-227 assault rifle`); + break; + case "Vietnamese": + w.push(`and, in keeping with ${his} heritage, a Z111 AKM assault rifle`); + break; + case "Zimbabwean": + if (slave.race === "white") { + w.push(`and, in keeping with ${his} heritage, a FN FAL battle rifle`); + } else { + w.push(`and a FN F2000 bullpup assault rifle`); + } + break; + default: + w.push(`and a FN F2000 bullpup assault rifle`); + } + w.push(`slung across ${his} chest.`); + } else if ((slave.muscles + slave.height - 100) / 25 > 3) { + w.push(`${He} has a straight ceramic sword strapped to ${his} back`); + switch (slave.nationality) { + case "American": + w.push(`and, in keeping with ${his} heritage, a KRISS Vector SMG`); + break; + case "Argentinian": + w.push(`and, in keeping with ${his} heritage, a Halcon ML-63 SMG`); + break; + case "Armenian": + case "Belarusian": + case "Kazakh": + case "Uzbek": + w.push(`and, in keeping with ${his} heritage, a Kalashnikov AKS-74U PDW`); + break; + case "Austrian": + w.push(`and, in keeping with ${his} heritage, a Steyr AUG A3 Para XS bullpup SMG`); + break; + case "Belgian": + w.push(`and, in keeping with ${his} heritage, a FN P90 bullpup PDW`); + break; + case "Brazilian": + w.push(`and, in keeping with ${his} heritage, a Taurus MT40 G2 SMG`); + break; + case "British": + case "Scottish": + w.push(`and, in keeping with ${his} heritage, an L91A1 SMG`); + break; + case "Chilean": + w.push(`and, in keeping with ${his} heritage, a FAMAE SAF-200 SMG`); + break; + case "Chinese": + w.push(`and, in keeping with ${his} heritage, a Norinco QCQ-05 SMG`); + break; + case "Croatian": + w.push(`and, in keeping with ${his} heritage, a PM Agram 2000 SMG`); + break; + case "Filipina": + w.push(`and, in keeping with ${his} heritage, a Ferfrans SCW7 PDW`); + break; + case "German": + w.push(`and, in keeping with ${his} heritage, an H&K MP7A1 PDW`); + break; + case "Indian": + w.push(`and, in keeping with ${his} heritage, an OFB MSMC SMG`); + break; + case "Indonesian": + w.push(`and, in keeping with ${his} heritage, a Pindad PM1A1 SMG`); + break; + case "Iranian": + w.push(`and, in keeping with ${his} heritage, a DIO MPT-9 Tondar SMG`); + break; + case "Israeli": + w.push(`and, in keeping with ${his} heritage, an IWI Uzi SMG`); + break; + case "Italian": + w.push(`and, in keeping with ${his} heritage, a Beretta MX4 SMG`); + break; + case "Korean": + w.push(`and, in keeping with ${his} heritage, a Daewoo K1A PDW`); + break; + case "Mexican": + w.push(`and, in keeping with ${his} heritage, a Mendoza Cobra SMG`); + break; + case "Polish": + w.push(`and, in keeping with ${his} heritage, a FB PM-06 Glauberyt SMG`); + break; + case "Romanian": + w.push(`and, in keeping with ${his} heritage, a UM Cugir LP7 SMG`); + break; + case "Russian": + w.push(`and, in keeping with ${his} heritage, a KBP PP-90M1 SMG`); + break; + case "Serbian": + w.push(`and, in keeping with ${his} heritage, a Zastava Master FLG SMG`); + break; + case "South African": + w.push(`and, in keeping with ${his} heritage, a Milkor BXP SMG`); + break; + case "Spanish": + w.push(`and, in keeping with ${his} heritage, a Star Z84 SMG`); + break; + case "Swedish": + w.push(`and, in keeping with ${his} heritage, a Carl Gustav m/45 SMG`); + break; + case "Swiss": + w.push(`and, in keeping with ${his} heritage, a SIG MPX SMG`); + break; + case "Turkish": + w.push(`and, in keeping with ${his} heritage, a Sarsilmaz SAR 109 SMG`); + break; + case "Ukrainian": + w.push(`and, in keeping with ${his} heritage, a Fort-224 bullpup SMG`); + break; + case "Vietnamese": + w.push(`and, in keeping with ${his} heritage, a Z111 K-50M LMG`); + break; + case "Zimbabwean": + if (slave.race === "white") { + w.push(`and, in keeping with ${his} heritage, a Sterling Mk.IV SMG`); + } else { + w.push(`and a H&K MP5 SMG`); + } + break; + default: + w.push(`and a H&K MP5 SMG`); + } + w.push(`slung across ${his} chest.`); + } else { + w.push(`${He} has a short ceramic sword strapped to ${his} back`); + switch (slave.nationality) { + case "American": + w.push(`and, in keeping with ${his} heritage, a MAC-10 machine pistol`); + break; + case "Armenian": + case "Belarusian": + case "Cuban": + case "Kazakh": + case "Ukrainian": + case "Uzbek": + w.push(`and, in keeping with ${his} heritage, a Molot Ordnance Stechkin APS machine pistol`); + break; + case "Austrian": + w.push(`and, in keeping with ${his} heritage, a Steyr TMP machine pistol`); + break; + case "Belgian": + w.push(`and, in keeping with ${his} heritage, a VBR-Belgium PDW machine pistol`); + break; + case "Chinese": + w.push(`and, in keeping with ${his} heritage, a Chongqing Changfeng CF-05 machine pistol`); + break; + case "Czech": + case "Slovak": + w.push(`and, in keeping with ${his} heritage, a CZUB CZ 75 Automatic machine pistol`); + break; + case "German": + w.push(`and, in keeping with ${his} heritage, a H&K VP70 machine pistol`); + break; + case "Hungarian": + w.push(`and, in keeping with ${his} heritage, a FEG KGP-9 machine pistol`); + break; + case "Israeli": + w.push(`and, in keeping with ${his} heritage, an IWI Uzi Pro machine pistol`); + break; + case "Italian": + w.push(`and, in keeping with ${his} heritage, a Beretta 93R machine pistol`); + break; + case "Japanese": + w.push(`and, in keeping with ${his} heritage, a Minebea PM-9 machine pistol`); + break; + case "Mexican": + w.push(`and, in keeping with ${his} heritage, a Trejo Modelo 2 Especial machine pistol`); + break; + case "Peruvian": + w.push(`and, in keeping with ${his} heritage, a SIMA MGP-87 machine pistol`); + break; + case "Polish": + w.push(`and, in keeping with ${his} heritage, a WITU PMM machine pistol`); + break; + case "Romanian": + w.push(`and, in keeping with ${his} heritage, a UMS Pistolul md.98 Dracula machine pistol`); + break; + case "Russian": + w.push(`and, in keeping with ${his} heritage, a KBP OTs-33 Pernach machine pistol`); + break; + case "Swedish": + w.push(`and, in keeping with ${his} heritage, a Saab Bofors Dynamics CBJ-MS machine pistol`); + break; + case "Swiss": + w.push(`and, in keeping with ${his} heritage, a B+T MP9 machine pistol`); + break; + case "Turkish": + w.push(`and, in keeping with ${his} heritage, a TiSAS Zigana F machine pistol`); + break; + default: + w.push(`and a Glock 18 machine pistol`); + } + w.push(`at ${his} side.`); + } + + return w.join(" "); + } +}; diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 8a604f5e2e4f3e08ea0682a3489824f7dcf80a7c..0a582ac37d8a24c7c72a0523f11507c7475bb5d7 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -20,12580 +20,12594 @@ App.Desc.belly = function(slave) { } } - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is swollen beyond any reasonable description,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost under the squirming mass of infants that now completely fills ${his} body. ${He} has been reduced to nothing more than a womb with a few trace remnants of a little ${girl} attached.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that dwarf ${his} body.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - r.push(`stand up`); - } else { - r.push(`get to ${his} feet`); - } - r.push(`and aid ${him} through ${his} daily affairs.`); - } - } else { - r.push(`and ${he} is nothing more than a womb with a ${girl} attached. ${He} is physically unable to keep ${his} boundless middle off the ground for long, if at all.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - r.push(`stand up`); - } else { - r.push(`get to ${his} feet`); - } - r.push(`and aid ${him} through ${his} daily affairs.`); - } - r.push(`${His} extraordinary size greatly limits what ${he} can do and what can be done to ${him}.`); - if (canWalk(slave)) { - r.push(`Surprisingly, ${he} is still capable of moving ${him}self in such a state.`); - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it baffles the mind how ${he} has managed to grow so full.`); - } else { - r.push(`Despite being stretched taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this large.`); - } - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`There is no telling how much further ${his} body could possibly take this pregnancy successfully.`); - if (slave.preg < 30) { - r.push(`Worse still, ${he} isn't even close to full term. It will be a miracle if ${he} manages to complete it intact.`); - } - } else { - r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current size, ${his} pregnancy can be considered healthy.`); - if (slave.preg < 30) { - r.push(`Though ${he} isn't even close to full term. It will be a miracle if ${he} manages to bring ${his} brood into the world in one piece.`); - } - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a barely noticeable curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges just a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } else { - r.push(`${He} is far beyond the recommended limit,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost under the straining mass of the implant that now fills ${his} body. ${He} has been reduced to nothing more than a balloon with a few trace remnants of a little ${girl} attached.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than an obscene over-filled implant with a ${loli} attached. ${He} struggles to not be lost under the straining mass that dwarfs ${his} body.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - r.push(`stand up`); - } else { - r.push(`get to ${his} feet`); - } - r.push(`and aid ${him} through ${his} daily affairs.`); - } - } else { - r.push(`and ${he} is nothing more than an over-filled implant with a ${girl} attached. ${He} is physically unable to keep ${his} boundless middle off the ground for long, if at all.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - r.push(`stand up`); - } else { - r.push(`get to ${his} feet`); - } - r.push(`and aid ${him} through ${his} daily affairs.`); - } - r.push(`${His} extraordinary size greatly limits what ${he} can do and what can be done to ${him}.`); - if (canWalk(slave)) { - r.push(`Surprisingly, ${he} is still capable of moving ${him} self in such a state.`); - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); - } else { - r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin.`); + r.push(belly()); + + if (slave.belly < 1500) { + if (slave.bellySagPreg > 1 || slave.bellySagPreg === -1) { + if (V.arcologies[0].FSRepopulationFocus !== "unset") { + r.push(`While most societies would find ${his} sagging, pregnancy ruined stomach unattractive, your repopulation focused one merely sees ${him} as a breeder between pregnancies.`); } else { - r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it.`); - } - r.push(`It baffles the mind how ${him} and ${his} implant could swell to such a size.`); - if (slave.belly <= (slave.pregAdaptation * 1000)) { - r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current volume, ${he} is physically capable of growing larger.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a barely noticeable curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges just a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } + r.push(`Society finds ${his} pregnancy ruined stomach very unattractive.`); } + } else if (slave.bellySag > 1) { + r.push(`Society finds ${his} ruined stomach very unattractive.`); } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He}`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`is close to bursting,`); - } else { - r.push(`should be nearing ${his} capacity,`); - } - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost under the squirming mass of infants that`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`threaten to rupture ${his} body.`); - } else { - r.push(`fill ${his} body.`); - } - r.push(`${He} has been reduced to nothing more than a womb stretched to its limit.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`a breaking womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that threaten to rupture ${his} body.`); - } else { - r.push(`an overstuffed womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that fill ${his} body.`); - } - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } + if (slave.mpreg === 1 && slave.belly < 100) { + r.push(`${He} has a slight curve to ${his} abdomen, unusual for a male slave.`); + } + + if (V.showClothing === 1 && V.saleDescription === 0) { + if (V.surgeryDescription === 0) { + switch (slave.bellyAccessory) { + case "an extreme corset": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly makes a mockery of ${his} corset; it holds on only with custom lacing and, even then, is more plastered to ${his} back than wrapped around ${his} stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly makes a mockery of ${his} corset; it holds on only with custom lacing and, even then, is more plastered to ${his} back than wrapped around ${his} stomach.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnancy makes a mockery of ${his} corset; despite this, even the light pressure applied to it by the failing lacings of the garment has ${his} packed-tight womb on the brink of rupturing. ${His} brood squirms as much as they possibly can under the pressure.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly makes a mockery of ${his} tearing ${his} corset; the poor thing is on its last fibers.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly makes a mockery of ${his} tearing ${his} corset; the poor thing is on its last fibers.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly is on the brink of rupturing under the remaining pressure of ${his} corset, despite it barely holding together; one or the other has to win out. ${His} brood squirms as much as they possibly can under the pressure.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere`); - } - } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame can keep ${his}`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`straining belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} womb is already at its limit and could do without being slammed against the floor.`); - } else { - r.push(`life brimming belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} occupants are liable to voice their complaints with a hail of kicks.`); - } - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s titanic pregnant belly makes a mockery of ${his} corset, despite still being painfully constricted; one or the other will eventually win out. ${His} brood squirms angrily over the pressure in their already tight confines.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly agonizingly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly agonizingly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly is agonizingly compressed as it threatens to burst from ${his} corset; one or the other has to win out.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } else if (slave.height < 150) { - r.push(`and ${he} is nothing more than`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`a breaking womb with a ${girl} attached. ${He} struggles to remain seen under the squirming mass of infants that threaten to rupture ${his} body.`); - } else { - r.push(`an overstuffed womb with a ${girl} attached. ${He} struggles to remain seen under the squirming mass of infants that fill ${his} body.`); - } - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly painfully strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly painfully strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s massive pregnant belly is agonizingly compressed as it strains ${his} corset; one or the other has to win out.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s giant pregnant belly painfully strains ${his} corset, threatening to either burst it or sacrifice the life within; one or the other has to win out.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } else if (slave.muscles > 90) { - r.push(`and ${his} muscular body`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`barely manages to contain`); - } else { - r.push(`perfectly handles`); - } - r.push(`${his} monolithic belly, though ${he} still can't move with it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s giant pregnant belly is painfully compressed by ${his} corset causing ${him} extreme duress; one or the other has to win out.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 30000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s huge pregnant belly is painfully compressed by ${his} corset causing ${him} duress; one or the other has to win out.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere`); - } - } - } else { - r.push(`and ${he} is nothing more than`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`a breaking womb with a ${girl} attached.`); - } else { - r.push(`an overstuffed womb with a ${girl} attached.`); - } - r.push(`${He} is physically unable to keep ${his} straining belly off the ground.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massive gut is barely compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s huge pregnant belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s hugely swollen belly is tightly compressed by ${his} corset causing it to bulge above and below; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s big pregnant belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this large.`); - } else { - r.push(`Despite being stretched taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`large even the slightest provocation could cause ${him} to burst.`); - } else { - r.push(`large.`); - } - } - if (slave.belly > (slave.pregAdaptation * 1000)) { - if (slave.preg < 30) { - r.push(`Worse still, ${he} isn't even close to full term. It will be a miracle if ${he} manages to complete ${his} pregnancy intact.`); - } - } else { - r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current size, ${his} pregnancy can be considered healthy.`); - if (slave.preg < 30) { - r.push(`Though ${he} isn't even close to full term. It will be a miracle if ${he} manages to bring ${his} brood into the world in one piece.`); - } - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } else { - r.push(`${He}`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`is at ${his} limit,`); - } else { - r.push(`should be nearing ${his} limit,`); - } - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost under the straining mass of the ready-to-rupture implant that`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`threatens to burst out of.`); - } else { - r.push(`thoroughly fills ${his} body.`); - } - r.push(`${He} has been reduced to nothing more than a balloon stretched to its limit.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${loli} attached. ${He} struggles to not be lost under the straining mass that`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`threatens to burst out of ${his} body.`); - } else { - r.push(`fills ${his} body.`); - } - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s giant gut is tightly compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly compressed by ${his} corset causing it to bulge out above and below; one or the other will eventually win out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s pregnant belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s large gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly compressed by ${his} corset causing ${him} distress.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is tightly compressed by ${his} corset causing ${him} distress.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s growing belly is tightly compressed by ${his} corset causing ${him} distress.`); } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby stomach is tightly compressed by ${his} corset, ${his} pudge bulges out of any gap it can find.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName}'s stomach is tightly compressed by ${his} corset causing ${him} some distress.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame can keep ${his}`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`straining`); - } - r.push(`belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} implant is already at its limit and could do without being slammed against the floor.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + break; + case "a corset": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset looks ridiculous on ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. It floats on top of ${his} belly, looking more like the bottom half of a mini coat than the garment it was originally intended to be.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset looks ridiculous on ${his} unfathomable, hyper-swollen, implant-filled belly. It floats on top of ${his} belly, looking more like the bottom half of a mini coat than the garment it was originally intended to be.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s corset looks ridiculous on ${his} unfathomable, hyper-swollen pregnancy. It floats on top of ${his} belly, near useless, bobbling up and down as ${his} innumerable brood kick and squirm.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.height < 150) { - r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${girl} attached. ${He} struggles to remain seen under the straining mass that`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`threatens to burst out of ${his} body.`); - } else { - r.push(`fills ${his} body.`); - } - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset can barely function with ${his} titanic ${slave.inflationType}-filled belly disrupting it. It aggravatingly digs into ${his} already strained stomach.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset can barely function with ${his} titanic implant-filled belly disrupting it. It aggravatingly digs into ${his} already strained stomach.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s corset can barely function with ${his} titanic belly disrupting it. It aggravatingly digs into ${his} already strained stomach, causing ${his} brood to squirm incessantly.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic ${slave.inflationType}-filled belly to hang out.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic implant-filled belly to hang out.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic belly to hang out and squirm freely.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.muscles > 90) { - r.push(`and ${his} muscular body`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`barely manages to contain`); - } else { - r.push(`perfectly handles`); - } - r.push(`${his} monolithic belly, though ${he} still can't move with it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while being dominated by ${his} gigantic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while being dominated by ${his} gigantic implant-filled belly.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while being dominated by ${his} gigantic belly.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while allowing ${his} massive ${slave.inflationType}-filled belly the room it demands.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while allowing ${his} massive implant-filled belly the room it demands.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while allowing ${his} massive belly the room it demands.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else { - r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${girl} attached. ${He} is physically unable to keep ${his}`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`straining`); - } - r.push(`belly off the ground.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s corset strains around ${his} giant ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s corset strains around ${his} giant implant-filled belly.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s corset strains around ${his} giant belly.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly stretches out ${his} corset`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly stretches out ${his} corset`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s giant pregnant belly stretches out ${his} corset.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); - } else { - r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); - } - if (slave.belly <= (slave.pregAdaptation * 1000)) { - r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current volume, ${he} is physically capable of growing larger, even if the implant can't.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is dangerously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost against the squirming mass of infants that make up the bulk of ${his} body. ${He} has been reduced to nothing more than a straining womb.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own quivering mass.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s corset strains around ${his} massive gut.`); + } 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 comfortably bulges out of ${his} corset.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly comfortably bulges out of ${his} corset.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly comfortably bulges out of ${his} corset.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s huge pregnant belly comfortably bulges out of ${his} corset.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } 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 comfortably bulges out of ${his} corset.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s hugely swollen belly comfortably bulges out of ${his} corset.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly comfortably bulges out of ${his} corset.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s big pregnant belly comfortably bulges out of ${his} corset.`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely keeps ${his} titanic belly off the ground; with considerable effort, of course.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s giant gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant 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 comfortably bulges out of ${his} corset.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly comfortably hangs out of ${his} corset.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly comfortably bulges out of ${his} corset.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s pregnant belly comfortably bulges out of ${his} corset.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s large gut hangs out the hole in ${his} corset designed to accommodate a pregnant 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 comfortably rounds out ${his} corset.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is lightly compressed by ${his} corset making ${him} uncomfortable.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly comfortably rounds out ${his} corset.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s growing belly comfortably rounds out ${his} corset.`); } + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby stomach is compressed by ${his} corset, ${his} pudge bulges out above and below it.`); + } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + r.push(`${slave.slaveName} feels minor discomfort over the light pressure on ${his} sensitive stomach.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + break; + case "a medium empathy belly": + if (slave.weight > 160) { + r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} giant gut.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} huge gut.`); } - } - } else if (slave.height < 150) { - r.push(`and ${he} is nothing more than a womb with a ${girl} attached. ${He} has to be careful not to get crushed under ${his} own quivering mass.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + break; + case "a small empathy belly": + if (slave.weight > 160) { + r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} giant gut.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} huge gut.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} large gut.`); + } + break; + case "a support band": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is cradled by an equally oversized support band`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is cradled by an equally oversized support band`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnancy is cradled by an equally oversized support band`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`doing its best to alleviate the strain on ${his} body.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly strains against ${his} enormous support band`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s monolithic implant-filled belly strains against ${his} enormous support band`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly strains against ${his} enormous support band`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } else if (slave.muscles > 90) { - r.push(`and ${his} muscular body barely allows ${him} to manage ${his} titanic belly.`); - } else { - r.push(`and ${he} is nothing more than a womb with a ${girl} attached. While ${he} can barely heft ${his} titanic belly off the floor, it takes a considerable amount of effort to do so and quickly comes to rest back where it started.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + r.push(`as it struggles to hold ${his} body together.`); + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is cradled by ${his} enormous support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s titanic implant-filled belly is cradled by ${his} enormous support band,`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s titanic pregnant belly is cradled by ${his} enormous support band,`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`alleviating some of the strain of carrying it and helping to keep things in place.`); + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly strains against ${his} extra large support band`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly strains against ${his} extra large support band`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly strains against ${his} extra large support band`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, ${his} belly visibly bulges and squirms from all the babies writhing within ${him}. ${His} womb is so full you can see the babies forced up against ${his} uterus,`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`${he} is at risk of rupturing should ${he} grow larger.`); - } else { - r.push(`though ${his} body shows little sign of being troubled by this.`); - } - } else { - r.push(`Despite being stretched taut, ${his} belly visibly bulges and squirms from all the babies writhing within ${him}. ${His} womb is so full you can see the babies forced up against ${his} uterus,`); - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`${he} is at risk of rupturing should ${he} grow larger.`); - } else { - r.push(`though ${his} body shows little sign of being troubled by this.`); - } - } - if (slave.preg < 30) { - r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } else { - r.push(`${He} looks ready to pop,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is lost against the greatly overfilled implant that makes up the bulk of ${his} body. ${He} has been reduced to nothing more than a straining balloon.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own taut mass.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + r.push(`as it dutifully alleviates the stress on ${his} body.`); + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is cradled by ${his} extra large support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s massive implant-filled belly is cradled by ${his} extra large support band,`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s massive pregnant belly is cradled by ${his} extra large support band,`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`alleviating much of the strain of carrying it.`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is cradled by ${his} extra large support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly is cradled by ${his} extra large support band,`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s giant pregnant belly is cradled by ${his} extra large support band,`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely keeps ${his} titanic belly off the ground; with considerable effort, of course.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + r.push(`alleviating much of the strain of carrying it.`); + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains against ${his} support band`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s giant implant-filled belly strains against ${his} support band`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s giant pregnant belly strains against ${his} support band`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`as it dutifully alleviates the stress on ${his} body.`); + } else if (slave.belly >= 30000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is cradled by ${his} support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is cradled by ${his} support band,`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s huge pregnant belly is cradled by ${his} support band,`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.height < 150) { - r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${girl} attached. ${He} has to be careful not to get crushed under ${his} own taut mass.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + r.push(`alleviating much of the strain of carrying it.`); + } else if (slave.weight > 190) { + r.push(`${slave.slaveName}'s massive gut is cradled by ${his} support band, giving it a rather smooth appearance and taking some of the weight off ${his} front.`); + } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is cradled by ${his} support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s huge implant-filled belly is cradled by ${his} support band,`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s huge pregnant belly is cradled by ${his} support band,`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`reducing the strain on ${his} back.`); + } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s hugely swollen belly is cradled by ${his} support band,`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s big implant-filled belly is cradled by ${his} support band,`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s big pregnant belly is cradled by ${his} support band,`); } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.muscles > 90) { - r.push(`and ${his} muscular body barely allows ${him} to manage ${his} titanic belly.`); - } else { - r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${girl} attached. While ${he} can barely heft ${his} titanic belly off the floor, it takes a considerable amount of effort to do so and quickly comes to rest back where it started.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + r.push(`reducing the strain on ${his} back.`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s giant gut is cradled by ${his} support band, giving it a rather smooth appearance.`); + } else if (slave.weight > 130) { + r.push(`${slave.slaveName}'s huge gut is cradled by ${his} support band, giving it a rather smooth appearance.`); + } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is cradled by ${his} support band.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-filled belly is cradled by ${his} support band.`); } else { - r.push(`stand up.`); + r.push(`${slave.slaveName}'s pregnant belly is cradled by ${his} support band.`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`It doesn't accomplish much, however.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s large gut is cradled by ${his} support band, giving it a rather smooth appearance.`); + } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is cradled by ${his} support band.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s implant-rounded belly is cradled by ${his} support band.`); } else { - r.push(`get to ${his} feet.`); + r.push(`${slave.slaveName}'s growing belly is cradled by ${his} support band.`); } + r.push(`It doesn't accomplish much, however.`); + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby stomach is cradled by ${his} support band, halting any jiggling and giving it a smooth appearance.`); + } else { + r.push(`${slave.slaveName}'s support band rests around ${his} stomach, accomplishing little.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents.`); - } else { - r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents.`); - } - if (slave.belly > (slave.pregAdaptation * 1000)) { - r.push(`Both ${him} and ${his} implant are at risk of rupturing should either be filled any more.`); - } else { - r.push(`While ${his} implant may be at risk of rupturing, ${his} body shows no signs of struggling to support it.`); } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + + r.push(clothing()); + + if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") { + if (slave.weight > 190) { + r.push(`Your sleek, slim society is absolutely appalled by ${his} horrendously bloated body.`); + } else if (slave.weight > 160) { + r.push(`Your sleek, slim society finds ${his} disgustingly bloated body repulsive.`); + } else if (slave.weight > 130) { + r.push(`Your sleek, slim society finds ${his} hugely bloated body disgusting.`); + } else if (slave.weight > 95) { + r.push(`Your sleek, slim society finds ${his} bloated body disgusting.`); + } else if (slave.weight > 30) { + r.push(`Your sleek, slim society finds ${his} flabby body unsightly.`); } } - } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is immensely pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own mass.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} youthful figure is grotesquely bloated by ${his} pregnancy. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + if (V.arcologies[0].FSRepopulationFocus !== "unset") { + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly near the pinnacle of fashion despite ${his} inability to have children.`); + } else if (slave.bellyImplant > 0) { + r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen, implant-filled belly near the pinnacle of fashion despite ${his} inability to have children.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen pregnant belly the perfect realization of the fashionable ideal.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`Your breeding focused society finds ${his} monolithic ${slave.inflationType}-filled belly highly fashionable despite ${his} inability to have children.`); + } else if (slave.bellyImplant > 0) { + r.push(`Your breeding focused society finds ${his} monolithic implant-filled belly highly fashionable despite ${his} inability to have children.`); + } else { + r.push(`Your breeding focused society finds ${his} monolithic pregnant belly near to the perfect realization of the fashionable ideal.`); } + } else if (slave.bellyPreg >= 600000) { + r.push(`Your breeding focused society finds ${his} titanic bulging pregnant belly the epitome of fashion.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`Your breeding focused society finds ${his} massive pregnant belly extremely fashionable.`); + } else if (slave.bellyPreg >= 15000) { + r.push(`Your breeding focused society finds ${his} huge pregnant belly very fashionable.`); + } else if (slave.bellyPreg >= 10000) { + r.push(`Your breeding focused society finds ${his} big pregnant belly very fashionable.`); + } else if (slave.bellyPreg >= 5000) { + r.push(`Your breeding focused society finds ${his} pregnant belly fashionable.`); + } else if (slave.bellyPreg >= 1500) { + r.push(`Your breeding focused society finds a developing pregnancy very fashionable.`); } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely keeps ${his} gigantic belly off the ground; with considerable effort, of course.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + } else if (V.arcologies[0].FSRepopulationFocusPregPolicy === 1 && slave.bellyPreg >= 1500) { + r.push(`Thanks to your trendsetting policies, society finds ${his} pregnant belly fashionable.`); + } else if (V.arcologies[0].FSRestart !== "unset") { + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly as equally unfathomably degenerate.`); + } else if (slave.bellyImplant > 0) { + r.push(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen, implant-filled belly as equally unfathomably degenerate.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen pregnant belly the perfect antithesis of the fashionable ideal.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`Your eugenics obsessed society sees ${his} monolithic ${slave.inflationType}-filled belly as absolutely degenerate.`); + } else if (slave.bellyImplant > 0) { + r.push(`Your eugenics obsessed society sees ${his} monolithic implant-filled belly as absolutely degenerate.`); + } else { + r.push(`Your eugenics obsessed society sees ${his} monolithic pregnant belly as a near perfect antithesis of the fashionable ideal.`); } - } - } else if (slave.height < 150) { - r.push(`and ${his} small figure is utterly dwarfed by ${his} pregnancy. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + } else if (slave.bellyPreg >= 600000) { + r.push(`Your eugenics obsessed society sees ${his} titanic bulging pregnant belly as the epitome of degeneracy.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`Your eugenics obsessed society views ${his} massive pregnant belly as complete degeneracy.`); + } else if (slave.bellyPreg >= 15000) { + if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { + r.push(`Your eugenics obsessed society is pleased that ${he} is ripe with your child.`); + } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { + r.push(`Your eugenics obsessed society is pleased that ${he} is ripe with an Elite child.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`Your eugenics obsessed society finds ${his} huge pregnant belly absolutely disgusting.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.bellyPreg >= 10000) { + if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { + r.push(`Your eugenics obsessed society is pleased that ${he} is heavy with your child.`); + } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { + r.push(`Your eugenics obsessed society is pleased that ${he} is heavy with an Elite child.`); + } else { + r.push(`Your eugenics obsessed society finds ${his} big pregnant belly absolutely disgusting.`); } - } - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body barely allows ${him} to manage ${his} gigantic belly.`); - } else { - r.push(`and ${he} is dwarfed by ${his} pregnancy. While ${he} can keep barely ${his} gigantic belly off the floor, it takes a considerable amount of effort to do so.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + } else if (slave.bellyPreg >= 5000) { + if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { + r.push(`Your eugenics obsessed society is pleased that ${he} is swollen with your child.`); + } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { + r.push(`Your eugenics obsessed society is pleased that ${he} is swollen with an Elite child.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`Your eugenics obsessed society finds ${his} pregnant belly disgusting.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.bellyPreg >= 1500) { + if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { + r.push(`Your eugenics obsessed society is pleased that ${he} is swelling with your child.`); + } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { + r.push(`Your eugenics obsessed society is pleased that ${he} is swelling with an Elite child.`); + } else { + r.push(`Your eugenics obsessed society finds ${his} developing pregnancy insulting.`); } } } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat. ${His} pregnancy is covered in an ever thinning layer of fat, save for the bulging upper portion where ${his} fat is thinnest. In that, rather large, area, you can just make out the many babies bulging ${his} stomach.`); - } else { - r.push(`${He} is so pregnant you can just make out the many babies bulging ${his} stomach.`); - } - if (slave.preg < 30) { - r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); + } else { + r.push(`${slave.slaveName}'s belly is bare and ready for surgery.`); + } + // closes surgery description + } + // closes show clothing + + if (slave.fuckdoll === 0) { + if (setup.fakeBellies.includes(slave.bellyAccessory)) { + switch (slave.bellyAccessory) { + case "a huge empathy belly": + r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a full-term pregnant woman carrying twins.`); + break; + case "a large empathy belly": + r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a full-term pregnant woman.`); + break; + case "a medium empathy belly": + r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a pregnant woman in ${his} second trimester.`); + break; + case "a small empathy belly": + r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a pregnant woman in ${his} first trimester.`); + break; } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (V.showBodyMods === 1) { + if (slave.navelPiercing === 1) { + r.push(`${His} fake navel bears a simple stud.`); + } else if (slave.navelPiercing === 2) { + r.push(`${His} fake navel is pierced with a big ring.`); + if (slave.clothes === "slutty jewelry") { + r.push(`It has a length of gilded chain dangling from it.`); + } else { + r.push(`It has a short length of chain dangling from it.`); + } } } } else { - r.push(`${He} looks immensely pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is nothing more than an overfilled implant with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own mass.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} youthful figure is grotesquely bloated by ${his} overfilled implant. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + if (V.showBodyMods === 1) { + if (slave.navelPiercing === 1) { + r.push(`${His} navel bears a simple`); + if (slave.weight > 130) { + r.push(`stud, though it has since vanished into ${his} soft folds.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`stud.`); } - } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely keeps ${his} gigantic belly off the ground; with considerable effort, of course.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires multiple slaves to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + } else if (slave.navelPiercing === 2) { + r.push(`${His} navel is pierced with a big`); + if (slave.weight > 130) { + r.push(`ring that just managed to extend out of the fat roll covering ${his} navel.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`ring.`); } - } - } else if (slave.height < 150) { - r.push(`and ${his} small figure is utterly dwarfed by ${his} overfilled implant. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); + if (slave.belly >= 10000) { + r.push(`It has a heavy bell dangling from it.`); + if (slave.bellyPreg >= 10000) { + r.push(`It sounds whenever ${his} bab`); + if (slave.pregType > 1) { + r.push(`ies`); + if (slave.pregType > 10) { + r.push(`kick, which is often`); + } else { + r.push(`kick.`); + } + } else { + r.push(`y kicks.`); + } } + } else if (slave.clothes === "slutty jewelry") { + r.push(`It has a length of gilded chain dangling from it.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`It has a short length of chain dangling from it.`); } } - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body barely allows ${him} to manage ${his} gigantic belly.`); - } else { - r.push(`and ${he} is dwarfed by ${his} overfilled implant. While ${he} can keep barely ${his} gigantic belly off the floor, it takes a considerable amount of effort to do so.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat. ${His} middle is covered in an ever thinning layer of fat, save for the bulging upper portion where ${his} fat is thinnest. In that, rather large, area, you can just make out the implant bulging ${his} stomach.`); - } else { - r.push(`${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is massively pregnant, dwarfing any normal pregnancy,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} pregnancy, all ${he} can do is lean against it.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); + if (slave.bellyTat !== 0) { + if (slave.belly >= 300000) { + if (slave.bellyTat === "a heart") { + r.push(`A heart is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } + } else if (slave.bellyTat === "a star") { + r.push(`A star is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } + } else if (slave.bellyTat === "a butterfly") { + r.push(`A butterfly is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); + } else if (slave.belly >= 150000) { + if (slave.bellyTat === "a heart") { + r.push(`A heart is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } + } else if (slave.bellyTat === "a star") { + r.push(`A star is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } + } else if (slave.bellyTat === "a butterfly") { + r.push(`A butterfly is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy.`); + } else { + r.push(`stomach.`); + } } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.weight > 190 && slave.belly < 150000) { + r.push(`${He} has a tattoo around ${his} navel, but it is impossible to tell of what due to ${his} expansive fat rolls.`); + } else if (slave.belly >= 10000) { + if (slave.bellyTat === "a heart") { + r.push(`A heart is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); + } else if (slave.bellyTat === "a star") { + r.push(`A star is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); + } else if (slave.bellyTat === "a butterfly") { + r.push(`A butterfly is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); + } + } else if (slave.belly >= 5000 || slave.weight <= 190) { + r.push(`${He} has a barely recognizable tattoo around ${his} navel, it should reveal itself fully once ${he} is a little bigger.`); + } else if (slave.belly >= 1500) { + r.push(`${He} has an unrecognizable tattoo around ${his} navel, it has stretched slightly along with ${his} rounded middle.`); + } else { + r.push(`${He} has an unrecognizable tattoo scrunched around ${his} navel.`); } } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame keeps ${his} massive belly off the ground.`); - } else if (slave.height < 150) { - r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + if (slave.birthsTat > 0) { + if (slave.birthsTat > 1) { + r.push(`${He} has a series of ${slave.birthsTat} baby-shaped tattoos adorning ${his} stomach; one for each successful`); + if (slave.pregKnown === 1) { + r.push(`pregnancy and a temporary one for ${his} current pregnancy.`); } else { - r.push(`stand up.`); + r.push(`pregnancy.`); } } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`${He} has a single baby-shaped`); + if (slave.pregKnown === 1) { + r.push(`tattoo, and one temporary one,`); } else { - r.push(`get to ${his} feet.`); + r.push(`tattoo`); } + r.push(`adorning ${his} stomach.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } + } else if (slave.birthsTat === 0 && slave.abortionTat === -1 && slave.pregKnown === 1) { + r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`); } - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly normally with effort.`); - } else { - r.push(`and ${he} is more belly than ${girl}.While ${he} can keep ${his} massive belly from touching the floor, it takes a lot of effort to do so.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + if (slave.abortionTat > 0) { + if (slave.abortionTat > 1) { + r.push(`${He} has a series of ${slave.abortionTat} crossed out baby-shaped`); + if (slave.pregKnown === 1) { + r.push(`tattoos, and one uncrossed one,`); } else { - r.push(`stand up.`); + r.push(`tattoos`); } + r.push(`adorning ${his} stomach; one for each pregnancy ${he}'s failed to complete.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`${He} has a single crossed out, baby-shaped`); + if (slave.pregKnown === 1) { + r.push(`tattoo, and one uncrossed one,`); } else { - r.push(`get to ${his} feet.`); + r.push(`tattoo`); } + r.push(`adorning ${his} stomach.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); - } + } else if (slave.abortionTat === 0 && slave.birthsTat === -1 && slave.pregKnown === 1) { + r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`); } } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched considerably, so much so ${his} folds are pulled flat. ${His} pregnancy is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); - } - if (slave.preg < 30) { - r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.breedingMark === 1) { + if (V.propOutcome === 1) { + r.push(`The Societal Elites' mark designating ${him} as a breeder is prominently displayed across ${his} lower belly, beneath ${his} navel.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`An alluring tattoo is prominently displayed across ${his} lower belly, beneath ${his} navel, urging ${him} to be bred.`); } } - } else { - r.push(`${He} looks so massively pregnant that ${he} dwarfs any normal pregnancy,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} implant, all ${he} can do is lean against it.`); - if (V.saleDescription === 0) { - r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + if (heavyBelly === 1) { + if (canWalk(slave)) { + r.push(`${His}`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancy`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`stomach`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`is so massive that it is difficult for ${him} to move.`); + if (slave.muscles > 95) { + r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support it.`); + } else if (slave.muscles > 30) { + r.push(`${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms under ${his} belly to help take its weight.`); + } else if (slave.muscles > 5) { + r.push(`${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight.`); + } else { + r.push(`${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can.`); } + } else if (slave.belly >= 750000) { + r.push(`It dwarfs ${his} torso, making ${him} a vestigial accessory to ${his} belly.`); + } else { + r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`); } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame keeps ${his} massive belly off the ground.`); - } else if (slave.height < 150) { - r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); + if (slave.assignment !== "labor in the production line" && slave.assignment !== "be confined in the arcade" && (slave.assignment !== "work in the dairy" || V.dairyRestraintsSetting < 2) && slave.belly >= 300000) { + if (V.pregAccessibility === 1) { + r.push(`Fortunately for ${him}, the penthouse is adapted for daily life with a`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnant`); } + r.push(`belly`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } - } - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly normally with effort.`); - } else { - r.push(`and ${he} is more belly than ${girl}.While ${he} can keep ${his} massive belly from touching the floor, it takes a lot of effort to do so.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + if (V.saleDescription === 1) { + r.push(`${He}'ll have`); } else { - r.push(`stand up.`); + r.push(`${He} has`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`trouble living in your penthouse, which is not designed for ${girl}s with`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnancies`); } else { - r.push(`get to ${his} feet.`); + r.push(`bellies`); } } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); - } + r.push(`wider than a standard doorway.`); } } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched considerably, so much so ${his} folds are pulled flat. ${His} middle is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } else { + if (slave.navelPiercing > 0 && V.showBodyMods === 1) { + if (slave.belly >= 10000) { + if (slave.navelPiercing === 1) { + r.push(`${His} popped navel bears a simple stud.`); + } else if (slave.navelPiercing === 2) { + r.push(`${His} popped navel is pierced with a big ring.`); } + r.push(`It's eye-catching, since most of ${his} piercings are hidden by the suit.`); + } else { + r.push(`${His} navel piercing runs through the suit's material.`); } } - } else if (slave.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is massively pregnant, beyond any typical pregnancy,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} pregnancy, and try as ${he} might ${he} cannot even drag the oversized thing.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } - } + if (heavyBelly === 1) { + r.push(`The difficulties of being enormously`); + if (slave.bellyPreg >= 3000) { + r.push(`pregnant`); + } else { + r.push(`swollen`); + } + r.push(`are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); + } + } + + function belly() { + const r = []; + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is swollen beyond any reasonable description,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost under the squirming mass of infants that now completely fills ${his} body. ${He} has been reduced to nothing more than a womb with a few trace remnants of a little ${girl} attached.`); if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); } - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that dwarf ${his} body.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + r.push(`stand up`); } else { - r.push(`stand up.`); + r.push(`get to ${his} feet`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`and aid ${him} through ${his} daily affairs.`); + } + } else { + r.push(`and ${he} is nothing more than a womb with a ${girl} attached. ${He} is physically unable to keep ${his} boundless middle off the ground for long, if at all.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + r.push(`stand up`); } else { - r.push(`get to ${his} feet.`); + r.push(`get to ${his} feet`); } + r.push(`and aid ${him} through ${his} daily affairs.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + r.push(`${His} extraordinary size greatly limits what ${he} can do and what can be done to ${him}.`); + if (canWalk(slave)) { + r.push(`Surprisingly, ${he} is still capable of moving ${him}self in such a state.`); } } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely bears ${his} oversized, drum-taut belly.`); - } else if (slave.height < 150) { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly without too much trouble.`); - } else { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched considerably; ${his} folds are nearly pulled flat from the strain. ${His} pregnancy is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); - } - if (slave.preg < slave.pregData.normalBirth / 1.33) { - r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); - } else if (slave.preg > slave.pregData.normalBirth * 1.05) { - if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 4) { - r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 5) { - r.push(`${His} womb contains a quintet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 6) { - r.push(`${His} womb contains a sextet of oversized babies. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 7) { - r.push(`${His} womb contains a septet of oversized babies. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 8) { - r.push(`${His} womb contains an octet of oversized babies. There is little chance of ${him} giving birth to them.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it baffles the mind how ${he} has managed to grow so full.`); + } else { + r.push(`Despite being stretched taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this large.`); } - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`There is no telling how much further ${his} body could possibly take this pregnancy successfully.`); + if (slave.preg < 30) { + r.push(`Worse still, ${he} isn't even close to full term. It will be a miracle if ${he} manages to complete it intact.`); + } } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current size, ${his} pregnancy can be considered healthy.`); + if (slave.preg < 30) { + r.push(`Though ${he} isn't even close to full term. It will be a miracle if ${he} manages to bring ${his} brood into the world in one piece.`); + } } - } - } else { - r.push(`${He} looks massively pregnant, beyond any typical pregnancy,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} implant, and try as ${he} might ${he} cannot even drag the oversized thing.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); - } else { - r.push(`stand up.`); - } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a barely noticeable curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); - } + r.push(`${His} stomach bulges just a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); } + } + } else { + r.push(`${He} is far beyond the recommended limit,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost under the straining mass of the implant that now fills ${his} body. ${He} has been reduced to nothing more than a balloon with a few trace remnants of a little ${girl} attached.`); if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); } - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than an obscene over-filled implant with a ${loli} attached. ${He} struggles to not be lost under the straining mass that dwarfs ${his} body.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + r.push(`stand up`); } else { - r.push(`stand up.`); + r.push(`get to ${his} feet`); } - } else { - if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`and aid ${him} through ${his} daily affairs.`); + } + } else { + r.push(`and ${he} is nothing more than an over-filled implant with a ${girl} attached. ${He} is physically unable to keep ${his} boundless middle off the ground for long, if at all.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + r.push(`stand up`); } else { - r.push(`get to ${his} feet.`); + r.push(`get to ${his} feet`); } + r.push(`and aid ${him} through ${his} daily affairs.`); } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + r.push(`${His} extraordinary size greatly limits what ${he} can do and what can be done to ${him}.`); + if (canWalk(slave)) { + r.push(`Surprisingly, ${he} is still capable of moving ${him} self in such a state.`); } } - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely bears ${his} oversized, drum-taut belly.`); - } else if (slave.height < 150) { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly without too much trouble.`); - } else { - r.push(`and ${he} can barely function with ${his} oversized belly.`); - } - if (slave.weight > 190) { - r.push(`${His} massively fat belly is stretched considerably; ${his} folds are nearly pulled flat from the strain. ${His} middle is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); + } else { + r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); + } + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it.`); + } + r.push(`It baffles the mind how ${him} and ${his} implant could swell to such a size.`); + if (slave.belly <= (slave.pregAdaptation * 1000)) { + r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current volume, ${he} is physically capable of growing larger.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a barely noticeable curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges just a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } - } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is massively pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} giant belly is as big as ${he} is.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He}`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`is close to bursting,`); + } else { + r.push(`should be nearing ${his} capacity,`); + } + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost under the squirming mass of infants that`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`threaten to rupture ${his} body.`); + } else { + r.push(`fill ${his} body.`); + } + r.push(`${He} has been reduced to nothing more than a womb stretched to its limit.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`a breaking womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that threaten to rupture ${his} body.`); + } else { + r.push(`an overstuffed womb with a ${loli} attached. ${He} struggles to not be lost under the squirming mass of infants that fill ${his} body.`); + } + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } } else { - r.push(`stand up.`); + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } } - } else { if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); - } else { - r.push(`get to ${his} feet.`); + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere`); } } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame can keep ${his}`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`straining belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} womb is already at its limit and could do without being slammed against the floor.`); + } else { + r.push(`life brimming belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} occupants are liable to voice their complaints with a hail of kicks.`); } - } - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} giant belly is nearly as big as ${he} is.`); - if (hasAnyNaturalLegs(slave)) { - r.push(`${He} requires assistance to`); - if (!hasBothLegs(slave)) { - if (V.saleDescription === 0) { - r.push(`stand up,`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } } else { - r.push(`stand up.`); + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } } - } else { if (V.saleDescription === 0) { - r.push(`get to ${his} feet,`); + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${he} is nothing more than`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`a breaking womb with a ${girl} attached. ${He} struggles to remain seen under the squirming mass of infants that threaten to rupture ${his} body.`); + } else { + r.push(`an overstuffed womb with a ${girl} attached. ${He} struggles to remain seen under the squirming mass of infants that fill ${his} body.`); + } + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } } else { - r.push(`get to ${his} feet.`); + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); } } - if (V.saleDescription === 0) { - r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } else if (slave.muscles > 90) { + r.push(`and ${his} muscular body`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`barely manages to contain`); + } else { + r.push(`perfectly handles`); + } + r.push(`${his} monolithic belly, though ${he} still can't move with it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere`); + } } - } - } else if (slave.weight > 190) { - r.push(`and ${his} big fat belly is absolutely enormous when coupled with ${his} filled womb.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} overfull belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} giant belly looks absolutely huge on ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`but ${his} strong frame bears ${his} hefty belly well.`); - } else { - r.push(`and ${his} hugely distended belly juts far out from ${his} front and widely from ${his} sides.`); - } - if (slave.preg < 40) { - r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with octuplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 4) { - r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 5) { - r.push(`${His} womb contains a quintet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 6) { - r.push(`${His} womb contains a sextet of oversized babies. There is little chance of ${him} giving birth to them.`); - } else if (slave.pregType === 7) { - r.push(`${His} womb contains a septet of oversized babies. There is little to no chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); - } - } - } else { - r.push(`${He} looks full term with octuplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} giant belly is as big as ${he} is.`); - if (hasAnyLegs(slave)) { - r.push(`${He} requires assistance to get to ${his}`); - if (V.saleDescription === 0) { - r.push(`feet, and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere`); + r.push(`and ${he} is nothing more than`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`a breaking womb with a ${girl} attached.`); } else { - r.push(`feet.`); + r.push(`an overstuffed womb with a ${girl} attached.`); + } + r.push(`${He} is physically unable to keep ${his} straining belly off the ground.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } } } - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} giant belly is nearly as big as ${he} is.`); - if (hasAnyLegs(slave)) { - r.push(`${He} requires assistance to get to ${his}`); - if (V.saleDescription === 0) { - r.push(`feet, and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this large.`); + } else { + r.push(`Despite being stretched taut, you can clearly see the grotesque figures of the infants forced against ${his} uterine walls by their siblings. ${His} womb is so cramped, they can barely squirm at all under the pressure and it is a wonder ${he} has managed to grow this`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`large even the slightest provocation could cause ${him} to burst.`); } else { - r.push(`feet.`); + r.push(`large.`); } } - } else if (slave.weight > 190) { - r.push(`and ${his} big fat belly is absolutely enormous when coupled with ${his} filled implant.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} overfull belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} giant belly looks absolutely huge on ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`but ${his} strong frame bears ${his} hefty belly well.`); - } else { - r.push(`and ${his} hugely distended belly juts far out from ${his} front and widely from ${his} sides.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + if (slave.preg < 30) { + r.push(`Worse still, ${he} isn't even close to full term. It will be a miracle if ${he} manages to complete ${his} pregnancy intact.`); + } } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current size, ${his} pregnancy can be considered healthy.`); + if (slave.preg < 30) { + r.push(`Though ${he} isn't even close to full term. It will be a miracle if ${he} manages to bring ${his} brood into the world in one piece.`); + } } - } - } - } else if (slave.belly >= 105000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 40) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than seven.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with septuplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 4) { - r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 5) { - r.push(`${His} womb contains a quintet of massive unborn children. There is little chance of ${him} giving birth to them.`); - } else if (slave.pregType === 6) { - r.push(`${His} womb contains a sextet of oversized babies. There is little to no chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - } - } else { - r.push(`${He} looks full term with septuplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + r.push(`${He}`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`is at ${his} limit,`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`should be nearing ${his} limit,`); } - } - } - } else if (slave.belly >= 90000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 40) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than six.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with sextuplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 4) { - r.push(`${His} womb contains a quartet of massive unborn children. There is little chance of ${him} giving birth to them.`); - } else if (slave.pregType === 5) { - r.push(`${His} womb contains a quintet of oversized babies. There is little to no chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost under the straining mass of the ready-to-rupture implant that`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`threatens to burst out of.`); + } else { + r.push(`thoroughly fills ${his} body.`); + } + r.push(`${He} has been reduced to nothing more than a balloon stretched to its limit.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${loli} attached. ${He} struggles to not be lost under the straining mass that`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`threatens to burst out of ${his} body.`); + } else { + r.push(`fills ${his} body.`); + } + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame can keep ${his}`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`straining`); + } + r.push(`belly off the ground; but only for a moment. ${He} opts to not try this often as ${his} implant is already at its limit and could do without being slammed against the floor.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${girl} attached. ${He} struggles to remain seen under the straining mass that`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`threatens to burst out of ${his} body.`); + } else { + r.push(`fills ${his} body.`); + } + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 90) { + r.push(`and ${his} muscular body`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`barely manages to contain`); + } else { + r.push(`perfectly handles`); + } + r.push(`${his} monolithic belly, though ${he} still can't move with it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`and ${he} is nothing more than a ready-to-rupture implant with a ${girl} attached. ${He} is physically unable to keep ${his}`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`straining`); + } + r.push(`belly off the ground.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } } - } - } else { - r.push(`${He} looks full term with sextuplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both ${him} and ${his} implant have managed to hold together this long.`); } - } - } - } else if (slave.belly >= 75000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 40) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than five.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with quintuplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of massive unborn children. There is little chance of ${him} giving birth to them.`); - } else if (slave.pregType === 4) { - r.push(`${His} womb contains a quartet of oversized babies. There is little to no chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (slave.belly <= (slave.pregAdaptation * 1000)) { + r.push(`Unbelievably, ${he} seems unshaken by ${his} obscene gravidity; ${his} body is so adapted to carrying children that, even at ${his} current volume, ${he} is physically capable of growing larger, even if the implant can't.`); } - } - } else { - r.push(`${He} looks full term with quintuplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } - } - } else if (slave.belly >= 60000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 36) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than four.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with quadruplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of massive unborn children. There is little to no chance of ${him} giving birth to them.`); - } else if (slave.pregType === 3) { - r.push(`${His} womb contains a trio of oversized babies. There is little chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is dangerously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost against the squirming mass of infants that make up the bulk of ${his} body. ${He} has been reduced to nothing more than a straining womb.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own quivering mass.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely keeps ${his} titanic belly off the ground; with considerable effort, of course.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${he} is nothing more than a womb with a ${girl} attached. ${He} has to be careful not to get crushed under ${his} own quivering mass.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 90) { + r.push(`and ${his} muscular body barely allows ${him} to manage ${his} titanic belly.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`and ${he} is nothing more than a womb with a ${girl} attached. While ${he} can barely heft ${his} titanic belly off the floor, it takes a considerable amount of effort to do so and quickly comes to rest back where it started.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } } - } - } else { - r.push(`${He} looks full term with quadruplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. Despite being so taut, ${his} belly visibly bulges and squirms from all the babies writhing within ${him}. ${His} womb is so full you can see the babies forced up against ${his} uterus,`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`${he} is at risk of rupturing should ${he} grow larger.`); + } else { + r.push(`though ${his} body shows little sign of being troubled by this.`); + } } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`Despite being stretched taut, ${his} belly visibly bulges and squirms from all the babies writhing within ${him}. ${His} womb is so full you can see the babies forced up against ${his} uterus,`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`${he} is at risk of rupturing should ${he} grow larger.`); + } else { + r.push(`though ${his} body shows little sign of being troubled by this.`); + } } - } - } - } else if (slave.belly >= 45000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 35) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than three.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with triplets.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive unborn child. There is little to no chance of ${him} giving birth to it.`); - } else if (slave.pregType === 2) { - r.push(`${His} womb contains a pair of oversized babies. There is little chance of ${him} giving birth to them.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (slave.preg < 30) { + r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); } - } - } else { - r.push(`${He} looks full term with triplets,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - } - } - } else if (slave.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 33) { - r.push(`Given how far along ${he} is, ${he} is clearly having more than two.`); - } else if (slave.preg < 42) { - r.push(`${He} is clearly full-term with twins.`); - } else if (slave.pregType === 1) { - r.push(`${His} womb contains one single, massive child. There is little chance of ${him} giving birth to it.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); - } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} looks ready to pop,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is lost against the greatly overfilled implant that makes up the bulk of ${his} body. ${He} has been reduced to nothing more than a straining balloon.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own taut mass.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely keeps ${his} titanic belly off the ground; with considerable effort, of course.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${girl} attached. ${He} has to be careful not to get crushed under ${his} own taut mass.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 90) { + r.push(`and ${his} muscular body barely allows ${him} to manage ${his} titanic belly.`); + } else { + r.push(`and ${he} is nothing more than a greatly overfilled implant with a ${girl} attached. While ${he} can barely heft ${his} titanic belly off the floor, it takes a considerable amount of effort to do so and quickly comes to rest back where it started.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } } - } - } else { - r.push(`${He} looks full term with twins,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat and ${his} softness, firm. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so full, not one motion can be seen in its contents.`); } - } - } - } else if (slave.belly >= 15000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } else if (slave.bellyPreg > 0) { - r.push(`${He} is enormously pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.preg < 33) { - r.push(`Given how far along ${he} is, ${he} is clearly having multiples.`); - } else { - r.push(`${He} is clearly full-term.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.belly > (slave.pregAdaptation * 1000)) { + r.push(`Both ${him} and ${his} implant are at risk of rupturing should either be filled any more.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`While ${his} implant may be at risk of rupturing, ${his} body shows no signs of struggling to support it.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } - } else { - r.push(`${He} looks hugely pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 190) { - r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); - } else { - r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is immensely pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is nothing more than a womb with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own mass.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} youthful figure is grotesquely bloated by ${his} pregnancy. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely keeps ${his} gigantic belly off the ground; with considerable effort, of course.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${his} small figure is utterly dwarfed by ${his} pregnancy. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body barely allows ${him} to manage ${his} gigantic belly.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`and ${he} is dwarfed by ${his} pregnancy. While ${he} can keep barely ${his} gigantic belly off the floor, it takes a considerable amount of effort to do so.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } } - } - } - } else if (slave.belly >= 10000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${His} middle is enormously distended with ${slave.inflationType},`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} bloated innards. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`); - } else { - r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`); - } - } else if (slave.bellyPreg > 0) { - r.push(`${He} is heavily pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} gravid belly is nearly as big as ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} gravid belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious. Only the firmness at its top gives away ${his} pregnancy.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} gravid belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} gravid belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} gravid belly well.`); - } else { - r.push(`and ${his} gravid belly dominates ${his} frame.`); - } - if (slave.preg < 20) { - r.push(`Given how massive ${he} is without being halfway through ${his} pregnancy; ${he} is clearly having way too many children.`); - } else if (slave.preg < 30) { - r.push(`Given how far along ${he} is, ${he} is clearly having multiples.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat. ${His} pregnancy is covered in an ever thinning layer of fat, save for the bulging upper portion where ${his} fat is thinnest. In that, rather large, area, you can just make out the many babies bulging ${his} stomach.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} is so pregnant you can just make out the many babies bulging ${his} stomach.`); + } + if (slave.preg < 30) { + r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - } - } else { - r.push(`${He} looks heavily pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} distended belly is nearly as big as ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} distended belly lewdly dominates ${his} poor little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's amiss.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} distended belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} distended belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} distended belly well.`); } else { - r.push(`and ${his} distended belly dominates ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + r.push(`${He} looks immensely pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is nothing more than an overfilled implant with a ${loli} attached. ${He} has to be careful not to get crushed under ${his} own mass.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} youthful figure is grotesquely bloated by ${his} overfilled implant. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely keeps ${his} gigantic belly off the ground; with considerable effort, of course.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires multiple slaves to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height < 150) { + r.push(`and ${his} small figure is utterly dwarfed by ${his} overfilled implant. ${He} can't keep ${his} gigantic belly off the floor and fights a losing battle to not be pinned by it.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body barely allows ${him} to manage ${his} gigantic belly.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`and ${he} is dwarfed by ${his} overfilled implant. While ${he} can keep barely ${his} gigantic belly off the floor, it takes a considerable amount of effort to do so.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } } - } - } - } else if (slave.belly >= 5000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${He} is greatly distended with ${slave.inflationType},`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} swollen belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} swollen belly well.`); - } else { - r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); - } - } else if (slave.bellyPreg > 0) { - r.push(`${He} is clearly pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} rounded belly takes up much of ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} rounded belly is eye-catching on ${his} little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} rounded middle well.`); - } else if (slave.height < 150) { - r.push(`and ${his} rounded belly is eye-catching on ${his} little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} rounded belly well.`); - } else { - r.push(`and ${his} rounded belly is eye-catching on ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched to the limit, so much so ${his} folds are pulled flat. ${His} middle is covered in an ever thinning layer of fat, save for the bulging upper portion where ${his} fat is thinnest. In that, rather large, area, you can just make out the implant bulging ${his} stomach.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } - } else { - r.push(`${He} looks pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swollen belly dominates ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); - } else if (slave.weight > 130) { - r.push(`but ${he}'s so fat that it's not obvious.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} swollen belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} swollen belly well.`); - } else { - r.push(`and ${his} swollen belly is eye-catching on ${his} frame.`); - } - if (slave.bellyFluid >= 1500) { - if (slave.inflationMethod === 2) { - r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is massively pregnant, dwarfing any normal pregnancy,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} pregnancy, all ${he} can do is lean against it.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame keeps ${his} massive belly off the ground.`); + } else if (slave.height < 150) { + r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly normally with effort.`); } else { - r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + r.push(`and ${he} is more belly than ${girl}.While ${he} can keep ${his} massive belly from touching the floor, it takes a lot of effort to do so.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched considerably, so much so ${his} folds are pulled flat. ${His} pregnancy is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); + } + if (slave.preg < 30) { + r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - } - } - } else if (slave.belly >= 1500) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${He} is visibly swollen with ${slave.inflationType},`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} sloshing belly looks obscene on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 10) { - r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); - } else if (slave.height < 150) { - r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`); - } else if (slave.weight <= -10) { - r.push(`${his} thin form making ${his} sloshing belly very obvious.`); - } else { - r.push(`giving ${his} stomach a distinct curvature.`); - } - if (slave.bellySag > 0) { - r.push(`${His} swollen belly fills out ${his} overstretched middle slightly.`); - } - } else if (slave.bellyPreg > 0) { - r.push(`${He} is visibly pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swelling belly looks obscene on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 10) { - r.push(`and ${his} swelling belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); - } else if (slave.height < 150) { - r.push(`and ${his} swelling belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`${his} thin form making ${his} swelling belly very obvious.`); - } else { - r.push(`the life growing within ${his} beginning to swell ${his} belly.`); - } - if (slave.bellySag > 0) { - r.push(`${His} new pregnancy reduces the amount of sag to ${his} overstretched middle.`); - } - } else { - r.push(`${He} looks bloated,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swollen belly looks obscene on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); - } else if (slave.height < 150) { - r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`${his} thin form making ${his} swollen belly very obvious.`); - } else { - r.push(`the implant just beginning to visibly bulge ${his} belly.`); - } - if (slave.bellySag > 0) { - r.push(`${His} swollen belly fills out ${his} overstretched middle slightly.`); - } - } - } else if (slave.belly >= 100) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${His} belly is slightly bloated`); - if (slave.physicalAge <= 3) { - r.push(`and painfully obvious on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 10) { - r.push(`and abundantly clear on ${his} youthful frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); - } else if (slave.height < 150) { - r.push(`and abundantly clear on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`and ${his} thin form makes it very obvious.`); } else { - r.push(`but not very obvious.`); + r.push(`${He} looks so massively pregnant that ${he} dwarfs any normal pregnancy,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} implant, all ${he} can do is lean against it.`); + if (V.saleDescription === 0) { + r.push(`${He} requires multiple slaves to move ${his} bulk when ${he} must go somewhere.`); + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame keeps ${his} massive belly off the ground.`); + } else if (slave.height < 150) { + r.push(`and ${he} is more belly than ${girl}. ${He} can barely keep ${his} massive belly from touching the floor.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly normally with effort.`); + } else { + r.push(`and ${he} is more belly than ${girl}.While ${he} can keep ${his} massive belly from touching the floor, it takes a lot of effort to do so.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched considerably, so much so ${his} folds are pulled flat. ${His} middle is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } - } else if (slave.bellyPreg > 0) { - r.push(`${His} belly is slightly bloated`); - if (slave.physicalAge <= 3) { - r.push(`and painfully obvious on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 10) { - r.push(`and abundantly clear on ${his} youthful frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); - } else if (slave.height < 150) { - r.push(`and abundantly clear on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`and ${his} thin form makes it very obvious.`); - } else { - r.push(`but not very obvious.`); - } - if (slave.bellySag > 0) { - r.push(`${His} belly seems to sag a little less as ${his} middle bulges.`); - } - } else { - r.push(`${His} belly is slightly bloated`); - if (slave.physicalAge <= 3) { - r.push(`and painfully obvious on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 10) { - r.push(`and abundantly clear on ${his} youthful frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); - } else if (slave.height < 150) { - r.push(`and abundantly clear on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`and ${his} thin form makes it very obvious.`); - } else { - r.push(`but not very obvious.`); - } - if (slave.bellySag > 0) { - r.push(`${His} belly seems to sag a little less as ${his} middle bulges.`); - } - } - } else if (slave.bellySagPreg > 20) { - r.push(`${His}`); - if (slave.geneMods.rapidCellGrowth !== 1) { - r.push(`stretch mark streaked`); - } else { - r.push(`overstretched`); - } - r.push(`stomach sags massively after being distended for so long by so many children.`); - } else if (slave.bellySag > 20) { - r.push(`${His}`); - if (slave.geneMods.rapidCellGrowth !== 1) { - r.push(`stretch mark streaked`); - } else { - r.push(`overstretched`); - } - r.push(`stomach sags massively after being distended for so long.`); - } else if ((slave.assignment === "work in the dairy") && (V.dairyFeedersSetting + V.dairyStimulatorsSetting > 2)) { - r.push(`${His} stomach is painfully distended from the nutrition and hydration being pumped down ${his} throat and up ${his} butt.`); - } else if (slave.weight > 190) { - if (slave.muscles > 95) { - r.push(`${His} massive abs are lost beneath ${his} overwhelming flab. In fact, ${he}'s so massively fat that ${his} navel is also lost deep in a fold of ${his} belly. Multiple thick, huge rolls run along its sides around to ${his} flabby back.`); - } else if (slave.muscles > 30) { - r.push(`${His} abs are lost beneath ${his} overwhelming flab; ${he}'s so hugely fat that ${his} navel is also lost deep in a fold of ${his} belly. Multiple thick rolls run along its sides around to ${his} flabby back.`); - } else { - r.push(`${He} carries a tremendous amount of ${his} weight on ${his} stomach; ${he}'s so massively fat that ${his} navel is lost deep in a fold of ${his} belly. Multiple thick rolls run along its sides around to ${his} flabby back.`); - } - if (slave.bellySag > 1) { - r.push(`${His} immensely fat belly sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); - } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy,`); - } else { - r.push(`distended for so long,`); - } - r.push(`though it's hard to tell since it always sagged under its crushing weight and massive size.`); - } else if (slave.physicalAge > 35) { - r.push(`${His} immensely fat belly is starting to show its age, and sags a lot more than usual; though it's hard to tell since it always sagged under its crushing weight and massive size.`); - } - } else if (slave.weight > 160) { - if (slave.muscles > 95) { - r.push(`${His} massive abs are shrouded by an extra thick layer of fat. In fact, ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); - } else if (slave.muscles > 30) { - r.push(`${His} abs are hidden behind a massive soft stomach; ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); - } else { - r.push(`${He} carries a huge amount of ${his} weight on ${his} stomach; ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); - } - if (slave.bellySag > 1) { - r.push(`${His} huge fat belly sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); - } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy,`); - } else { - r.push(`distended for so long,`); - } - r.push(`though it already hangs due to its size and weight.`); - } else if (slave.physicalAge > 35) { - r.push(`${His} huge fat belly is starting to show its age, and sags a lot.`); - } - } else if (slave.weight > 130) { - if (slave.muscles > 95) { - r.push(`${His} massive abs are shrouded by a thick layer of fat. In fact, ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); - } else if (slave.muscles > 30) { - r.push(`${His} abs are hidden behind a huge soft stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); - } else { - r.push(`${He} carries a lot of ${his} weight on ${his} stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); - } - if (slave.bellySag > 1) { - r.push(`${His} big fat belly sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); - } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); - } else { - r.push(`distended for so long.`); - } - } else if (slave.physicalAge > 35) { - r.push(`${His} big fat belly is starting to show its age, and sags a little.`); - } - } else if (slave.weight > 95) { - if (slave.muscles > 95) { - r.push(`${His} massive abs are shrouded by a thick layer of fat. In fact, ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); - } else if (slave.muscles > 30) { - r.push(`${His} abs are hidden behind a big soft stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); - } else { - r.push(`${He} carries a lot of ${his} weight on ${his} stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); - } - if (slave.bellySag > 1) { - r.push(`${His} fat belly sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); - } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is massively pregnant, beyond any typical pregnancy,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} pregnancy, and try as ${he} might ${he} cannot even drag the oversized thing.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely bears ${his} oversized, drum-taut belly.`); + } else if (slave.height < 150) { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly without too much trouble.`); + } else { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + } + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched considerably; ${his} folds are nearly pulled flat from the strain. ${His} pregnancy is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); + } + if (slave.preg < slave.pregData.normalBirth / 1.33) { + r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); + } else if (slave.preg > slave.pregData.normalBirth * 1.05) { + if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 4) { + r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 5) { + r.push(`${His} womb contains a quintet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 6) { + r.push(`${His} womb contains a sextet of oversized babies. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 7) { + r.push(`${His} womb contains a septet of oversized babies. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 8) { + r.push(`${His} womb contains an octet of oversized babies. There is little chance of ${him} giving birth to them.`); + } + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } else { - r.push(`distended for so long.`); - } - } else if (slave.physicalAge > 35) { - r.push(`${His} fat belly is starting to show its age, and sags a little.`); - } - } else if (slave.weight > 30) { - if (slave.muscles > 95) { - r.push(`${His} abs are big enough that they're visible behind ${his} well-padded belly.`); - } else if (slave.muscles > 5) { - r.push(`${He}'s fit enough to carry ${his} extra weight well, leaving ${his} chubby belly appealingly soft.`); - } else { - r.push(`${His} chubby belly is nice and soft, hiding the curve of ${his} waist a little.`); - } - if (slave.bellySag > 1) { - r.push(`However, it sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); + r.push(`${He} looks massively pregnant, beyond any typical pregnancy,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} implant, and try as ${he} might ${he} cannot even drag the oversized thing.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } + } + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely bears ${his} oversized, drum-taut belly.`); + } else if (slave.height < 150) { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body allows ${him} to carry ${his} oversized belly without too much trouble.`); + } else { + r.push(`and ${he} can barely function with ${his} oversized belly.`); + } + if (slave.weight > 190) { + r.push(`${His} massively fat belly is stretched considerably; ${his} folds are nearly pulled flat from the strain. ${His} middle is covered in a thick layer of fat, save for the bulging upper portion where ${his} fat is thinnest.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is massively pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} giant belly is as big as ${he} is.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} giant belly is nearly as big as ${he} is.`); + if (hasAnyNaturalLegs(slave)) { + r.push(`${He} requires assistance to`); + if (!hasBothLegs(slave)) { + if (V.saleDescription === 0) { + r.push(`stand up,`); + } else { + r.push(`stand up.`); + } + } else { + if (V.saleDescription === 0) { + r.push(`get to ${his} feet,`); + } else { + r.push(`get to ${his} feet.`); + } + } + if (V.saleDescription === 0) { + r.push(`and uses a wheeled stand to support ${his} pregnancy when ${he} must walk anywhere.`); + } + } + } else if (slave.weight > 190) { + r.push(`and ${his} big fat belly is absolutely enormous when coupled with ${his} filled womb.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} overfull belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} giant belly looks absolutely huge on ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`but ${his} strong frame bears ${his} hefty belly well.`); + } else { + r.push(`and ${his} hugely distended belly juts far out from ${his} front and widely from ${his} sides.`); + } + if (slave.preg < 40) { + r.push(`Given how far along ${he} is, ${he} is clearly having an obscene number of children.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with octuplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 4) { + r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 5) { + r.push(`${His} womb contains a quintet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 6) { + r.push(`${His} womb contains a sextet of oversized babies. There is little chance of ${him} giving birth to them.`); + } else if (slave.pregType === 7) { + r.push(`${His} womb contains a septet of oversized babies. There is little to no chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } else { - r.push(`distended for so long.`); - } - } - } else if (slave.weight > 10) { - if (slave.muscles > 30) { - r.push(`${His} ripped abs are only slightly blurred by feminine belly fat.`); - } else if (slave.muscles > 5) { - r.push(`${He}'s fit yet soft, with ${his} toned abs complementing ${his} feminine belly.`); - } else { - r.push(`${His} belly is pleasantly soft.`); - } - if (slave.bellySag > 1) { - r.push(`However, it sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); - } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + r.push(`${He} looks full term with octuplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} giant belly is as big as ${he} is.`); + if (hasAnyLegs(slave)) { + r.push(`${He} requires assistance to get to ${his}`); + if (V.saleDescription === 0) { + r.push(`feet, and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere`); + } else { + r.push(`feet.`); + } + } + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} giant belly is nearly as big as ${he} is.`); + if (hasAnyLegs(slave)) { + r.push(`${He} requires assistance to get to ${his}`); + if (V.saleDescription === 0) { + r.push(`feet, and uses a wheeled stand to support ${his} middle when ${he} must walk anywhere.`); + } else { + r.push(`feet.`); + } + } + } else if (slave.weight > 190) { + r.push(`and ${his} big fat belly is absolutely enormous when coupled with ${his} filled implant.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} overfull belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} giant belly looks absolutely huge on ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`but ${his} strong frame bears ${his} hefty belly well.`); + } else { + r.push(`and ${his} hugely distended belly juts far out from ${his} front and widely from ${his} sides.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 105000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 40) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than seven.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with septuplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 4) { + r.push(`${His} womb contains a quartet of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 5) { + r.push(`${His} womb contains a quintet of massive unborn children. There is little chance of ${him} giving birth to them.`); + } else if (slave.pregType === 6) { + r.push(`${His} womb contains a sextet of oversized babies. There is little to no chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } else { - r.push(`distended for so long.`); - } - } - } else if (slave.weight >= -10) { - if (slave.muscles > 30) { - r.push(`${His} abs ripple as ${he} moves, each one well-defined under the skin of ${his} midsection.`); - } else if (slave.muscles > 5) { - r.push(`${He} has a nicely toned midsection, promising good stamina.`); - } else { - r.push(`${He} has a feminine belly with just a hint of softness.`); - } - if (slave.bellySag > 1) { - r.push(`However, it sags considerably from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + r.push(`${He} looks full term with septuplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 90000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 40) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than six.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with sextuplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 4) { + r.push(`${His} womb contains a quartet of massive unborn children. There is little chance of ${him} giving birth to them.`); + } else if (slave.pregType === 5) { + r.push(`${His} womb contains a quintet of oversized babies. There is little to no chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } else { - r.push(`distended for so long.`); - } - } - } else if (slave.weight >= -30) { - if (slave.muscles > 30) { - if (slave.bellySag > 1) { - r.push(`${His} once ridiculous abs sag`); - if (slave.bellySag >= 10) { - r.push(`considerably`); + r.push(`${He} looks full term with sextuplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 75000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 40) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than five.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with quintuplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. They have grown so large that ${he} will never be able to birth them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of massive unborn children. There is little chance of ${him} giving birth to them.`); + } else if (slave.pregType === 4) { + r.push(`${His} womb contains a quartet of oversized babies. There is little to no chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - r.push(`from being stretched so long and so full by ${his} many children.`); } else { - r.push(`${His} ridiculous abs ripple as ${he} moves, every single striation and vein clearly visible under the skin of ${his} midsection.`); - } - } else if (slave.muscles > 5) { - if (slave.bellySag > 1) { - r.push(`${His} once toned belly sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); + r.push(`${He} looks full term with quintuplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 60000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); } else { - r.push(`distended for so long.`); + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 36) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than four.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with quadruplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. It has grown so large that ${he} will never be able to birth it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of massive unborn children. There is little to no chance of ${him} giving birth to them.`); + } else if (slave.pregType === 3) { + r.push(`${His} womb contains a trio of oversized babies. There is little chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } else { - r.push(`${His} thin midsection highlights ${his} abs, showing off a hint of a six-pack.`); - } - } else { - if (slave.bellySag > 1) { - r.push(`${He} once had a model's midsection, however, it now sags`); - if (slave.bellySag >= 10) { - r.push(`considerably`); + r.push(`${He} looks full term with quadruplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 45000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); } else { - r.push(`distended for so long.`); + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 35) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than three.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with triplets.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive unborn child. There is little to no chance of ${him} giving birth to it.`); + } else if (slave.pregType === 2) { + r.push(`${His} womb contains a pair of oversized babies. There is little chance of ${him} giving birth to them.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } else { - r.push(`${He} has a model's midsection, without any hint of belly or musculature.`); - } - } - } else { - if (slave.muscles > 5) { - if (slave.bellySag > 1) { - r.push(`${He} has abs, but they sag`); - if (slave.bellySag >= 10) { - r.push(`considerably`); + r.push(`${He} looks full term with triplets,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); } - r.push(`from being`); - if (slave.bellySagPreg > 1) { - r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 30000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not too obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); } else { - r.push(`distended for so long.`); + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 33) { + r.push(`Given how far along ${he} is, ${he} is clearly having more than two.`); + } else if (slave.preg < 42) { + r.push(`${He} is clearly full-term with twins.`); + } else if (slave.pregType === 1) { + r.push(`${His} womb contains one single, massive child. There is little chance of ${him} giving birth to it.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } } else { - r.push(`${His} abs are clearly visible, stretched over ${his} emaciated frame as they are.`); - } - } else { - if (slave.bellySag > 1) { - r.push(`${His} emaciated belly is`); - if (slave.bellySag >= 10) { - r.push(`extremely`); + r.push(`${He} looks full term with twins,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); } - r.push(`stretched; the product of being too`); - if (slave.bellySagPreg > 1) { - r.push(`pregnant`); + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 15000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } else if (slave.bellyPreg > 0) { + r.push(`${He} is enormously pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} womb. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.preg < 33) { + r.push(`Given how far along ${he} is, ${he} is clearly having multiples.`); } else { - r.push(`distended`); + r.push(`${He} is clearly full-term.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } } - r.push(`for too long.`); } else { - r.push(`${His} emaciated belly is perfectly flat.`); + r.push(`${He} looks hugely pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 190) { + r.push(`but ${he}'s so massively fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's bulging it outwards.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} huge, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} huge, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} huge, drum-taut belly well.`); + } else { + r.push(`and ${his} huge, drum-taut belly dominates ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } - } - } - if (slave.belly < 1500) { - if (slave.bellySagPreg > 1 || slave.bellySagPreg === -1) { - if (V.arcologies[0].FSRepopulationFocus !== "unset") { - r.push(`While most societies would find ${his} sagging, pregnancy ruined stomach unattractive, your repopulation focused one merely sees ${him} as a breeder between pregnancies.`); + } else if (slave.belly >= 10000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${His} middle is enormously distended with ${slave.inflationType},`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} bloated innards. ${He} can barely move ${him} self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`); + } else { + r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`); + } + } else if (slave.bellyPreg > 0) { + r.push(`${He} is heavily pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} gravid belly is nearly as big as ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} gravid belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious. Only the firmness at its top gives away ${his} pregnancy.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} gravid belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} gravid belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} gravid belly well.`); + } else { + r.push(`and ${his} gravid belly dominates ${his} frame.`); + } + if (slave.preg < 20) { + r.push(`Given how massive ${he} is without being halfway through ${his} pregnancy; ${he} is clearly having way too many children.`); + } else if (slave.preg < 30) { + r.push(`Given how far along ${he} is, ${he} is clearly having multiples.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } } else { - r.push(`Society finds ${his} pregnancy ruined stomach very unattractive.`); + r.push(`${He} looks heavily pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} distended belly is nearly as big as ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} distended belly lewdly dominates ${his} poor little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious. Only the firmness at ${his} belly's top and the weight in its sway give any hint that something's amiss.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} distended belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} distended belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} distended belly well.`); + } else { + r.push(`and ${his} distended belly dominates ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 5000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${He} is greatly distended with ${slave.inflationType},`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} swollen belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} swollen belly well.`); + } else { + r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); + } + } else if (slave.bellyPreg > 0) { + r.push(`${He} is clearly pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} rounded belly takes up much of ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} rounded belly is eye-catching on ${his} little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} rounded middle well.`); + } else if (slave.height < 150) { + r.push(`and ${his} rounded belly is eye-catching on ${his} little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} rounded belly well.`); + } else { + r.push(`and ${his} rounded belly is eye-catching on ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } else { + r.push(`${He} looks pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swollen belly dominates ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); + } else if (slave.weight > 130) { + r.push(`but ${he}'s so fat that it's not obvious.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} swollen belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} swollen belly is eye-catching on ${his} little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} swollen belly well.`); + } else { + r.push(`and ${his} swollen belly is eye-catching on ${his} frame.`); + } + if (slave.bellyFluid >= 1500) { + if (slave.inflationMethod === 2) { + r.push(`There is a distinct curve to ${his} upper belly, the result of a stomach filled with ${slave.inflationType}.`); + } else { + r.push(`${His} stomach bulges a little larger thanks to all the ${slave.inflationType} in ${his} bowels.`); + } + } + } + } else if (slave.belly >= 1500) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${He} is visibly swollen with ${slave.inflationType},`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} sloshing belly looks obscene on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 10) { + r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); + } else if (slave.height < 150) { + r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`); + } else if (slave.weight <= -10) { + r.push(`${his} thin form making ${his} sloshing belly very obvious.`); + } else { + r.push(`giving ${his} stomach a distinct curvature.`); + } + if (slave.bellySag > 0) { + r.push(`${His} swollen belly fills out ${his} overstretched middle slightly.`); + } + } else if (slave.bellyPreg > 0) { + r.push(`${He} is visibly pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swelling belly looks obscene on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 10) { + r.push(`and ${his} swelling belly already looks huge on ${his} tiny frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); + } else if (slave.height < 150) { + r.push(`and ${his} swelling belly already looks huge on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`${his} thin form making ${his} swelling belly very obvious.`); + } else { + r.push(`the life growing within ${his} beginning to swell ${his} belly.`); + } + if (slave.bellySag > 0) { + r.push(`${His} new pregnancy reduces the amount of sag to ${his} overstretched middle.`); + } + } else { + r.push(`${He} looks bloated,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swollen belly looks obscene on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); + } else if (slave.height < 150) { + r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`${his} thin form making ${his} swollen belly very obvious.`); + } else { + r.push(`the implant just beginning to visibly bulge ${his} belly.`); + } + if (slave.bellySag > 0) { + r.push(`${His} swollen belly fills out ${his} overstretched middle slightly.`); + } + } + } else if (slave.belly >= 100) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${His} belly is slightly bloated`); + if (slave.physicalAge <= 3) { + r.push(`and painfully obvious on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 10) { + r.push(`and abundantly clear on ${his} youthful frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); + } else if (slave.height < 150) { + r.push(`and abundantly clear on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`and ${his} thin form makes it very obvious.`); + } else { + r.push(`but not very obvious.`); + } + } else if (slave.bellyPreg > 0) { + r.push(`${His} belly is slightly bloated`); + if (slave.physicalAge <= 3) { + r.push(`and painfully obvious on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 10) { + r.push(`and abundantly clear on ${his} youthful frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); + } else if (slave.height < 150) { + r.push(`and abundantly clear on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`and ${his} thin form makes it very obvious.`); + } else { + r.push(`but not very obvious.`); + } + if (slave.bellySag > 0) { + r.push(`${His} belly seems to sag a little less as ${his} middle bulges.`); + } + } else { + r.push(`${His} belly is slightly bloated`); + if (slave.physicalAge <= 3) { + r.push(`and painfully obvious on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 10) { + r.push(`and abundantly clear on ${his} youthful frame.`); + } else if (slave.weight > 95) { + r.push(`but ${he}'s sufficiently overweight that it's not noticeable in passing.`); + } else if (slave.height < 150) { + r.push(`and abundantly clear on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`and ${his} thin form makes it very obvious.`); + } else { + r.push(`but not very obvious.`); + } + if (slave.bellySag > 0) { + r.push(`${His} belly seems to sag a little less as ${his} middle bulges.`); + } + } + } else if (slave.bellySagPreg > 20) { + r.push(`${His}`); + if (slave.geneMods.rapidCellGrowth !== 1) { + r.push(`stretch mark streaked`); + } else { + r.push(`overstretched`); + } + r.push(`stomach sags massively after being distended for so long by so many children.`); + } else if (slave.bellySag > 20) { + r.push(`${His}`); + if (slave.geneMods.rapidCellGrowth !== 1) { + r.push(`stretch mark streaked`); + } else { + r.push(`overstretched`); + } + r.push(`stomach sags massively after being distended for so long.`); + } else if ((slave.assignment === "work in the dairy") && (V.dairyFeedersSetting + V.dairyStimulatorsSetting > 2)) { + r.push(`${His} stomach is painfully distended from the nutrition and hydration being pumped down ${his} throat and up ${his} butt.`); + } else if (slave.weight > 190) { + if (slave.muscles > 95) { + r.push(`${His} massive abs are lost beneath ${his} overwhelming flab. In fact, ${he}'s so massively fat that ${his} navel is also lost deep in a fold of ${his} belly. Multiple thick, huge rolls run along its sides around to ${his} flabby back.`); + } else if (slave.muscles > 30) { + r.push(`${His} abs are lost beneath ${his} overwhelming flab; ${he}'s so hugely fat that ${his} navel is also lost deep in a fold of ${his} belly. Multiple thick rolls run along its sides around to ${his} flabby back.`); + } else { + r.push(`${He} carries a tremendous amount of ${his} weight on ${his} stomach; ${he}'s so massively fat that ${his} navel is lost deep in a fold of ${his} belly. Multiple thick rolls run along its sides around to ${his} flabby back.`); + } + if (slave.bellySag > 1) { + r.push(`${His} immensely fat belly sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy,`); + } else { + r.push(`distended for so long,`); + } + r.push(`though it's hard to tell since it always sagged under its crushing weight and massive size.`); + } else if (slave.physicalAge > 35) { + r.push(`${His} immensely fat belly is starting to show its age, and sags a lot more than usual; though it's hard to tell since it always sagged under its crushing weight and massive size.`); + } + } else if (slave.weight > 160) { + if (slave.muscles > 95) { + r.push(`${His} massive abs are shrouded by an extra thick layer of fat. In fact, ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); + } else if (slave.muscles > 30) { + r.push(`${His} abs are hidden behind a massive soft stomach; ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); + } else { + r.push(`${He} carries a huge amount of ${his} weight on ${his} stomach; ${he}'s so hugely fat that ${his} navel is buried deep in a fold of ${his} belly. Several thick rolls run along its sides around to ${his} flabby back.`); + } + if (slave.bellySag > 1) { + r.push(`${His} huge fat belly sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy,`); + } else { + r.push(`distended for so long,`); + } + r.push(`though it already hangs due to its size and weight.`); + } else if (slave.physicalAge > 35) { + r.push(`${His} huge fat belly is starting to show its age, and sags a lot.`); + } + } else if (slave.weight > 130) { + if (slave.muscles > 95) { + r.push(`${His} massive abs are shrouded by a thick layer of fat. In fact, ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); + } else if (slave.muscles > 30) { + r.push(`${His} abs are hidden behind a huge soft stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); + } else { + r.push(`${He} carries a lot of ${his} weight on ${his} stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly. Said fold runs from ${his} navel around to ${his} back.`); + } + if (slave.bellySag > 1) { + r.push(`${His} big fat belly sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } else if (slave.physicalAge > 35) { + r.push(`${His} big fat belly is starting to show its age, and sags a little.`); + } + } else if (slave.weight > 95) { + if (slave.muscles > 95) { + r.push(`${His} massive abs are shrouded by a thick layer of fat. In fact, ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); + } else if (slave.muscles > 30) { + r.push(`${His} abs are hidden behind a big soft stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); + } else { + r.push(`${He} carries a lot of ${his} weight on ${his} stomach; ${he}'s so fat that ${his} navel is buried in a fold of ${his} belly.`); + } + if (slave.bellySag > 1) { + r.push(`${His} fat belly sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } else if (slave.physicalAge > 35) { + r.push(`${His} fat belly is starting to show its age, and sags a little.`); + } + } else if (slave.weight > 30) { + if (slave.muscles > 95) { + r.push(`${His} abs are big enough that they're visible behind ${his} well-padded belly.`); + } else if (slave.muscles > 5) { + r.push(`${He}'s fit enough to carry ${his} extra weight well, leaving ${his} chubby belly appealingly soft.`); + } else { + r.push(`${His} chubby belly is nice and soft, hiding the curve of ${his} waist a little.`); + } + if (slave.bellySag > 1) { + r.push(`However, it sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } + } else if (slave.weight > 10) { + if (slave.muscles > 30) { + r.push(`${His} ripped abs are only slightly blurred by feminine belly fat.`); + } else if (slave.muscles > 5) { + r.push(`${He}'s fit yet soft, with ${his} toned abs complementing ${his} feminine belly.`); + } else { + r.push(`${His} belly is pleasantly soft.`); + } + if (slave.bellySag > 1) { + r.push(`However, it sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } + } else if (slave.weight >= -10) { + if (slave.muscles > 30) { + r.push(`${His} abs ripple as ${he} moves, each one well-defined under the skin of ${his} midsection.`); + } else if (slave.muscles > 5) { + r.push(`${He} has a nicely toned midsection, promising good stamina.`); + } else { + r.push(`${He} has a feminine belly with just a hint of softness.`); + } + if (slave.bellySag > 1) { + r.push(`However, it sags considerably from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } + } else if (slave.weight >= -30) { + if (slave.muscles > 30) { + if (slave.bellySag > 1) { + r.push(`${His} once ridiculous abs sag`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being stretched so long and so full by ${his} many children.`); + } else { + r.push(`${His} ridiculous abs ripple as ${he} moves, every single striation and vein clearly visible under the skin of ${his} midsection.`); + } + } else if (slave.muscles > 5) { + if (slave.bellySag > 1) { + r.push(`${His} once toned belly sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } else { + r.push(`${His} thin midsection highlights ${his} abs, showing off a hint of a six-pack.`); + } + } else { + if (slave.bellySag > 1) { + r.push(`${He} once had a model's midsection, however, it now sags`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } else { + r.push(`${He} has a model's midsection, without any hint of belly or musculature.`); + } + } + } else { + if (slave.muscles > 5) { + if (slave.bellySag > 1) { + r.push(`${He} has abs, but they sag`); + if (slave.bellySag >= 10) { + r.push(`considerably`); + } + r.push(`from being`); + if (slave.bellySagPreg > 1) { + r.push(`stretched so long and so full by ${his} excessive pregnancy.`); + } else { + r.push(`distended for so long.`); + } + } else { + r.push(`${His} abs are clearly visible, stretched over ${his} emaciated frame as they are.`); + } + } else { + if (slave.bellySag > 1) { + r.push(`${His} emaciated belly is`); + if (slave.bellySag >= 10) { + r.push(`extremely`); + } + r.push(`stretched; the product of being too`); + if (slave.bellySagPreg > 1) { + r.push(`pregnant`); + } else { + r.push(`distended`); + } + r.push(`for too long.`); + } else { + r.push(`${His} emaciated belly is perfectly flat.`); + } } - } else if (slave.bellySag > 1) { - r.push(`Society finds ${his} ruined stomach very unattractive.`); } - } - if (slave.mpreg === 1 && slave.belly < 100) { - r.push(`${He} has a slight curve to ${his} abdomen, unusual for a male slave.`); + return r.join(" "); } - if (V.showClothing === 1 && V.saleDescription === 0) { - if (V.surgeryDescription === 0) { - switch (slave.bellyAccessory) { - case "an extreme corset": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly makes a mockery of ${his} corset; it holds on only with custom lacing and, even then, is more plastered to ${his} back than wrapped around ${his} stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly makes a mockery of ${his} corset; it holds on only with custom lacing and, even then, is more plastered to ${his} back than wrapped around ${his} stomach.`); + function clothing() { + const r = []; + switch (slave.clothes) { + case "a Fuckdoll suit": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnancy makes a mockery of ${his} corset; despite this, even the light pressure applied to it by the failing lacings of the garment has ${his} packed-tight womb on the brink of rupturing. ${His} brood squirms as much as they possibly can under the pressure.`); + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly makes a mockery of ${his} tearing ${his} corset; the poor thing is on its last fibers.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly makes a mockery of ${his} tearing ${his} corset; the poor thing is on its last fibers.`); + } + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - r.push(`${slave.slaveName}'s monolithic pregnant belly is on the brink of rupturing under the remaining pressure of ${his} corset, despite it barely holding together; one or the other has to win out. ${His} brood squirms as much as they possibly can under the pressure.`); + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); + } + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - r.push(`${slave.slaveName}'s titanic pregnant belly makes a mockery of ${his} corset, despite still being painfully constricted; one or the other will eventually win out. ${His} brood squirms angrily over the pressure in their already tight confines.`); + r.push(`${slave.slaveName}'s gigantic pregnant belly is allowed to bulge out of a huge hole in the suit.`); } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly agonizingly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly agonizingly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - r.push(`${slave.slaveName}'s gigantic pregnant belly is agonizingly compressed as it threatens to burst from ${his} corset; one or the other has to win out.`); + r.push(`${slave.slaveName}'s massive pregnant belly is allowed to bulge out of a huge hole in the suit.`); } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly painfully strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly painfully strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - r.push(`${slave.slaveName}'s massive pregnant belly is agonizingly compressed as it strains ${his} corset; one or the other has to win out.`); + r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); } - } else if (slave.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - r.push(`${slave.slaveName}'s giant pregnant belly painfully strains ${his} corset, threatening to either burst it or sacrifice the life within; one or the other has to win out.`); + r.push(`${slave.slaveName}'s giant pregnant belly is allowed to bulge out of a huge hole in the suit.`); } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); - } else { - r.push(`${slave.slaveName}'s giant pregnant belly is painfully compressed by ${his} corset causing ${him} extreme duress; one or the other has to win out.`); - } - } else if (slave.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); + } + } else if (slave.belly >= 30000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 painfully compressed by ${his} corset causing ${him} duress; one or the other has to win out.`); + 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 massive gut is barely compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is painfully compressed by ${his} corset; one or the other will eventually win out.`); + } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 painfully compressed by ${his} corset; one or the other will eventually win out.`); + 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.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s hugely swollen belly is tightly compressed by ${his} corset causing it to bulge above and below; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 big pregnant belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s giant gut is tightly compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of every gap between the straining material.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly compressed by ${his} corset causing it to bulge out above and below; one or the other will eventually win out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + 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 pregnant belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s large gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly compressed by ${his} corset causing ${him} distress.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is tightly compressed by ${his} corset causing ${him} distress.`); + 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 growing belly is tightly compressed by ${his} corset causing ${him} distress.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby stomach is tightly compressed by ${his} corset, ${his} pudge bulges out of any gap it can find.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName}'s stomach is tightly compressed by ${his} corset causing ${him} some distress.`); + 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.`); } - break; - case "a corset": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset looks ridiculous on ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. It floats on top of ${his} belly, looking more like the bottom half of a mini coat than the garment it was originally intended to be.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset looks ridiculous on ${his} unfathomable, hyper-swollen, implant-filled belly. It floats on top of ${his} belly, looking more like the bottom half of a mini coat than the garment it was originally intended to be.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 corset looks ridiculous on ${his} unfathomable, hyper-swollen pregnancy. It floats on top of ${his} belly, near useless, bobbling up and down as ${his} innumerable brood kick and squirm.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`); } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset can barely function with ${his} titanic ${slave.inflationType}-filled belly disrupting it. It aggravatingly digs into ${his} already strained stomach.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset can barely function with ${his} titanic implant-filled belly disrupting it. It aggravatingly digs into ${his} already strained stomach.`); + 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 corset can barely function with ${his} titanic belly disrupting it. It aggravatingly digs into ${his} already strained stomach, causing ${his} brood to squirm incessantly.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`); } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic ${slave.inflationType}-filled belly to hang out.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic implant-filled belly to hang out.`); + 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 corset looks ridiculous trying to bind ${his} middle while allowing ${his} titanic belly to hang out and squirm freely.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`); } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while being dominated by ${his} gigantic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while being dominated by ${his} gigantic implant-filled belly.`); + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 corset struggles to bind ${his} middle while being dominated by ${his} gigantic belly.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic ${slave.inflationType}-filled belly.`); } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while allowing ${his} massive ${slave.inflationType}-filled belly the room it demands.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset struggles to bind ${his} middle while allowing ${his} massive implant-filled belly the room it demands.`); + 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 corset struggles to bind ${his} middle while allowing ${his} massive belly the room it demands.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`); } - } else if (slave.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s corset strains around ${his} giant ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s corset strains around ${his} giant 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 corset strains around ${his} giant belly.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly stretches out ${his} corset`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly stretches out ${his} corset`); + r.push(`${He}'s left ${his} pants unfastened as ${his} stuffed womb desperately needs the added space.`); + } + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 giant pregnant belly stretches out ${his} corset.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic ${slave.inflationType}-filled belly.`); } - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s corset strains around ${his} massive gut.`); - } 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 comfortably bulges out of ${his} corset.`); - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly comfortably bulges out of ${his} corset.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly comfortably bulges out of ${his} corset.`); + 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 huge pregnant belly comfortably bulges out of ${his} corset.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`); } - } 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 comfortably bulges out of ${his} corset.`); - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s hugely swollen belly comfortably bulges out of ${his} corset.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly comfortably bulges out of ${his} corset.`); + 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 big pregnant belly comfortably bulges out of ${his} corset.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly.`); } - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s giant gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant 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 comfortably bulges out of ${his} corset.`); - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly comfortably hangs out of ${his} corset.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly comfortably bulges out of ${his} corset.`); + r.push(`${He}'s left ${his} pants unfastened to give ${his} overfilled womb more room.`); + } + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 pregnant belly comfortably bulges out of ${his} corset.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive ${slave.inflationType}-filled belly.`); } - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s large gut hangs out the hole in ${his} corset designed to accommodate a pregnant 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 comfortably rounds out ${his} corset.`); - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is lightly compressed by ${his} corset making ${him} uncomfortable.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly comfortably rounds out ${his} corset.`); + 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 growing belly comfortably rounds out ${his} corset.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive implant-filled belly.`); } - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby stomach is compressed by ${his} corset, ${his} pudge bulges out above and below it.`); - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { - r.push(`${slave.slaveName} feels minor discomfort over the light pressure on ${his} sensitive stomach.`); - } - break; - case "a medium empathy belly": - if (slave.weight > 160) { - r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} giant gut.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} huge gut.`); - } - break; - case "a small empathy belly": - if (slave.weight > 160) { - r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} giant gut.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s empathy belly is barely noticeable over ${his} huge gut.`); - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} large gut.`); + 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.`); } - break; - case "a support band": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly is cradled by an equally oversized support band`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly is cradled by an equally oversized support band`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 unfathomable, hyper-swollen pregnancy is cradled by an equally oversized support band`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); } - r.push(`doing its best to alleviate the strain on ${his} body.`); - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly strains against ${his} enormous support band`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monolithic implant-filled belly strains against ${his} enormous support band`); + 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 monolithic pregnant belly strains against ${his} enormous support band`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); } - r.push(`as it struggles to hold ${his} body together.`); - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly is cradled by ${his} enormous support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s titanic implant-filled belly is cradled by ${his} enormous support band,`); + 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 titanic pregnant belly is cradled by ${his} enormous support band,`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); } - r.push(`alleviating some of the strain of carrying it and helping to keep things in place.`); - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly strains against ${his} extra large support band`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly strains against ${his} extra large support band`); + r.push(`${He}'s left ${his} pants unfastened to give the taut dome more room.`); + } + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 gigantic pregnant belly strains against ${his} extra large support band`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`); } - r.push(`as it dutifully alleviates the stress on ${his} body.`); - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly is cradled by ${his} extra large support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s massive implant-filled belly is cradled by ${his} extra large support band,`); + } 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 massive pregnant belly is cradled by ${his} extra large support band,`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`); } - r.push(`alleviating much of the strain of carrying it.`); - } else if (slave.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly is cradled by ${his} extra large support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly is cradled by ${his} extra large support band,`); + } 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 giant pregnant belly is cradled by ${his} extra large support band,`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`); } - r.push(`alleviating much of the strain of carrying it.`); - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains against ${his} support band`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s giant implant-filled belly strains against ${his} support band`); + r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); + } + } else if (slave.belly >= 45000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 giant pregnant belly strains against ${his} support band`); + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`); } - r.push(`as it dutifully alleviates the stress on ${his} body.`); - } else if (slave.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is cradled by ${his} support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is cradled by ${his} support band,`); + } 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 huge pregnant belly is cradled by ${his} support band,`); + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`); } - r.push(`alleviating much of the strain of carrying it.`); - } else if (slave.weight > 190) { - r.push(`${slave.slaveName}'s massive gut is cradled by ${his} support band, giving it a rather smooth appearance and taking some of the weight off ${his} front.`); - } else if (slave.belly >= 15000 || (slave.bellyAccessory === "a huge empathy belly")) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is cradled by ${his} support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s huge implant-filled belly is cradled by ${his} support band,`); + } 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 huge pregnant belly is cradled by ${his} support band,`); + r.push(`${slave.slaveName}'s blouse can no longer contain ${his} huge pregnant belly and merely rests atop it.`); } - r.push(`reducing the strain on ${his} back.`); - } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s hugely swollen belly is cradled by ${his} support band,`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s big implant-filled belly is cradled by ${his} support band,`); + } + } 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 big pregnant belly is cradled by ${his} support band,`); + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); } - r.push(`reducing the strain on ${his} back.`); - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s giant gut is cradled by ${his} support band, giving it a rather smooth appearance.`); - } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s huge gut is cradled by ${his} support band, giving it a rather smooth appearance.`); - } else if (slave.belly >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is cradled by ${his} support band.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-filled belly is cradled by ${his} support band.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 pregnant belly is cradled by ${his} support band.`); + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`); } - r.push(`It doesn't accomplish much, however.`); - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s large gut is cradled by ${his} support band, giving it a rather smooth appearance.`); - } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is cradled by ${his} support band.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s implant-rounded belly is cradled by ${his} support band.`); + } 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 growing belly is cradled by ${his} support band.`); + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`); } - r.push(`It doesn't accomplish much, however.`); - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby stomach is cradled by ${his} support band, halting any jiggling and giving it a smooth appearance.`); } else { - r.push(`${slave.slaveName}'s support band rests around ${his} stomach, accomplishing little.`); - } - } - - switch (slave.clothes) { - case "a Fuckdoll suit": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + 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.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.`); - } + r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`); } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 titanic pregnant belly is allowed to bulge out of an enormous hole in the suit, giving ${his} squirming occupants room to grow.`); + 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.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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 (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.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.`); - } + 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.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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.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.`); - } + 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 (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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { - 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.`); - } - } else if (slave.belly >= 45000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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) { + } 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} big fat belly, though they do a fine job of hiding it themselves.`); + 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 fat belly is hidden by ${his} massive tits and oversized sweater.`); + 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 ${his} big fat belly hang free.`); + 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 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 { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + r.push(`${slave.slaveName}'s sweater bulges with ${his} small pregnant belly.`); } 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 { - 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 blouse bulges with ${his} small pregnant belly.`); } - } else if (slave.weight > 95) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { 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.`); + 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 fat belly is hidden by ${his} massive tits and oversized sweater.`); + 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 ${his} fat belly hang free.`); + 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 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.`); - } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly.`); - } - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`); } 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 { - r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly.`); - } + r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`); } - } else if (slave.weight > 30) { + } else if (slave.bellyImplant > 0) { 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.`); + 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 chubby belly is hidden by ${his} massive tits and oversized sweater.`); + 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} chubby belly.`); + 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} chubby belly.`); + r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`); } else { - r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly.`); + r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded 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) { + } else { 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.`); + 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 ripped abs are hidden by ${his} massive tits and oversized sweater.`); + 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 busy showing off ${his} ripped abs.`); + 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + r.push(`${slave.slaveName}'s sweater bulges with ${his} growing belly.`); } else { - r.push(`${slave.slaveName}'s growing belly is tightly wrapped with chains.`); + r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + } 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 "body oil": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 "chains": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a toga": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a huipil": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a slutty qipao": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "uncomfortable straps": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "shibari ropes": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a latex catsuit": - case "restrictive latex": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a military uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + } else if (slave.belly >= 60000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a schutzstaffel uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + } else if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + } else if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); + } + break; + case "uncomfortable straps": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 schutzstaffel uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} 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") { + 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.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} 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 { + r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`); + } + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 slutty schutzstaffel uniform": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} 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 { + r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); + } + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - 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.`); - } + 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.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + 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.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 { - 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.`); - } + 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 >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - 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.`); - } + 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.belly >= 45000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + 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.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 { - 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.`); - } + 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.weight > 190) { + } + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { 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.`); + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly peaks 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 undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); + 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 tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`); + 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.bellyImplant > 0) { + if (slave.boobs > 12000) { + r.push(`${slave.slaveName}'s giant implant-filled belly peaks 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 { - 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.`); - } + 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 giant pregnant belly peaks 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 { - 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.`); - } + 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 > 160) { + } + } 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 hugely fat belly is obscured by ${his} massive tits.`); + 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 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.`); + 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 hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} trousers.`); + 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.weight > 130) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`); + 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 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.`); + 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 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.`); + 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + 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.weight > 95) { + } else { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); + 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 undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`); + 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 fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`); + 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 >= 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + 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 > 30) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`); + 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 covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); + 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 uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`); + 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.bellyPreg >= 100 || slave.bellyImplant >= 100) { + } else if (slave.bellyImplant > 0) { if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`); + 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 undershirt tightly hugs the slight swell to ${his} lower belly.`); + 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 tunic looks a little tight around the middle.`); + 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.muscles > 30) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 ripped abs can be glimpsed beneath ${his} massive tits.`); + r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`); } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`); + 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 ripped abs are completely hidden under ${his} uniform.`); + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} growing belly completely.`); } } - break; - case "a slutty schutzstaffel uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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} 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 { - r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`); - } - } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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} 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} huge 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 "kitty lingerie": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 tremendously.`); + } 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 tremendously.`); + } else { + r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} titanic ${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} titanic 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} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a red army uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic implant-filled belly.`); + } else { + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a mounty outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a nice nurse outfit": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - if (slave.boobs > 12000) { - r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly peaks 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 peaks 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 peaks 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + } else if (slave.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a mini dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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} huge 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "lederhosen": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a long qipao": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a biyelgee costume": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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(`The fabric of ${slave.slaveName}'s hanbok is slightly pushed up thanks to ${his} big pregnant belly.`); + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a dirndl": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "battlearmor": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "kitty lingerie": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 tremendously.`); - } 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 tremendously.`); - } else { - r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a monokini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s monokini shows off the sheer size of ${his} titanic ${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} titanic 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} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "an apron": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a hijab and abaya": - case "a niqab and abaya": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a klan robe": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s robes lie taut against ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a burqa": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic implant-filled belly.`); - } else { - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic ${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} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a nice pony outfit": - case "a slutty pony outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s outfit completely bares ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a one-piece swimsuit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s swimsuit lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 tremendously.`); + } 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 tremendously.`); + } else { + r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s sweater lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a police uniform": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s uniform's shirt lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a hanbok": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s hanbok lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a gothic lolita dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s dress lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a tank-top": - case "a tank-top and panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName} tank-top lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + } else if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s shirt lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a burkini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a hijab and blouse": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic ${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} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "attractive lingerie": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 tremendously.`); - } 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 tremendously.`); - } else { - r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a succubus outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a slutty maid outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a nice maid outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a fallen nuns habit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a penitent nuns habit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The bottom of ${slave.slaveName}'s titanic ${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 titanic implant-filled belly is stretching ${his} dress's belt to its breaking point.`); + } else { + r.push(`The bottom of ${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 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.`); + 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.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 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.`); + 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.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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 massive pregnant belly fills ${his} habit while looking absolutely blasphemous. The coarse cloth aggravates ${his} expansive, taut, sensitive skin.`); + 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 >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} looks absolutely blasphemous in a habit bearing such a giant pregnant belly. The coarse cloth aggravates ${his} sensitive overly stretched skin.`); + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic ${slave.inflationType}-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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} looks absolutely blasphemous in a habit with such a huge pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic implant-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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} looks absolutely blasphemous in a habit with such a big pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + r.push(`${slave.slaveName}'s overalls indent the sensitive skin of ${his} monolithic pregnant belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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} looks absolutely blasphemous in a habit with a pregnant belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic ${slave.inflationType}-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 habit gently bulges from ${his} growing belly. The coarse cloth aggravates ${his} sensitive skin.`); + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic implant-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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 dress's belt can no longer cross all of ${his} monolithic pregnant belly, let alone ${his} whole body.`); + r.push(`${slave.slaveName}'s overalls work to compress ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`); } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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(`The bottom of ${slave.slaveName}'s dress is turning taut due to ${his} titanic pregnant belly.`); + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic ${slave.inflationType}-filled belly.`); } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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(`The fur trim on ${slave.slaveName}'s dress appears ragged from being stretched by ${his} gigantic pregnant belly.`); + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic implant-filled belly.`); } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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(`The thick fabric of ${slave.slaveName}'s dress is stretched thin over ${his} massive pregnant belly.`); + r.push(`${slave.slaveName}'s overalls push against ${his} gigantic pregnant belly .`); } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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(`${slave.slaveName}'s dress's belt has been glued to it, rather than try to actually encircle ${his} giant pregnant belly.`); + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive ${slave.inflationType}-filled belly.`); } - } else if (slave.belly >= 30000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The bottom of ${slave.slaveName}'s titanic ${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 titanic implant-filled belly is stretching ${his} dress's belt to its breaking point.`); + 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 bottom of ${slave.slaveName}'s titanic pregnant belly is stretching ${his} dress's belt to its breaking point.`); + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive implant-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge pregnant belly.`); + r.push(`The front of ${slave.slaveName}'s overalls can barely cover a quarter of ${his} massive 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 if (slave.belly >= 150000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 belt is struggling to fully encircle ${his} big pregnant belly.`); + r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly strains the fabric of ${his} overalls.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} pregnant belly.`); + r.push(`${slave.slaveName}'s giant implant-filled belly strains the fabric of ${his} overalls.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { + 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(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} growing belly.`); + r.push(`${slave.slaveName}'s giant pregnant belly strains the fabric of ${his} overalls.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - 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.`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant ${slave.inflationType}-filled belly.`); } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant implant-filled belly.`); } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 colossal breasts push out ${his} overalls so far that ${his} giant pregnant belly is left partially uncovered.`); } 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.`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers a third of ${his} giant pregnant belly.`); } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } + r.push(`${He}'s left ${his} pants unfastened to give the firm dome more room.`); + } + } else if (slave.belly >= 45000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - 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 .`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge ${slave.inflationType}-filled pregnant belly.`); } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`); } - } else if (slave.belly >= 150000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 gigantic breasts push out ${his} overalls so far that ${his} huge pregnant belly is left halfway uncovered.`); } 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.`); - } + r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge pregnant belly.`); } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge pregnant belly.`); } - } else if (slave.belly >= 45000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 { - 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.`); - } + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge ${slave.inflationType}-filled belly.`); } - } else if (slave.weight > 190) { + } 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} massively fat belly is left mostly uncovered.`); + 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 massively fat belly spills out over the sides of ${his} overalls.`); + r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge implant-filled belly.`); } - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 { - 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.`); - } + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + r.push(`${slave.slaveName}'s big pregnant belly stretches out the fabric of ${his} overalls.`); } - } else if (slave.weight > 160) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { 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.`); + 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 fat belly bulges over the sides of ${his} overalls.`); + r.push(`${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`); } - } else if (slave.weight > 130) { + } else if (slave.bellyImplant > 0) { 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.`); + 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 fat belly spills out from behind ${his} overalls.`); + r.push(`${slave.slaveName}'s big implant-filled belly stretches out the fabric of ${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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 { - 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.`); - } + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); } - } else if (slave.weight > 95) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { 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.`); + 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 fat belly bulges out from over the sides of ${his} overalls.`); + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} jiggling ${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 > (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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 { - 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.`); - } + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} implant-filled belly.`); } - } else if (slave.weight > 30) { + } else { 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.`); + r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} pregnant belly is left uncovered.`); } else { - r.push(`The sides of ${slave.slaveName}'s chubby belly peek out from behind ${his} overalls.`); + r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} pregnant belly.`); } - } else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) { + } + } 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 big breasts push out ${his} overalls so far that ${his} rounded belly is left uncovered.`); + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} small pregnant belly is left uncovered.`); } else { - r.push(`There is a slight curve to ${slave.slaveName}'s from ${his} belly.`); + r.push(`${slave.slaveName}'s small pregnant belly rounds out the front of ${his} overalls.`); } - } else if (slave.muscles > 30) { + } else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 big breasts push out ${his} overalls so far that ${his} ripped abs are left uncovered.`); + r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} growing belly is left uncovered.`); } else { - r.push(`The sides of ${slave.slaveName}'s ripped abs peek out from behind ${his} overalls.`); + r.push(`${slave.slaveName}'s growing belly rounds out the front of ${his} overalls.`); } } - break; - case "a string bikini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 tremendously.`); + } 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 tremendously.`); + } else { + r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 tremendously.`); + } 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 tremendously.`); + } else { + r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 ${him}self 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a scalemail bikini": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 tremendously.`); - } 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 tremendously.`); - } else { - r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "striped panties": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 tremendously.`); - } 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 tremendously.`); - } else { - r.push(`${slave.slaveName}'s titanic 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "clubslut netting": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a cheerleader outfit": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 ${him}self 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "cutoffs and a t-shirt": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a slutty outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a bimbo outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a courtesan dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a slave gown": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "slutty business attire": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 garmit.`); - } 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 garmit.`); - } 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 garmit.`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 garmit.`); - } 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 garmit.`); - } 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 garmit.`); - } - } else if (slave.belly >= 600000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "nice business attire": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 garmit. ${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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 garmit.`); - } 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 garmit.`); - } - } else if (slave.belly >= 450000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 garmit.`); - } 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 garmit.`); - } - } else if (slave.belly >= 300000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 garmit.`); - } 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 garmit.`); - } - } else if (slave.belly >= 120000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 > 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 garmit.`); + } 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 garmit.`); + } 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 garmit.`); } - break; - case "harem gauze": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 accentuate its size and the movement of ${his} many unborn children.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} titanic bulging pregnancy.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive pregnancy.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 garmit.`); + } 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 garmit.`); + } 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 garmit.`); } - break; - case "a comfortable bodysuit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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) { - 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.bellyPreg >= 300000) { - 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.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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped`); - if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { - r.push(`navel and any movement ${his} babies make.`); - } else { - r.push(`navel.`); - } - } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} popped`); - if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { - r.push(`navel and any movement ${his} babies make.`); - } else { - r.push(`navel.`); - } - } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a slutty nurse outfit": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 over ${his} breasts with a length of red silk ribbon.`); - } 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 over ${his} breasts with a length of red silk ribbon.`); - } 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 over ${his} breasts with a length of red silk ribbon.`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 over ${his} breasts with a length of red silk ribbon.`); - } 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 over ${his} breasts with a length of red silk ribbon.`); - } 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 over ${his} breasts with a length of red silk ribbon.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic bulging pregnant belly leaving ${him} with only the button below ${his} breasts done.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive pregnant belly leaving ${him} with only the button below ${his} breasts done.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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} pants.`); + } else if (slave.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a schoolgirl outfit": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, showing off the mind boggling result of ${his} promiscuity.`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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.`); - } else { - r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic bulging pregnant belly, showing off the staggering result of ${his} promiscuity.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic bulging pregnant belly, showing off the result of ${his} promiscuity.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s blouse rests atop ${his} massive pregnant belly, leaving ${him} looking particularly slutty.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly, 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly, 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "a kimono": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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. 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. 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. 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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. It pools around ${him} when ${he} rests atop ${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. It pools around ${him} when ${he} rests atop ${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. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s titanic bulging pregnant belly parts the front of ${his} kimono leaving it gracefully hanging to its sides.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s massive pregnant belly parts the front of ${his} kimono leaving it gracefully covering its sides.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s big pregnant belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`); - } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "battledress": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, 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 ${his} unfathomable, hyper-swollen, implant-filled belly, leaving ${him} looking, falsely, like someone preparing to give birth to an army.`); - } else { - r.push(`${slave.slaveName}'s tank top rests atop ${his} unfathomable, hyper-swollen pregnant belly, leaving ${him} looking like someone preparing to give birth to an army.`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} monolithic, ${slave.inflationType}-filled belly, 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 ${his} monolithic, implant-filled belly, 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 ${his} monolithic pregnant belly, leaving ${him} looking like someone preparing to give birth to a regiment of soldiers.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} titanic bulging pregnant belly leaving ${him} looking like someone who fucked half the country.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s tank top rests atop ${his} massive pregnant belly leaving ${him} looking like someone who fucked all the locals.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a halter top dress": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic, ${slave.inflationType}-filled belly. ${His} squirming belly hangs out the hole it made.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic, implant-filled belly. ${His} squirming belly hangs out the hole it made.`); - } else { - r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic pregnant belly. ${His} squirming belly hangs out the hole it made.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} titanic bulging pregnant belly. ${His} squirming belly hangs out the hole it made.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} massive pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress as its seams strain to hold together.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a ball gown": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic, ${slave.inflationType}-filled belly while still maintaining its beauty.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic, implant-filled belly while still maintaining its beauty.`); - } else { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic pregnant belly while still maintaining its beauty.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic bulging pregnant belly while still maintaining its beauty.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} massive pregnant belly.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "slutty jewelry": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 the motion of ${his} squirming brood.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that constantly gets shifted around by ${his} squirming babies.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (slave.weight > 95) { - r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); - } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 garmit. ${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.`); } - break; - case "a leotard": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 tight leotard has exploded at the front, showing off ${his} monolithic, implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s tight leotard has exploded at the front, showing off every kick and movement within ${his} monolithic pregnant belly.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} titanic bulging pregnant belly. ${His} squirming belly protrudes from the various rips and tears that have begun appearing in the fabric.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} massive pregnant belly. The material tightly clings to ${his} popped navel and strains to hold together.`); - } 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} deep folds and rolls and strains to hold together under the immensely soft mass.`); - } else if (slave.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s tight leotard shows off`); - if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { - r.push(`every kick and movement within`); - } else { - r.push(`the curvature of`); - } - r.push(`${his} big pregnant belly. The material tightly clings to ${his} popped navel.`); - } 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 its mass.`); - } 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.`); - } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s tight leotard shows off`); - if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { - r.push(`every kick and movement within`); - } else { - r.push(`the curvature of`); - } - r.push(`${his} pregnant belly. The material tightly clings to ${his} popped navel.`); - } else if (slave.weight > 95) { - r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); - } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - r.push(`${slave.slaveName}'s tight leotard shows off ${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.belly >= 600000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 garmit.`); + } 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 garmit.`); } - break; - case "a cybersuit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic, ${slave.inflationType}-filled belly to swell out from it unconstrained.`); - } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic, implant-filled belly to swell out from it unconstrained.`); - } else { - r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic pregnant belly to swell out from it unconstrained.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} titanic bulging pregnant belly.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} massive pregnant belly.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s tight bodysuit shows off`); - if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { - r.push(`every kick and movement within`); - } else { - r.push(`the curvature of`); - } - r.push(`${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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s tight bodysuit shows off`); - if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { - r.push(`every kick and movement within`); - } else { - r.push(`the curvature of`); - } - r.push(`${his} pregnant belly. The material tightly clings to ${his} popped 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 450000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 garmit.`); + } 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 garmit.`); } - break; - case "a chattel habit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic, ${slave.inflationType}-filled belly.`); - } else if (slave.bellyImplant > 0) { - r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic, implant-filled belly.`); - } else { - r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic pregnant belly.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`The strip of cloth running down ${his} front is forced to one side by ${his} titanic bulging pregnant belly.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} massive 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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 forced to the side by ${his} big fat belly.`); - } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`The strip of cloth running down ${his} front is parted to one 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy 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.belly >= 300000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 garmit.`); + } 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 garmit.`); } - break; - case "a bunny outfit": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 has burst trying to contain ${his} monolithic, implant-filled belly, leaving it hanging out the hole it made.`); - } else { - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} monolithic pregnant belly, leaving it hanging out the hole it made.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} titanic bulging pregnant belly leaving it hanging out the hole it made.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} massive pregnant belly leaving it hanging out the hole it made.`); - } else if (slave.weight > 160) { - 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s teddy is stretched to tearing 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s teddy is stretched out 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.belly >= 120000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + } 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.`); } - break; - case "attractive lingerie for a pregnant woman": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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. ${His} silken vest sensually frames ${his} belly.`); - } else { - r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} brood-filled squirming belly.`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`${slave.slaveName}'s monolithic, ${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 monolithic, implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} belly.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} brood-filled squirming belly.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s titanic bulging pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled squirming belly.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled belly.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 belly.`); - } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy belly.`); - } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - r.push(`${slave.slaveName}'s growing belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swelling belly.`); - } 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.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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "a maternity dress": - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 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 monolithic 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} belly.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s titanic bulging pregnant belly strains ${his} dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} abnormal pregnancy.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} full pregnancy.`); - } else if (slave.weight > 160) { - r.push(`${slave.slaveName}'s hugely fat belly fills out ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - r.push(`${slave.slaveName}'s growing belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); - } else if (slave.weight > 30) { - r.push(`${slave.slaveName}'s chubby belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} pudgy belly.`); + } 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 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 accentuate its size and the movement of ${his} many unborn children.`); + } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} titanic bulging pregnancy.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} massive pregnancy.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "a comfortable bodysuit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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.`); } - break; - case "stretch pants and a crop-top": - if (slave.belly >= 1000000) { - // WIP// - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 hang freely.`); - } else { - r.push(`${slave.slaveName}'s monolithic pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); - } - } else if (slave.bellyPreg >= 600000) { - r.push(`${slave.slaveName}'s titanic bulging pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s massive pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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 chubby belly takes full advantage of ${his} exposed midriff to hang freely and obscure the top of ${his} stretch pants.`); + } else if (slave.bellyPreg >= 600000) { + 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.bellyPreg >= 300000) { + 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.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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} big pregnant belly, displaying ${his} popped`); + if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { + r.push(`navel and any movement ${his} babies make.`); + } else { + r.push(`navel.`); } - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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) { - r.push(`titanic, bulging pregnancy`); - } else if (slave.bellyPreg >= 300000) { - r.push(`massive pregnancy`); - } else if (slave.weight > 190) { - r.push(`massively fat belly`); - } else if (slave.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { - r.push(`huge pregnancy`); - } else if (slave.weight > 160) { - r.push(`hugely fat belly`); - } else if (slave.weight > 130) { - r.push(`big fat belly`); - } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`pregnant belly`); - } else if (slave.weight > 95) { - r.push(`fat belly`); - } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - r.push(`growing pregnancy`); - } else if (slave.weight > 30) { - r.push(`chubby belly`); - } - r.push(`by ${his} big tits, leaving it completely exposed to view.`); - } else { - if (slave.belly >= 1000000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`unfathomable, hyper-swollen, ${slave.inflationType}-filled belly`); - } else if (slave.bellyImplant > 0) { - r.push(`unfathomable, hyper-swollen, implant-filled belly`); - } else { - r.push(`unfathomable, hyper-swollen pregnant belly`); - } - } else if (slave.belly >= 750000) { - if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - 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) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic, bulging pregnancy, and can only rest atop it.`); - } else if (slave.bellyPreg >= 300000) { - r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive pregnancy, only resting atop it.`); - } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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.`); - } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty.`); - } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { - 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.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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} pregnant belly, displaying ${his} popped`); + if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { + r.push(`navel and any movement ${his} babies make.`); + } else { + r.push(`navel.`); } - } - - if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") { - if (slave.weight > 190) { - r.push(`Your sleek, slim society is absolutely appalled by ${his} horrendously bloated body.`); + } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "a slutty nurse outfit": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 over ${his} breasts with a length of red silk ribbon.`); + } 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 over ${his} breasts with a length of red silk ribbon.`); + } 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 over ${his} breasts with a length of red silk ribbon.`); + } + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 over ${his} breasts with a length of red silk ribbon.`); + } 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 over ${his} breasts with a length of red silk ribbon.`); + } 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 over ${his} breasts with a length of red silk ribbon.`); + } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic bulging pregnant belly leaving ${him} with only the button below ${his} breasts done.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} massive pregnant belly leaving ${him} with only the button below ${his} breasts done.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (slave.weight > 160) { - r.push(`Your sleek, slim society finds ${his} disgustingly bloated body repulsive.`); + 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(`Your sleek, slim society finds ${his} hugely bloated body disgusting.`); + 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.bellyPreg >= 5000 || (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 (slave.weight > 95) { - r.push(`Your sleek, slim society finds ${his} bloated body disgusting.`); + 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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(`Your sleek, slim society finds ${his} flabby body unsightly.`); + 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} pants.`); } - } - if (V.arcologies[0].FSRepopulationFocus !== "unset") { + break; + case "a schoolgirl outfit": if (slave.belly >= 1000000) { if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly near the pinnacle of fashion despite ${his} inability to have children.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly.`); } else if (slave.bellyImplant > 0) { - r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen, implant-filled belly near the pinnacle of fashion despite ${his} inability to have children.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly.`); } else { - r.push(`Your breeding focused society finds ${his} unfathomable, hyper-swollen pregnant belly the perfect realization of the fashionable ideal.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, showing off the mind boggling result of ${his} promiscuity.`); } } else if (slave.belly >= 750000) { if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`Your breeding focused society finds ${his} monolithic ${slave.inflationType}-filled belly highly fashionable despite ${his} inability to have children.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, ${slave.inflationType}-filled belly.`); } else if (slave.bellyImplant > 0) { - r.push(`Your breeding focused society finds ${his} monolithic implant-filled belly highly fashionable despite ${his} inability to have children.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic, implant-filled belly.`); } else { - r.push(`Your breeding focused society finds ${his} monolithic pregnant belly near to the perfect realization of the fashionable ideal.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic bulging pregnant belly, showing off the staggering result of ${his} promiscuity.`); } } else if (slave.bellyPreg >= 600000) { - r.push(`Your breeding focused society finds ${his} titanic bulging pregnant belly the epitome of fashion.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic bulging pregnant belly, showing off the result of ${his} promiscuity.`); } else if (slave.bellyPreg >= 300000) { - r.push(`Your breeding focused society finds ${his} massive pregnant belly extremely fashionable.`); - } else if (slave.bellyPreg >= 15000) { - r.push(`Your breeding focused society finds ${his} huge pregnant belly very fashionable.`); - } else if (slave.bellyPreg >= 10000) { - r.push(`Your breeding focused society finds ${his} big pregnant belly very fashionable.`); - } else if (slave.bellyPreg >= 5000) { - r.push(`Your breeding focused society finds ${his} pregnant belly fashionable.`); - } else if (slave.bellyPreg >= 1500) { - r.push(`Your breeding focused society finds a developing pregnancy very fashionable.`); + r.push(`${slave.slaveName}'s blouse rests atop ${his} massive pregnant belly, leaving ${him} looking particularly slutty.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s blouse rides up ${his} big pregnant belly, 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s blouse rides up ${his} pregnant belly, 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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 (V.arcologies[0].FSRepopulationFocusPregPolicy === 1 && slave.bellyPreg >= 1500) { - r.push(`Thanks to your trendsetting policies, society finds ${his} pregnant belly fashionable.`); - } else if (V.arcologies[0].FSRestart !== "unset") { + break; + case "a kimono": if (slave.belly >= 1000000) { if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly as equally unfathomably degenerate.`); + 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. 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(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen, implant-filled belly as equally unfathomably degenerate.`); + 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. 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(`Your eugenics obsessed society sees ${his} unfathomable, hyper-swollen pregnant belly the perfect antithesis of the fashionable ideal.`); + 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. 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { - r.push(`Your eugenics obsessed society sees ${his} monolithic ${slave.inflationType}-filled belly as absolutely degenerate.`); + 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. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass.`); } else if (slave.bellyImplant > 0) { - r.push(`Your eugenics obsessed society sees ${his} monolithic implant-filled belly as absolutely degenerate.`); + 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. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass.`); } else { - r.push(`Your eugenics obsessed society sees ${his} monolithic pregnant belly as a near perfect antithesis of the fashionable ideal.`); + 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. It pools around ${him} when ${he} rests atop ${his} belly's incredible mass.`); } } else if (slave.bellyPreg >= 600000) { - r.push(`Your eugenics obsessed society sees ${his} titanic bulging pregnant belly as the epitome of degeneracy.`); + r.push(`${slave.slaveName}'s titanic bulging pregnant belly parts the front of ${his} kimono leaving it gracefully hanging to its sides.`); } else if (slave.bellyPreg >= 300000) { - r.push(`Your eugenics obsessed society views ${his} massive pregnant belly as complete degeneracy.`); - } else if (slave.bellyPreg >= 15000) { - if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { - r.push(`Your eugenics obsessed society is pleased that ${he} is ripe with your child.`); - } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { - r.push(`Your eugenics obsessed society is pleased that ${he} is ripe with an Elite child.`); + r.push(`${slave.slaveName}'s massive pregnant belly parts the front of ${his} kimono leaving it gracefully covering its sides.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s big pregnant belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`); + } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "battledress": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, 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 ${his} unfathomable, hyper-swollen, implant-filled belly, leaving ${him} looking, falsely, like someone preparing to give birth to an army.`); } else { - r.push(`Your eugenics obsessed society finds ${his} huge pregnant belly absolutely disgusting.`); + r.push(`${slave.slaveName}'s tank top rests atop ${his} unfathomable, hyper-swollen pregnant belly, leaving ${him} looking like someone preparing to give birth to an army.`); } - } else if (slave.bellyPreg >= 10000) { - if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { - r.push(`Your eugenics obsessed society is pleased that ${he} is heavy with your child.`); - } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { - r.push(`Your eugenics obsessed society is pleased that ${he} is heavy with an Elite child.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} monolithic, ${slave.inflationType}-filled belly, 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 ${his} monolithic, implant-filled belly, leaving ${him} looking, falsely, like someone preparing to give birth to a regiment of soldiers.`); } else { - r.push(`Your eugenics obsessed society finds ${his} big pregnant belly absolutely disgusting.`); + r.push(`${slave.slaveName}'s tank top rests atop ${his} monolithic pregnant belly, leaving ${him} looking like someone preparing to give birth to a regiment of soldiers.`); } - } else if (slave.bellyPreg >= 5000) { - if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { - r.push(`Your eugenics obsessed society is pleased that ${he} is swollen with your child.`); - } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { - r.push(`Your eugenics obsessed society is pleased that ${he} is swollen with an Elite child.`); + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} titanic bulging pregnant belly leaving ${him} looking like someone who fucked half the country.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s tank top rests atop ${his} massive pregnant belly leaving ${him} looking like someone who fucked all the locals.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "a halter top dress": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic, ${slave.inflationType}-filled belly. ${His} squirming belly hangs out the hole it made.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic, implant-filled belly. ${His} squirming belly hangs out the hole it made.`); } else { - r.push(`Your eugenics obsessed society finds ${his} pregnant belly disgusting.`); + r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} monolithic pregnant belly. ${His} squirming belly hangs out the hole it made.`); } - } else if (slave.bellyPreg >= 1500) { - if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -1) { - r.push(`Your eugenics obsessed society is pleased that ${he} is swelling with your child.`); - } else if (slave.breedingMark === 1 && V.propOutcome === 1 && slave.pregSource === -6) { - r.push(`Your eugenics obsessed society is pleased that ${he} is swelling with an Elite child.`); + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} titanic bulging pregnant belly. ${His} squirming belly hangs out the hole it made.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} massive pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress as its seams strain to hold together.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${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.`); + } + break; + case "a ball gown": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic, ${slave.inflationType}-filled belly while still maintaining its beauty.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic, implant-filled belly while still maintaining its beauty.`); } else { - r.push(`Your eugenics obsessed society finds ${his} developing pregnancy insulting.`); + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} monolithic pregnant belly while still maintaining its beauty.`); } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic bulging pregnant belly while still maintaining its beauty.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} massive pregnant belly.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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 { - r.push(`${slave.slaveName}'s belly is bare and ready for surgery.`); - } - // closes surgery description - } - // closes show clothing - - if (slave.fuckdoll === 0) { - if (setup.fakeBellies.includes(slave.bellyAccessory)) { - switch (slave.bellyAccessory) { - case "a huge empathy belly": - r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a full-term pregnant woman carrying twins.`); - break; - case "a large empathy belly": - r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a full-term pregnant woman.`); - break; - case "a medium empathy belly": - r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a pregnant woman in ${his} second trimester.`); - break; - case "a small empathy belly": - r.push(`${He} is wearing a carefully sculpted silicone belly modeled after a pregnant woman in ${his} first trimester.`); - break; - } - if (V.showBodyMods === 1) { - if (slave.navelPiercing === 1) { - r.push(`${His} fake navel bears a simple stud.`); - } else if (slave.navelPiercing === 2) { - r.push(`${His} fake navel is pierced with a big ring.`); - if (slave.clothes === "slutty jewelry") { - r.push(`It has a length of gilded chain dangling from it.`); + break; + case "slutty jewelry": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 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(`It has a short length of chain dangling from it.`); + 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 the motion of ${his} squirming brood.`); + } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that constantly gets shifted around by ${his} squirming babies.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (slave.weight > 95) { + r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); + } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "a leotard": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 tight leotard has exploded at the front, showing off ${his} monolithic, implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s tight leotard has exploded at the front, showing off every kick and movement within ${his} monolithic pregnant belly.`); + } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} titanic bulging pregnant belly. ${His} squirming belly protrudes from the various rips and tears that have begun appearing in the fabric.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} massive pregnant belly. The material tightly clings to ${his} popped navel and strains to hold together.`); + } 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} deep folds and rolls and strains to hold together under the immensely soft mass.`); + } else if (slave.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s tight leotard shows off`); + if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { + r.push(`every kick and movement within`); + } else { + r.push(`the curvature of`); + } + r.push(`${his} big pregnant belly. The material tightly clings to ${his} popped navel.`); + } 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 its mass.`); + } 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.`); + } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s tight leotard shows off`); + if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { + r.push(`every kick and movement within`); + } else { + r.push(`the curvature of`); } + r.push(`${his} pregnant belly. The material tightly clings to ${his} popped navel.`); + } else if (slave.weight > 95) { + r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); + } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + r.push(`${slave.slaveName}'s tight leotard shows off ${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 (V.showBodyMods === 1) { - if (slave.navelPiercing === 1) { - r.push(`${His} navel bears a simple`); - if (slave.weight > 130) { - r.push(`stud, though it has since vanished into ${his} soft folds.`); + break; + case "a cybersuit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic, ${slave.inflationType}-filled belly to swell out from it unconstrained.`); + } else if (slave.bellyImplant > 0) { + r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic, implant-filled belly to swell out from it unconstrained.`); } else { - r.push(`stud.`); + r.push(`${slave.slaveName}'s tight bodysuit has been altered to allow ${his} monolithic pregnant belly to swell out from it unconstrained.`); } - } else if (slave.navelPiercing === 2) { - r.push(`${His} navel is pierced with a big`); - if (slave.weight > 130) { - r.push(`ring that just managed to extend out of the fat roll covering ${his} navel.`); + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} titanic bulging pregnant belly.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s tight bodysuit shows off every kick and movement within ${his} massive pregnant belly.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s tight bodysuit shows off`); + if (!["a huge empathy belly", "a large empathy belly"].includes(slave.bellyAccessory)) { + r.push(`every kick and movement within`); } else { - r.push(`ring.`); + r.push(`the curvature of`); } - if (slave.belly >= 10000) { - r.push(`It has a heavy bell dangling from it.`); - if (slave.bellyPreg >= 10000) { - r.push(`It sounds whenever ${his} bab`); - if (slave.pregType > 1) { - r.push(`ies`); - if (slave.pregType > 10) { - r.push(`kick, which is often`); - } else { - r.push(`kick.`); - } - } else { - r.push(`y kicks.`); - } - } - } else if (slave.clothes === "slutty jewelry") { - r.push(`It has a length of gilded chain dangling from it.`); + r.push(`${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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s tight bodysuit shows off`); + if (!["a medium empathy belly"].includes(slave.bellyAccessory)) { + r.push(`every kick and movement within`); + } else { + r.push(`the curvature of`); + } + r.push(`${his} pregnant belly. The material tightly clings to ${his} popped 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); + } + break; + case "a chattel habit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic, ${slave.inflationType}-filled belly.`); + } else if (slave.bellyImplant > 0) { + r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic, implant-filled belly.`); } else { - r.push(`It has a short length of chain dangling from it.`); + r.push(`The strip of cloth designed to run down ${his} front looks tiny as it rests atop ${his} monolithic pregnant belly.`); } + } else if (slave.bellyPreg >= 600000) { + r.push(`The strip of cloth running down ${his} front is forced to one side by ${his} titanic bulging pregnant belly.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} massive 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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 forced to the side by ${his} big fat belly.`); + } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`The strip of cloth running down ${his} front is parted to one 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy 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.`); } - if (slave.bellyTat !== 0) { - if (slave.belly >= 300000) { - if (slave.bellyTat === "a heart") { - r.push(`A heart is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } else if (slave.bellyTat === "a star") { - r.push(`A star is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } else if (slave.bellyTat === "a butterfly") { - r.push(`A butterfly is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } - } else if (slave.belly >= 150000) { - if (slave.bellyTat === "a heart") { - r.push(`A heart is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } else if (slave.bellyTat === "a star") { - r.push(`A star is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } else if (slave.bellyTat === "a butterfly") { - r.push(`A butterfly is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy.`); - } else { - r.push(`stomach.`); - } - } - } else if (slave.weight > 190 && slave.belly < 150000) { - r.push(`${He} has a tattoo around ${his} navel, but it is impossible to tell of what due to ${his} expansive fat rolls.`); - } else if (slave.belly >= 10000) { - if (slave.bellyTat === "a heart") { - r.push(`A heart is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); - } else if (slave.bellyTat === "a star") { - r.push(`A star is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); - } else if (slave.bellyTat === "a butterfly") { - r.push(`A butterfly is tattooed around ${his} popped navel, only to be truly seen when ${he} has a huge belly or is full-term.`); - } - } else if (slave.belly >= 5000 || slave.weight <= 190) { - r.push(`${He} has a barely recognizable tattoo around ${his} navel, it should reveal itself fully once ${he} is a little bigger.`); - } else if (slave.belly >= 1500) { - r.push(`${He} has an unrecognizable tattoo around ${his} navel, it has stretched slightly along with ${his} rounded middle.`); + break; + case "a bunny outfit": + if (slave.belly >= 1000000) { + // WIP// + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 has burst trying to contain ${his} monolithic, implant-filled belly, leaving it hanging out the hole it made.`); } else { - r.push(`${He} has an unrecognizable tattoo scrunched around ${his} navel.`); + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} monolithic pregnant belly, leaving it hanging out the hole it made.`); } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} titanic bulging pregnant belly leaving it hanging out the hole it made.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} massive pregnant belly leaving it hanging out the hole it made.`); + } else if (slave.weight > 160) { + 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s teddy is stretched to tearing 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s teddy is stretched out 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); } - if (slave.birthsTat > 0) { - if (slave.birthsTat > 1) { - r.push(`${He} has a series of ${slave.birthsTat} baby-shaped tattoos adorning ${his} stomach; one for each successful`); - if (slave.pregKnown === 1) { - r.push(`pregnancy and a temporary one for ${his} current pregnancy.`); - } else { - r.push(`pregnancy.`); - } + break; + case "attractive lingerie for a pregnant woman": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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. ${His} silken vest sensually frames ${his} belly.`); } else { - r.push(`${He} has a single baby-shaped`); - if (slave.pregKnown === 1) { - r.push(`tattoo, and one temporary one,`); - } else { - r.push(`tattoo`); - } - r.push(`adorning ${his} stomach.`); + r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} brood-filled squirming belly.`); } - } else if (slave.birthsTat === 0 && slave.abortionTat === -1 && slave.pregKnown === 1) { - r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`); - } - if (slave.abortionTat > 0) { - if (slave.abortionTat > 1) { - r.push(`${He} has a series of ${slave.abortionTat} crossed out baby-shaped`); - if (slave.pregKnown === 1) { - r.push(`tattoos, and one uncrossed one,`); - } else { - r.push(`tattoos`); - } - r.push(`adorning ${his} stomach; one for each pregnancy ${he}'s failed to complete.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`${slave.slaveName}'s monolithic, ${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 monolithic, implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} belly.`); } else { - r.push(`${He} has a single crossed out, baby-shaped`); - if (slave.pregKnown === 1) { - r.push(`tattoo, and one uncrossed one,`); - } else { - r.push(`tattoo`); - } - r.push(`adorning ${his} stomach.`); + r.push(`${slave.slaveName}'s monolithic pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} brood-filled squirming belly.`); } - } else if (slave.abortionTat === 0 && slave.birthsTat === -1 && slave.pregKnown === 1) { - r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`); - } - } - if (slave.breedingMark === 1) { - if (V.propOutcome === 1) { - r.push(`The Societal Elites' mark designating ${him} as a breeder is prominently displayed across ${his} lower belly, beneath ${his} navel.`); - } else { - r.push(`An alluring tattoo is prominently displayed across ${his} lower belly, beneath ${his} navel, urging ${him} to be bred.`); + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s titanic bulging pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled squirming belly.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s massive pregnant belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled belly.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 belly.`); + } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s pregnant belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy belly.`); + } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + r.push(`${slave.slaveName}'s growing belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swelling belly.`); + } 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.`); } - } - if (heavyBelly === 1) { - if (canWalk(slave)) { - r.push(`${His}`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancy`); + break; + case "a maternity dress": + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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(`stomach`); + 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.`); } - r.push(`is so massive that it is difficult for ${him} to move.`); - if (slave.muscles > 95) { - r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support it.`); - } else if (slave.muscles > 30) { - r.push(`${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms under ${his} belly to help take its weight.`); - } else if (slave.muscles > 5) { - r.push(`${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight.`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 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(`${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can.`); + r.push(`${slave.slaveName}'s monolithic 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} belly.`); } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s titanic bulging pregnant belly strains ${his} dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} abnormal pregnancy.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s massive pregnant belly fills ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`${slave.slaveName}'s big pregnant belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} full pregnancy.`); + } else if (slave.weight > 160) { + r.push(`${slave.slaveName}'s hugely fat belly fills out ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s pregnant belly fills out ${his} loose dress. ${His} dress 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. ${His} dress 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + r.push(`${slave.slaveName}'s growing belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} growing pregnancy.`); + } else if (slave.weight > 30) { + r.push(`${slave.slaveName}'s chubby belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} pudgy belly.`); + } + break; + case "stretch pants and a crop-top": + if (slave.belly >= 1000000) { + // WIP// } else if (slave.belly >= 750000) { - r.push(`It dwarfs ${his} torso, making ${him} a vestigial accessory to ${his} belly.`); - } else { - r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`); + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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 hang freely.`); + } else { + r.push(`${slave.slaveName}'s monolithic pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); + } + } else if (slave.bellyPreg >= 600000) { + r.push(`${slave.slaveName}'s titanic bulging pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s massive pregnant belly takes full advantage of ${his} exposed midriff to hang freely.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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 (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.bellyPreg >= 5000 || (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 (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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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 chubby belly takes full advantage of ${his} exposed midriff to hang freely and obscure the top of ${his} stretch pants.`); } - if (slave.assignment !== "labor in the production line" && slave.assignment !== "be confined in the arcade" && (slave.assignment !== "work in the dairy" || V.dairyRestraintsSetting < 2) && slave.belly >= 300000) { - if (V.pregAccessibility === 1) { - r.push(`Fortunately for ${him}, the penthouse is adapted for daily life with a`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnant`); + 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 (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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`); } - r.push(`belly`); - } else { - if (V.saleDescription === 1) { - r.push(`${He}'ll have`); + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`monolithic ${slave.inflationType}-filled belly`); + } else if (slave.bellyImplant > 0) { + r.push(`monolithic implant-filled belly`); } else { - r.push(`${He} has`); + r.push(`monolithic pregnant belly`); } - r.push(`trouble living in your penthouse, which is not designed for ${girl}s with`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnancies`); + } else if (slave.bellyPreg >= 600000) { + r.push(`titanic, bulging pregnancy`); + } else if (slave.bellyPreg >= 300000) { + r.push(`massive pregnancy`); + } else if (slave.weight > 190) { + r.push(`massively fat belly`); + } else if (slave.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (slave.bellyAccessory === "a large empathy belly")) { + r.push(`huge pregnancy`); + } else if (slave.weight > 160) { + r.push(`hugely fat belly`); + } else if (slave.weight > 130) { + r.push(`big fat belly`); + } else if (slave.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`pregnant belly`); + } else if (slave.weight > 95) { + r.push(`fat belly`); + } else if (((slave.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + r.push(`growing pregnancy`); + } else if (slave.weight > 30) { + r.push(`chubby belly`); + } + r.push(`by ${his} big tits, leaving it completely exposed to view.`); + } else { + if (slave.belly >= 1000000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + r.push(`unfathomable, hyper-swollen, ${slave.inflationType}-filled belly`); + } else if (slave.bellyImplant > 0) { + r.push(`unfathomable, hyper-swollen, implant-filled belly`); } else { - r.push(`bellies`); + r.push(`unfathomable, hyper-swollen pregnant belly`); } + } else if (slave.belly >= 750000) { + if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) { + 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) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} titanic, bulging pregnancy, and can only rest atop it.`); + } else if (slave.bellyPreg >= 300000) { + r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} massive pregnancy, only resting atop it.`); + } 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.bellyPreg >= 10000 || (slave.bellyAccessory === "a huge empathy belly") || (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.`); + } 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.bellyPreg >= 5000 || (slave.bellyAccessory === "a medium empathy belly")) { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} big pregnancy, leaving ${him} looking particularly slutty.`); + } 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.bellyPreg >= 1500) || (slave.bellyAccessory === "a small empathy belly"))) { + 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.`); } - r.push(`wider than a standard doorway.`); - } - } - } - } else { - if (slave.navelPiercing > 0 && V.showBodyMods === 1) { - if (slave.belly >= 10000) { - if (slave.navelPiercing === 1) { - r.push(`${His} popped navel bears a simple stud.`); - } else if (slave.navelPiercing === 2) { - r.push(`${His} popped navel is pierced with a big ring.`); } - r.push(`It's eye-catching, since most of ${his} piercings are hidden by the suit.`); - } else { - r.push(`${His} navel piercing runs through the suit's material.`); - } - } - if (heavyBelly === 1) { - r.push(`The difficulties of being enormously`); - if (slave.bellyPreg >= 3000) { - r.push(`pregnant`); - } else { - r.push(`swollen`); - } - r.push(`are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); } + + return r.join(" "); } return r.join(" "); }; diff --git a/src/npc/descriptions/belly/bellyImplant.js b/src/npc/descriptions/belly/bellyImplant.js index 29413aaaedc1095a225299c4ac3ac639e5b051b6..e9a4a1ccd624a9befda78f160d344f0eb55ba563 100644 --- a/src/npc/descriptions/belly/bellyImplant.js +++ b/src/npc/descriptions/belly/bellyImplant.js @@ -7,2091 +7,2140 @@ App.Desc.bellyImplant = function(slave) { const { he, him, his, hers, himself, boy, He, His } = getPronouns(slave); - if (slave.bellyImplant >= 32000) { - r.push(`${He} looks inhumanly pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} implant, all ${he} can do is lay on top of it. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely keeps ${his} grotesque belly off the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } else if (slave.height < 150) { - r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } else if (slave.muscles > 1) { - r.push(`and ${he} can barely hold ${his} overfilled belly upright. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } else { - r.push(`and ${he} is more belly than ${girl}. ${His} gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); - } - } else if (slave.bellyImplant >= 16000) { - r.push(`${He} looks unbelievably pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} implant; try as ${he} might, ${he} cannot even drag the massive thing. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame barely bears ${his} obscene, drum-taut belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } else if (slave.height < 150) { - r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body allows ${him} to carry ${his} obscene belly without too much trouble. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } else { - r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); - } - } else if (slave.bellyImplant >= 8000) { - r.push(`${He} looks hugely pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him}self and resembles an over inflated blow-up doll.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`); - } else { - r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`); - } - } else if (slave.bellyImplant >= 4000) { - r.push(`${He} looks pregnant,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} swollen belly dominates ${his} poor little frame.`); - } else if (slave.height >= 185) { - r.push(`but ${his} tall frame bears ${his} swollen belly well.`); - } else if (slave.height < 150) { - r.push(`and ${his} swollen belly dominates ${his} poor little frame.`); - } else if (slave.muscles > 30) { - r.push(`and ${his} fit body bears ${his} swollen belly well.`); + + r.push(shape()); + r.push(clothing()); + + if (slave.fuckdoll === 0) { + r.push(navel()); + r.push(tattoo()); + r.push(age()); + } else { + if (slave.navelPiercing > 0) { + if (slave.bellyImplant >= 4000) { + if (slave.navelPiercing === 1) { + r.push(`${His} popped navel bears a simple stud.`); + } else if (slave.navelPiercing === 2) { + r.push(`${His} popped navel is pierced with a big ring.`); + } + r.push(`It's eye-catching, since most of ${his} piercings are hidden by the suit.`); + } } else { - r.push(`and ${his} swollen belly dominates ${his} frame.`); + r.push(`${His} navel piercing runs through the suit's material.`); } - } else if (slave.bellyImplant >= 2000) { - r.push(`${He} looks bloated,`); - if (slave.physicalAge <= 3) { - r.push(`and ${his} swollen belly looks obscene on ${his} toddlerish body.`); - } else if (slave.physicalAge <= 12) { - r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight > 95) { - r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); - } else if (slave.height < 150) { - r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); - } else if (slave.weight < -10) { - r.push(`${his} thin form making ${his} swollen belly very obvious.`); - } else { - r.push(`the implant just beginning to visibly bulge ${his} belly.`); + if (slave.physicalAge >= 13) { + if (slave.bellyImplant >= 31000) { + r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); + } + } else if (slave.physicalAge >= 4) { + if (slave.bellyImplant >= 14000) { + r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); + } + } else if (slave.physicalAge < 4) { + if (slave.bellyImplant >= 10000) { + r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); + } } } - if (V.showClothing === 1 && V.saleDescription === 0) { - if (V.surgeryDescription === 0) { - if (slave.bellyImplant >= 32000) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s titanic implant-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} monstrous belly to hang out.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - break; - case "conservative clothing": - if (slave.boobs > 24000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly.`); - } else if ((slave.boobs > 12000)) { - r.push(`${slave.slaveName}'s titanic implant-filled belly 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} titanic implant-filled belly.`); - } 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.`); - } - break; - case "chains": - r.push(`${slave.slaveName}'s titanic implant-filled belly is tightly wrapped with chains; they can barely sink into the overfilled implant.`); - break; - case "Western clothing": - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s titanic implant-filled is covered in a sheen of stretch-mark defeating oil.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s titanic implant-filled sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} toga.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic implant-filled belly.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic implant-filled belly.`); - break; - case "uncomfortable straps": - r.push(`${slave.slaveName}'s slave outfit's straining straps barely press into ${his} titanic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s titanic bulging implant-filled is tightly bound with rope; they can barely sink into the overfilled implant`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s titanic bulging implant-filled greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s titanic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - break; - case "a courtesan dress": - 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.`); - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} lacy g-string.`); - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled middle.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silk panties.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s titanic implant-filled belly strains ${his} dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} abnormal midriff.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'s titanic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} immense stomach.`); - break; - case "a nice maid outfit": - r.push(`${slave.slaveName}'s maid dress was almost conservative, but it has burst open trying to contain ${his} titanic implant-filled belly. ${His} immense stomach hangs out the hole it made, its sides peeking out from behind ${his} apron.`); - break; - case "a fallen nuns habit": - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic implant-filled belly.`); - break; - case "a penitent nuns habit": - r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin, even more so, given the amount of skin it has to torment.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s titanic implant-filled belly hides most of ${his} string bikini.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} titanic implant-filled belly.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s cute panties expose ${his} titanic implant-filled belly.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s titanic implant-filled belly has burst through ${his} clubslut netting.`); - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} implant-filled pregnant belly making it look like that this cheerleader has fucked the entire school.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} titanic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} titanic implant-filled belly at all.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to hang free, demonstrating just how slutty ${he} is.`); - break; - case "a slave gown": - 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.`); - break; - case "slutty business attire": - 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 close them.`); - break; - case "nice business attire": - r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} titanic implant-filled belly.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`); - break; - case "a slutty nurse outfit": - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly, making ${him} look like the super promiscuous school slut.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s titanic implant-filled belly parts the front of ${his} kimono leaving it gracefully hanging to its sides.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a klan robe": - r.push(`${slave.slaveName}'s robe lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a burqa": - r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic implant-filled belly.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} titanic implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); - break; - case "a one-piece swimsuit": - r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a police uniform": - r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a hanbok": - r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`); - break; - case "a gothic lolita dress": - r.push(`${slave.slaveName}'s dress lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} titanic implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} titanic implant-filled belly.`); - break; - case "a Santa dress": - r.push(`The bottom of ${slave.slaveName}'s titanic implant-filled belly is stretching ${his} dress's belt to its breaking point.`); - break; - case "a burkini": - r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic implant-filled belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`); - break; - case "battledress": - r.push(`${slave.slaveName}'s tank top rests atop ${his} titanic implant-filled belly leaving ${him} looking like someone who fucked half the country.`); - break; - case "a halter top dress": - r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} titanic implant-filled belly. ${His} immense stomach hangs out the whole it made.`); - break; - case "a ball gown": - r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic implant-filled belly while still maintaining its beauty.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include a long thin chain that looks ready to snap as in encircles ${his} titanic implant-filled belly.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard shows off every`); - if (V.showInches === 2) { - r.push(`inch`); - } else { - r.push(`centimeter`); - } - r.push(`of ${his} titanic implant-filled belly. ${His} immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s titanic implant-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - 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.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is forced to one side by ${his} titanic implant-filled belly.`); - break; - case "a bunny outfit": - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`); - break; - case "spats and a tank top": - if (slave.boobs > 1200) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} titanic implant-filled belly by ${his} breasts.`); - } else { - r.push(`${slave.slaveName}'s top fails to cover ${his} titanic implant-filled belly at all.`); - } - break; - default: - } - if (V.arcologies[0].FSTransformationFetishist !== "unset") { - r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); - } - } else if (slave.bellyImplant >= 16000) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s gigantic implant-filled belly is strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s corset strains around ${his} monstrous belly.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - break; - case "conservative clothing": - if (slave.boobs > 20000) { - r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly.`); - } else if ((slave.boobs > 10000)) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`); - } else if ((slave.boobs > 8000)) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`); - } else if ((slave.boobs > 8000)) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} gigantic implant-filled belly.`); - } 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.`); - } - break; - case "chains": - r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly wrapped with chains causing it to bulge angrily.`); - break; - case "Western clothing": - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s gigantic implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage. The laces are straining to hold together.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s gigantic implant-filled belly is covered in a sheen of stretch-mark defeating oil.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} toga.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic implant-filled belly.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic implant-filled belly.`); - break; - case "uncomfortable straps": - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly bound with rope, flesh angrily bulges from between them.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s gigantic implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } else { - r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} lacy g-string.`); - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled belly.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silk panties.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s gigantic implant-filled belly fills ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} giant middle.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'s gigantic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); - break; - case "a nice maid outfit": - r.push(`${slave.slaveName}'s maid dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); - break; - case "a fallen nuns habit": - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic implant-filled belly.`); - break; - case "a penitent nuns habit": - r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} string bikini to either side.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} gigantic implant-filled belly.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s cute panties expose ${his} gigantic implant-filled belly.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s gigantic implant-filled belly has burst through ${his} clubslut netting.`); - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} gigantic implant-filled belly displaying that this cheerleader is a massive slut.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} gigantic implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} gigantic implant-filled belly at all.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName}'s gigantic implant-filled belly really shows how big of a slut ${he} is.`); - break; - case "a slave gown": - 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.`); - break; - case "slutty business attire": - 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 close them.`); - break; - case "nice business attire": - r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} gigantic implant-filled belly.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a slutty nurse outfit": - r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly, leaving ${him} looking particularly slutty.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s gigantic implant-filled belly parts the front of ${his} kimono leaving it gracefully covering its sides.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge implant-filled belly.`); - break; - case "a klan robe": - r.push(`${slave.slaveName}'s robe is straining to contain ${his} huge implant-filled belly.`); - break; - case "a burqa": - r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge implant-filled belly.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} huge implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); - break; - case "a one-piece swimsuit": - r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} huge implant-filled belly.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} huge implant-filled belly.`); - break; - case "a police uniform": - r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} huge implant-filled belly.`); - break; - case "a hanbok": - r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} huge implant-filled belly.`); - break; - case "a gothic lolita dress": - r.push(`${slave.slaveName}'s dress lies completely taut on ${his} huge implant-filled belly.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} huge implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} huge implant-filled belly.`); - break; - case "a Santa dress": - r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge implant-filled belly.`); - break; - case "a burkini": - r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge implant-filled belly.`); - break; - case "battledress": - r.push(`${slave.slaveName}'s tank top rests atop ${his} gigantic implant-filled belly leaving ${him} looking like someone who fucked all the locals.`); - break; - case "a halter top dress": - r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} gigantic implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress as its seams strain to hold together.`); - break; - case "a ball gown": - r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} gigantic implant-filled belly.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} gigantic implant-filled belly. The material tightly clings to ${his} popped navel and strains to hold together.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s gigantic implant-filled belly pushes the fabric of ${his} monokini to below ${his} popped navel.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge implant-filled belly.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} gigantic implant-filled belly.`); - break; - case "a bunny outfit": - r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} gigantic implant-filled belly, leaving it hanging out the hole it made.`); - break; - case "spats and a tank top": - if (slave.boobs > 1200) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} gigantic implant-filled belly by ${his} breasts.`); - } else { - r.push(`${slave.slaveName}'s top merely rests on ${his} gigantic implant-filled belly.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s gigantic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); - break; - case "a courtesan dress": - 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.`); - break; - default: - } - if (V.arcologies[0].FSTransformationFetishist !== "unset") { - r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); - } - } else if (slave.bellyImplant >= 8000) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s huge implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s huge implant-filled belly comfortably bulges out of ${his} corset.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); - break; - case "conservative clothing": - 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 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, 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} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} expanded middle.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'shuge implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - break; - case "chains": - r.push(`${slave.slaveName}'s huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); - break; - case "Western clothing": - 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.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} toga.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s huge implant-filled belly lifts ${his} huipil.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge implant-filled belly.`); - break; - case "uncomfortable straps": - 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. The straps connect to a steel ring encircling ${his} popped navel.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - 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 shirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - 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 shirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - 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 shirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - 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 shirt strains to contain ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - 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, obscuring ${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, obscuring ${his} trousers.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress barely clings to ${his} huge implant-filled belly.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge implant-filled belly.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} lacy g-string.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silk panties.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s huge implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that conceals only the upper part of ${his} stomach.`); - break; - case "a nice maid outfit": - 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.`); - break; - case "a fallen nuns habit": - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge implant-filled belly.`); - break; - case "a penitent nuns habit": - r.push(`${He} looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} string bikini to either side.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} huge implant-filled belly.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s cute panties expose ${his} huge implant-filled belly.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} huge implant-filled belly.`); - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge implant-filled belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} huge implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} huge implant-filled belly at all.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName}'s huge implant-filled belly really shows what a slut ${he} is.`); - break; - case "a slave gown": - 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.`); - break; - case "slutty business attire": - 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.`); - break; - case "nice business attire": - r.push(`${slave.slaveName}'s huge implant-filled belly strains ${his} specially tailored blouse and jacket.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a slutty nurse outfit": - 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.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse rides up ${his} huge implant-filled belly, leaving ${him} looking particularly slutty.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s huge implant-filled belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a klan robe": - r.push(`${slave.slaveName}'s robe is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a burqa": - r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`The leather material of ${slave.slaveName}'s pony outfit is noticeably rounded out by ${his} huge implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); - break; - case "a one-piece swimsuit": - r.push(`${slave.slaveName}'s swimsuit is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${slave.slaveName}'s sweater is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a police uniform": - r.push(`${slave.slaveName}'s uniform is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a hanbok": - r.push(`${slave.slaveName}'s hanbok is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a gothic lolita dress": - r.push(`${slave.slaveName}'s dress is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`${slave.slaveName}'s tank-top is noticeably rounded out by ${his} huge implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s shirt is noticeably rounded out by ${his} huge implant-filled belly.`); - break; - case "a Santa dress": - r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} huge implant-filled belly.`); - break; - case "a burkini": - r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} huge implant-filled belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} huge implant-filled belly.`); - break; - case "battledress": - r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} huge implant-filled belly, leaving ${him} looking like someone who had too much fun on shore leave.`); - break; - case "a halter top dress": - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through its front.`); - break; - case "a ball gown": - 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.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} huge implant-filled belly. The material tightly clings to ${his} popped navel.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s huge implant-filled belly pushes the fabric of ${his} monokini to rest just above ${his} popped navel.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} huge implant-filled belly.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} huge implant-filled belly.`); - break; - case "a bunny outfit": - r.push(`${slave.slaveName}'s teddy is stretched to tearing by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through the material.`); - break; - case "spats and a tank top": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 1200)) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} huge implant-filled belly by ${his} breasts.`); - } else { - r.push(`${slave.slaveName}'s top merely rests on ${his} huge implant-filled belly.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge implant-filled belly and ${his} thong strings forced to caress its curves.`); - break; - case "a courtesan dress": - r.push(`${slave.slaveName}'s huge implant-filled belly strains the ribs of ${his} corset.`); - break; - default: - } - if (V.arcologies[0].FSTransformationFetishist !== "unset") { - r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); - } - } else if (slave.bellyImplant >= 4000) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s implant-filled belly comfortably bulges out of ${his} corset.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s implant-filled belly is allowed to bulge out of a hole in the suit.`); - break; - case "conservative clothing": - if (slave.boobs > 20000) { - 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 > 10000)) { - 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.`); - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} rounded middle.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'s implant-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); - break; - case "chains": - r.push(`${slave.slaveName}'s implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); - break; - case "Western clothing": - r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s implant-filled belly parts ${his} toga.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s implant-filled belly lifts ${his} huipil.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} implant-filled belly.`); - break; - case "uncomfortable straps": - 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.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - 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, obscuring ${his} trousers.`); - } else { - r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-filled belly.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-filled belly.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s implant-filled belly hides ${his} lacy g-string.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silk panties.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s implant-filled belly sticks out of ${his} corset, which is laced above and below it.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} implant-filled belly, but the outfit includes a thin white blouse that conceals only the top half of ${his} stomach.`); - break; - case "a nice maid outfit": - r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-filled belly completely. Though it cannot hide ${his} popped navel poking through the front.`); - break; - case "a fallen nuns habit": - r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} implant-filled belly.`); - break; - case "a penitent nuns habit": - r.push(`${He} looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s implant-filled belly parts ${his} string bikini to either side.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} implant-filled belly.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s cute panties expose ${his} implant-filled belly.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} implant-filled belly.`); - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} implant-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-filled belly.`); - } else { - r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} implant-filled belly.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName}'s implant-filled belly really shows how big of a slut ${he} is.`); - break; - case "a slave gown": - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} implant-filled belly.`); - break; - case "slutty business attire": - r.push(`${slave.slaveName}'s implant-filled belly strains the buttons of ${his} suit jacket and blouse.`); - break; - case "nice business attire": - r.push(`${slave.slaveName}'s implant-filled belly looks good in ${his} specially tailored blouse and jacket.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-filled belly.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a slutty nurse outfit": - r.push(`${slave.slaveName}'s jacket barely closes over ${his} implant-filled belly leaving its buttons threatening to pop.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse rides up ${his} implant-filled belly, leaving ${him} looking particularly slutty.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s implant-filled belly is demurely covered by ${his} kimono.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s abaya is filled out by ${his} implant-filled belly.`); - break; - case "a klan robe": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robe, thanks to ${his} implant-filled belly.`); - break; - case "a burqa": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} implant-filled belly.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s pony outfit, thanks to ${his} implant-filled belly.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-filled belly.`); - break; - case "a one-piece swimsuit": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s swimsuit, thanks to ${his} implant-filled belly.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s sweater, thanks to ${his} implant-filled belly.`); - break; - case "a police uniform": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s uniform, thanks to ${his} implant-filled belly.`); - break; - case "a hanbok": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s hanbok, thanks to ${his} implant-filled belly.`); - break; - case "a gothic lolita dress": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s dress, thanks to ${his} implant-filled belly.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s tank-top, thanks to ${his} implant-filled belly.`); - 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": - r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s shirt, thanks to ${his} implant-filled belly.`); - break; - case "a Santa dress": - r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} implant-filled belly.`); - break; - case "a burkini": - r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} implant-filled belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} implant-filled belly.`); - break; - case "battledress": - 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.`); - break; - case "a halter top dress": - 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.`); - break; - case "a ball gown": - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} implant-filled belly but draw attention to it.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} implant-filled belly. The material tightly clings to ${his} popped navel.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s implant-filled belly pushes down the fabric of ${his} monokini down somewhat.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - r.push(`${slave.slaveName}'s apron is filled out by ${his} implant-filled belly.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} implant-filled belly.`); - break; - case "a bunny outfit": - r.push(`${slave.slaveName}'s teddy is stretched out by ${his} implant-filled belly. ${His} popped navel prominently pokes through the material.`); - break; - case "spats and a tank top": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 1200)) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-filled belly by ${his} breasts, allowing it to slightly obscure ${his} spats from view.`); - } else { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to slightly obscure ${his} spats from view.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} implant-filled belly.`); - break; - case "a courtesan dress": - r.push(`${slave.slaveName}'s implant-filled belly is carefully caressed by the ribs of ${his} corset.`); - break; - default: - } - if (V.arcologies[0].FSTransformationFetishist !== "unset") { - r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); - } + return r.join(" "); + + function shape() { + const r = []; + if (slave.bellyImplant >= 32000) { + r.push(`${He} looks inhumanly pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} implant, all ${he} can do is lay on top of it. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely keeps ${his} grotesque belly off the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } else if (slave.height < 150) { + r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } else if (slave.muscles > 1) { + r.push(`and ${he} can barely hold ${his} overfilled belly upright. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } else { + r.push(`and ${he} is more belly than ${girl}. ${His} gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`); + } + } else if (slave.bellyImplant >= 16000) { + r.push(`${He} looks unbelievably pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} implant; try as ${he} might, ${he} cannot even drag the massive thing. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame barely bears ${his} obscene, drum-taut belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } else if (slave.height < 150) { + r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body allows ${him} to carry ${his} obscene belly without too much trouble. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } else { + r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`); + } + } else if (slave.bellyImplant >= 8000) { + r.push(`${He} looks hugely pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him}self and resembles an over inflated blow-up doll.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`); + } else { + r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`); + } + } else if (slave.bellyImplant >= 4000) { + r.push(`${He} looks pregnant,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} swollen belly dominates ${his} poor little frame.`); + } else if (slave.height >= 185) { + r.push(`but ${his} tall frame bears ${his} swollen belly well.`); + } else if (slave.height < 150) { + r.push(`and ${his} swollen belly dominates ${his} poor little frame.`); + } else if (slave.muscles > 30) { + r.push(`and ${his} fit body bears ${his} swollen belly well.`); + } else { + r.push(`and ${his} swollen belly dominates ${his} frame.`); + } + } else if (slave.bellyImplant >= 2000) { + r.push(`${He} looks bloated,`); + if (slave.physicalAge <= 3) { + r.push(`and ${his} swollen belly looks obscene on ${his} toddlerish body.`); + } else if (slave.physicalAge <= 12) { + r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); } else if (slave.weight > 95) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`); - } else if ((slave.bellyAccessory === "a small empathy belly")) { - r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} huge gut.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - r.push(`${slave.slaveName}'s fat belly is cruelly squeezed by the suit.`); - break; - case "conservative clothing": - if (slave.boobs > 20000) { - 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 > 10000)) { - 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.`); - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); - break; - case "chains": - r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); - break; - case "Western clothing": - 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.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s toga can barely be pulled shut over ${his} fat belly.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} fat belly, allowing it to hang free.`); - break; - case "uncomfortable straps": - 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.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt 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.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt 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.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt 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.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); - } else if ((slave.boobs > 4000)) { - r.push(`${slave.slaveName}'s shirt 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.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - 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.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor tightly clings to ${his} fat belly.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of ${his} gut.`); - break; - case "a nice maid outfit": - 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.`); - break; - case "a fallen nuns habit": - 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.`); - break; - case "a penitent nuns habit": - r.push(`${His} fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} fat belly.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s cute panties expose ${his} fat belly.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} fat belly, forcing flab to poke through the mesh.`); - break; - case "a cheerleader outfit": - 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.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`); - } else { - r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`); - break; - case "a slave gown": - r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`); - break; - case "slutty business attire": - 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.`); - break; - case "nice business attire": - 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.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); - break; - case "a slutty nurse outfit": - 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.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`); - break; - case "a klan robe": - r.push(`${slave.slaveName}'s robe is filled out by ${his} fat belly.`); - break; - case "a burqa": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`${slave.slaveName}'s fat belly molds itself against ${his} pony outfit.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`); - break; - case "a one-piece swimsuit": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} swimsuit.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} sweater.`); - break; - case "a police uniform": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} uniform.`); - break; - case "a hanbok": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} hanbok.`); - break; - case "a gothic lolita dress": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} dress.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} tank-top.`); - 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": - r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} shirt.`); - break; - case "a Santa dress": - r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`); - break; - case "a burkini": - r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`); - break; - case "battledress": - r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`); - break; - case "a halter top dress": - 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.`); - break; - case "a ball gown": - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is gently sinks into ${his} fat belly.`); - break; - case "a bunny outfit": - 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.`); - break; - case "spats and a tank top": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 1200)) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts, allowing it to hang loose and obscure ${his} spats from view.`); - } else { - r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly draps over ${his} miniskirt.`); - break; - case "a courtesan dress": - r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`); - break; - default: - } - if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") { - r.push(`Your sleek, slim society finds ${his} bloated body unsightly.`); - } - } else if (slave.bellyImplant >= 2000) { - if (slave.bellyAccessory === "an extreme corset") { - r.push(`${slave.slaveName}'s implant-rounded belly is tightly compressed by ${his} corset causing ${his} distress.`); - } else if ((slave.bellyAccessory === "a corset")) { - r.push(`${slave.slaveName}'s implant-rounded belly comfortably rounds out ${his} corset.`); - } - switch (slave.clothes) { - case "a Fuckdoll suit": - 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.`); - break; - case "conservative clothing": - if (slave.boobs > 20000) { - 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 > 10000)) { - 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.`); - } - break; - case "attractive lingerie for a pregnant woman": - r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swollen belly.`); - break; - case "a maternity dress": - r.push(`${slave.slaveName}'s implant-rounded belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} swollen middle.`); - break; - case "stretch pants and a crop-top": - r.push(`${slave.slaveName}'s implant-rounded belly takes full advantage of ${his} exposed midriff to bulge freely.`); - break; - case "chains": - r.push(`${slave.slaveName}'s implant-rounded belly is tightly wrapped with chains.`); - break; - case "Western clothing": - r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} implant-rounded belly.`); - break; - case "body oil": - r.push(`${slave.slaveName}'s implant-rounded belly is covered in a sheen of oil.`); - break; - case "a toga": - r.push(`${slave.slaveName}'s implant-rounded belly gently bulges under ${his} toga.`); - break; - case "a huipil": - r.push(`${slave.slaveName}'s implant-rounded belly slightly bulges under ${his} huipil.`); - break; - case "a slutty qipao": - r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} implant-rounded belly.`); - break; - case "uncomfortable straps": - r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-rounded belly.`); - break; - case "shibari ropes": - r.push(`${slave.slaveName}'s implant-rounded belly is tightly bound with rope, flesh bulges from between them.`); - break; - case "a latex catsuit": - case "restrictive latex": - r.push(`${slave.slaveName}'s implant-rounded belly greatly bulges under ${his} latex suit.`); - break; - case "a military uniform": - if (slave.boobs > 6000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); - break; - } 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.`); - } - break; - case "a schutzstaffel uniform": - if (slave.boobs > 6000) { - 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.`); - } - break; - case "a slutty schutzstaffel uniform": - if (slave.boobs > 6000) { - 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.`); - } - break; - case "a red army uniform": - if (slave.boobs > 6000) { - 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.`); - } - break; - case "a nice nurse outfit": - if (slave.boobs > 6000) { - 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.`); - } - break; - case "a mini dress": - r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-rounded belly.`); - break; - case "battlearmor": - r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-rounded belly.`); - break; - case "a mounty outfit": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); - break; - case "lederhosen": - r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); - break; - case "a long qipao": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - break; - case "a dirndl": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - break; - case "a biyelgee costume": - r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); - break; - case "attractive lingerie": - r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} lacy g-string.`); - break; - case "kitty lingerie": - r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silk panties.`); - break; - case "a succubus outfit": - r.push(`${slave.slaveName}'s implant-rounded belly peeks out of ${his} corset, which is laced above and below it.`); - break; - case "a slutty maid outfit": - r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} implant-rounded belly.`); - break; - case "a nice maid outfit": - r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-rounded belly completely.`); - break; - case "a fallen nuns habit": - r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} implant-rounded belly.`); - break; - case "a penitent nuns habit": - r.push(`${slave.slaveName}'s habit gently bulges from ${his} implant-rounded belly. The coarse cloth aggravates ${his} sensitive skin.`); - break; - case "a string bikini": - r.push(`${slave.slaveName}'s implant-rounded belly juts out between the strings of ${his} bikini.`); - break; - case "a scalemail bikini": - r.push(`${slave.slaveName}'s implant-rounded belly juts out underneath ${his} bikini.`); - break; - case "striped panties": - r.push(`${slave.slaveName}'s implant-rounded belly juts out above ${his} panties.`); - break; - case "clubslut netting": - r.push(`${slave.slaveName}'s clubslut netting clings to ${his} implant-rounded belly.`); - break; - case "a cheerleader outfit": - r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} implant-rounded belly displaying how slutty this cheerleader is.`); - break; - case "cutoffs and a t-shirt": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 2000)) { - r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-rounded belly.`); - } else { - r.push(`${slave.slaveName}'s t-shirt bulges with ${his} implant-rounded belly. The bottom of which is beginning to peek from under ${his} T-shirt.`); - } - break; - case "a slutty outfit": - r.push(`${slave.slaveName}'s implant-rounded belly shows how big of a slut ${he} is.`); - break; - case "a slave gown": - r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} implant-rounded belly.`); - break; - case "slutty business attire": - r.push(`${slave.slaveName}'s implant-rounded belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); - break; - case "nice business attire": - r.push(`${slave.slaveName}'s implant-rounded belly bulges under ${his} tailored blouse and jacket.`); - break; - case "harem gauze": - r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-rounded middle.`); - break; - case "a comfortable bodysuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); - break; - case "a slutty nurse outfit": - r.push(`${slave.slaveName}'s jacket bulges with ${his} implant-rounded belly, which can be seen peeking out from underneath.`); - break; - case "a schoolgirl outfit": - r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); - break; - case "a kimono": - r.push(`${slave.slaveName}'s implant-rounded belly is demurely covered by ${his} kimono.`); - break; - case "a hijab and abaya": - case "a niqab and abaya": - r.push(`${slave.slaveName}'s abaya bulges with ${his} implant-rounded belly.`); - break; - case "a klan robe": - r.push(`${slave.slaveName}'s robe is filled out by ${his} implant-swollen belly.`); - break; - case "a burqa": - r.push(`${slave.slaveName}'s burqa is filled out by ${his} implant-swollen belly.`); - break; - case "a nice pony outfit": - case "a slutty pony outfit": - r.push(`${slave.slaveName}'s pony outfit is rounded out by ${his} implant-swollen belly.`); - 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": - r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-swollen belly.`); - break; - case "a one-piece swimsuit": - r.push(`${slave.slaveName}'s swimsuit is rounded out by ${his} implant-swollen belly.`); - break; - case "a sweater": - case "a sweater and cutoffs": - case "a sweater and panties": - r.push(`${slave.slaveName}'s sweater is rounded out by ${his} implant-swollen belly.`); - break; - case "a police uniform": - r.push(`${slave.slaveName}'s uniform is rounded out by ${his} implant-swollen belly.`); - break; - case "a hanbok": - r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} implant-swollen belly.`); - break; - case "a gothic lolita dress": - r.push(`${slave.slaveName}'s dress gently bulges from ${his} implant-swollen belly.`); - break; - case "a tank-top": - case "a tank-top and panties": - r.push(`${slave.slaveName}'s tank-top gently bulges from ${his} implant-swollen belly.`); - 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": - r.push(`${slave.slaveName}'s shirt covers most of ${his} implant-swollen belly.`); - break; - case "a Santa dress": - r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} implant-rounded belly.`); - break; - case "a burkini": - r.push(`${slave.slaveName}'s burkini gently bulges from ${his} implant-rounded belly.`); - break; - case "a hijab and blouse": - r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} implant-rounded belly.`); - break; - case "battledress": - 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.`); - break; - case "a halter top dress": - r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} implant-rounded belly.`); - break; - case "a ball gown": - r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} rounded middle.`); - break; - case "slutty jewelry": - r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} implant-rounded belly.`); - break; - case "a leotard": - r.push(`${slave.slaveName}'s tight leotard shows off ${his} implant-rounded belly.`); - break; - case "a monokini": - r.push(`${slave.slaveName}'s monokini is filled out by ${his} implant-rounded belly.`); - break; - case "overalls": - 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.`); - } - break; - case "an apron": - r.push(`${slave.slaveName}'s apron is rounded out by ${his} implant-rounded belly.`); - break; - case "a cybersuit": - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); - break; - case "a chattel habit": - r.push(`The strip of cloth running down ${his} front is pushed out by ${his} implant-rounded belly.`); - break; - case "a bunny outfit": - r.push(`${slave.slaveName}'s teddy bulges with ${his} implant-rounded belly.`); - break; - case "spats and a tank top": - if (slave.boobs > 4000) { - r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); - } else if ((slave.boobs > 1200)) { - r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-rounded belly by ${his} breasts.`); - } else { - r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`); - } - break; - case "a bimbo outfit": - r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} implant-rounded belly.`); - break; - case "a courtesan dress": - r.push(`${slave.slaveName}'s corset bulges with ${his} implant-rounded belly.`); - break; - default: - } - if (V.arcologies[0].FSTransformationFetishist !== "unset") { - r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + r.push(`but ${he}'s sufficiently overweight that it's not obvious.`); + } else if (slave.height < 150) { + r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`); + } else if (slave.weight < -10) { + r.push(`${his} thin form making ${his} swollen belly very obvious.`); + } else { + r.push(`the implant just beginning to visibly bulge ${his} belly.`); + } + } + return r.join(" "); + } + + function clothing() { + const r = []; + + if (V.showClothing === 1 && V.saleDescription === 0) { + if (V.surgeryDescription === 0) { + if (slave.bellyImplant >= 32000) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s titanic implant-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} monstrous belly to hang out.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); + break; + case "conservative clothing": + if (slave.boobs > 24000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly.`); + } else if ((slave.boobs > 12000)) { + r.push(`${slave.slaveName}'s titanic implant-filled belly 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} titanic implant-filled belly.`); + } 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.`); + } + break; + case "chains": + r.push(`${slave.slaveName}'s titanic implant-filled belly is tightly wrapped with chains; they can barely sink into the overfilled implant.`); + break; + case "Western clothing": + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s titanic implant-filled is covered in a sheen of stretch-mark defeating oil.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s titanic implant-filled sticks out of ${his} corset, which is laced above it as best ${he} can manage.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} toga.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic implant-filled belly.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic implant-filled belly.`); + break; + case "uncomfortable straps": + r.push(`${slave.slaveName}'s slave outfit's straining straps barely press into ${his} titanic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s titanic bulging implant-filled is tightly bound with rope; they can barely sink into the overfilled implant`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s titanic bulging implant-filled greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s titanic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + break; + case "a courtesan dress": + 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.`); + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} lacy g-string.`); + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled middle.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silk panties.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s titanic implant-filled belly strains ${his} dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} abnormal midriff.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'s titanic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} immense stomach.`); + break; + case "a nice maid outfit": + r.push(`${slave.slaveName}'s maid dress was almost conservative, but it has burst open trying to contain ${his} titanic implant-filled belly. ${His} immense stomach hangs out the hole it made, its sides peeking out from behind ${his} apron.`); + break; + case "a fallen nuns habit": + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic implant-filled belly.`); + break; + case "a penitent nuns habit": + r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin, even more so, given the amount of skin it has to torment.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s titanic implant-filled belly hides most of ${his} string bikini.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} titanic implant-filled belly.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s cute panties expose ${his} titanic implant-filled belly.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s titanic implant-filled belly has burst through ${his} clubslut netting.`); + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} implant-filled pregnant belly making it look like that this cheerleader has fucked the entire school.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} titanic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} titanic implant-filled belly at all.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to hang free, demonstrating just how slutty ${he} is.`); + break; + case "a slave gown": + 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.`); + break; + case "slutty business attire": + 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 close them.`); + break; + case "nice business attire": + r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} titanic implant-filled belly.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`); + break; + case "a slutty nurse outfit": + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly, making ${him} look like the super promiscuous school slut.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s titanic implant-filled belly parts the front of ${his} kimono leaving it gracefully hanging to its sides.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a klan robe": + r.push(`${slave.slaveName}'s robe lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a burqa": + r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic implant-filled belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} titanic implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`); + break; + case "a one-piece swimsuit": + r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a police uniform": + r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a hanbok": + r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`); + break; + case "a gothic lolita dress": + r.push(`${slave.slaveName}'s dress lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} titanic implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} titanic implant-filled belly.`); + break; + case "a Santa dress": + r.push(`The bottom of ${slave.slaveName}'s titanic implant-filled belly is stretching ${his} dress's belt to its breaking point.`); + break; + case "a burkini": + r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic implant-filled belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`); + break; + case "battledress": + r.push(`${slave.slaveName}'s tank top rests atop ${his} titanic implant-filled belly leaving ${him} looking like someone who fucked half the country.`); + break; + case "a halter top dress": + r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} titanic implant-filled belly. ${His} immense stomach hangs out the whole it made.`); + break; + case "a ball gown": + r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic implant-filled belly while still maintaining its beauty.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include a long thin chain that looks ready to snap as in encircles ${his} titanic implant-filled belly.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard shows off every`); + if (V.showInches === 2) { + r.push(`inch`); + } else { + r.push(`centimeter`); + } + r.push(`of ${his} titanic implant-filled belly. ${His} immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s titanic implant-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + 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.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is forced to one side by ${his} titanic implant-filled belly.`); + break; + case "a bunny outfit": + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`); + break; + case "spats and a tank top": + if (slave.boobs > 1200) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} titanic implant-filled belly by ${his} breasts.`); + } else { + r.push(`${slave.slaveName}'s top fails to cover ${his} titanic implant-filled belly at all.`); + } + break; + default: + } + if (V.arcologies[0].FSTransformationFetishist !== "unset") { + r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + } + } else if (slave.bellyImplant >= 16000) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s gigantic implant-filled belly is strains ${his} corset, threatening to burst it; one or the other will eventually win out.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s corset strains around ${his} monstrous belly.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.`); + break; + case "conservative clothing": + if (slave.boobs > 20000) { + r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly.`); + } else if ((slave.boobs > 10000)) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`); + } else if ((slave.boobs > 8000)) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`); + } else if ((slave.boobs > 8000)) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} gigantic implant-filled belly.`); + } 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.`); + } + break; + case "chains": + r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly wrapped with chains causing it to bulge angrily.`); + break; + case "Western clothing": + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s gigantic implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage. The laces are straining to hold together.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s gigantic implant-filled belly is covered in a sheen of stretch-mark defeating oil.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} toga.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic implant-filled belly.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic implant-filled belly.`); + break; + case "uncomfortable straps": + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling ${his} popped navel.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly bound with rope, flesh angrily bulges from between them.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s gigantic implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } else { + r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} lacy g-string.`); + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled belly.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silk panties.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s gigantic implant-filled belly fills ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} giant middle.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'s gigantic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`); + break; + case "a nice maid outfit": + r.push(`${slave.slaveName}'s maid dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`); + break; + case "a fallen nuns habit": + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic implant-filled belly.`); + break; + case "a penitent nuns habit": + r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} string bikini to either side.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} gigantic implant-filled belly.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s cute panties expose ${his} gigantic implant-filled belly.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s gigantic implant-filled belly has burst through ${his} clubslut netting.`); + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} gigantic implant-filled belly displaying that this cheerleader is a massive slut.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} gigantic implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} gigantic implant-filled belly at all.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName}'s gigantic implant-filled belly really shows how big of a slut ${he} is.`); + break; + case "a slave gown": + 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.`); + break; + case "slutty business attire": + 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 close them.`); + break; + case "nice business attire": + r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} gigantic implant-filled belly.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a slutty nurse outfit": + r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly, leaving ${him} looking particularly slutty.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s gigantic implant-filled belly parts the front of ${his} kimono leaving it gracefully covering its sides.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge implant-filled belly.`); + break; + case "a klan robe": + r.push(`${slave.slaveName}'s robe is straining to contain ${his} huge implant-filled belly.`); + break; + case "a burqa": + r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge implant-filled belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} huge implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); + break; + case "a one-piece swimsuit": + r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} huge implant-filled belly.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} huge implant-filled belly.`); + break; + case "a police uniform": + r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} huge implant-filled belly.`); + break; + case "a hanbok": + r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} huge implant-filled belly.`); + break; + case "a gothic lolita dress": + r.push(`${slave.slaveName}'s dress lies completely taut on ${his} huge implant-filled belly.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} huge implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} huge implant-filled belly.`); + break; + case "a Santa dress": + r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge implant-filled belly.`); + break; + case "a burkini": + r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge implant-filled belly.`); + break; + case "battledress": + r.push(`${slave.slaveName}'s tank top rests atop ${his} gigantic implant-filled belly leaving ${him} looking like someone who fucked all the locals.`); + break; + case "a halter top dress": + r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} gigantic implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress as its seams strain to hold together.`); + break; + case "a ball gown": + r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} gigantic implant-filled belly.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} gigantic implant-filled belly. The material tightly clings to ${his} popped navel and strains to hold together.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s gigantic implant-filled belly pushes the fabric of ${his} monokini to below ${his} popped navel.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge implant-filled belly.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} gigantic implant-filled belly.`); + break; + case "a bunny outfit": + r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} gigantic implant-filled belly, leaving it hanging out the hole it made.`); + break; + case "spats and a tank top": + if (slave.boobs > 1200) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} gigantic implant-filled belly by ${his} breasts.`); + } else { + r.push(`${slave.slaveName}'s top merely rests on ${his} gigantic implant-filled belly.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s gigantic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`); + break; + case "a courtesan dress": + 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.`); + break; + default: + } + if (V.arcologies[0].FSTransformationFetishist !== "unset") { + r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + } + } else if (slave.bellyImplant >= 8000) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s huge implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s huge implant-filled belly comfortably bulges out of ${his} corset.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`); + break; + case "conservative clothing": + 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 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, 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} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`); + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} expanded middle.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'shuge implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); + break; + case "chains": + r.push(`${slave.slaveName}'s huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); + break; + case "Western clothing": + 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.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} toga.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s huge implant-filled belly lifts ${his} huipil.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge implant-filled belly.`); + break; + case "uncomfortable straps": + 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. The straps connect to a steel ring encircling ${his} popped navel.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + 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 shirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + 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 shirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + 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 shirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + 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 shirt strains to contain ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + 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, obscuring ${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, obscuring ${his} trousers.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress barely clings to ${his} huge implant-filled belly.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge implant-filled belly.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} lacy g-string.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silk panties.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s huge implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that conceals only the upper part of ${his} stomach.`); + break; + case "a nice maid outfit": + 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.`); + break; + case "a fallen nuns habit": + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge implant-filled belly.`); + break; + case "a penitent nuns habit": + r.push(`${He} looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} string bikini to either side.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} huge implant-filled belly.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s cute panties expose ${his} huge implant-filled belly.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} huge implant-filled belly.`); + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge implant-filled belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} huge implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} huge implant-filled belly at all.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName}'s huge implant-filled belly really shows what a slut ${he} is.`); + break; + case "a slave gown": + 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.`); + break; + case "slutty business attire": + 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.`); + break; + case "nice business attire": + r.push(`${slave.slaveName}'s huge implant-filled belly strains ${his} specially tailored blouse and jacket.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a slutty nurse outfit": + 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.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse rides up ${his} huge implant-filled belly, leaving ${him} looking particularly slutty.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s huge implant-filled belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a klan robe": + r.push(`${slave.slaveName}'s robe is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a burqa": + r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`The leather material of ${slave.slaveName}'s pony outfit is noticeably rounded out by ${his} huge implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`); + break; + case "a one-piece swimsuit": + r.push(`${slave.slaveName}'s swimsuit is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${slave.slaveName}'s sweater is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a police uniform": + r.push(`${slave.slaveName}'s uniform is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a hanbok": + r.push(`${slave.slaveName}'s hanbok is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a gothic lolita dress": + r.push(`${slave.slaveName}'s dress is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`${slave.slaveName}'s tank-top is noticeably rounded out by ${his} huge implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s shirt is noticeably rounded out by ${his} huge implant-filled belly.`); + break; + case "a Santa dress": + r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} huge implant-filled belly.`); + break; + case "a burkini": + r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} huge implant-filled belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} huge implant-filled belly.`); + break; + case "battledress": + r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} huge implant-filled belly, leaving ${him} looking like someone who had too much fun on shore leave.`); + break; + case "a halter top dress": + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through its front.`); + break; + case "a ball gown": + 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.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} huge implant-filled belly. The material tightly clings to ${his} popped navel.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s huge implant-filled belly pushes the fabric of ${his} monokini to rest just above ${his} popped navel.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} huge implant-filled belly.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} huge implant-filled belly.`); + break; + case "a bunny outfit": + r.push(`${slave.slaveName}'s teddy is stretched to tearing by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through the material.`); + break; + case "spats and a tank top": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 1200)) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} huge implant-filled belly by ${his} breasts.`); + } else { + r.push(`${slave.slaveName}'s top merely rests on ${his} huge implant-filled belly.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge implant-filled belly and ${his} thong strings forced to caress its curves.`); + break; + case "a courtesan dress": + r.push(`${slave.slaveName}'s huge implant-filled belly strains the ribs of ${his} corset.`); + break; + default: + } + if (V.arcologies[0].FSTransformationFetishist !== "unset") { + r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + } + } else if (slave.bellyImplant >= 4000) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s implant-filled belly comfortably bulges out of ${his} corset.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s implant-filled belly is allowed to bulge out of a hole in the suit.`); + break; + case "conservative clothing": + if (slave.boobs > 20000) { + 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 > 10000)) { + 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.`); + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} rounded middle.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'s implant-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`); + break; + case "chains": + r.push(`${slave.slaveName}'s implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`); + break; + case "Western clothing": + r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s implant-filled belly parts ${his} toga.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s implant-filled belly lifts ${his} huipil.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} implant-filled belly.`); + break; + case "uncomfortable straps": + 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.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + 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, obscuring ${his} trousers.`); + } else { + r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-filled belly.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-filled belly.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s implant-filled belly hides ${his} lacy g-string.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silk panties.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s implant-filled belly sticks out of ${his} corset, which is laced above and below it.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} implant-filled belly, but the outfit includes a thin white blouse that conceals only the top half of ${his} stomach.`); + break; + case "a nice maid outfit": + r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-filled belly completely. Though it cannot hide ${his} popped navel poking through the front.`); + break; + case "a fallen nuns habit": + r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} implant-filled belly.`); + break; + case "a penitent nuns habit": + r.push(`${He} looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s implant-filled belly parts ${his} string bikini to either side.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} implant-filled belly.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s cute panties expose ${his} implant-filled belly.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} implant-filled belly.`); + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} implant-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-filled belly.`); + } else { + r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} implant-filled belly.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName}'s implant-filled belly really shows how big of a slut ${he} is.`); + break; + case "a slave gown": + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} implant-filled belly.`); + break; + case "slutty business attire": + r.push(`${slave.slaveName}'s implant-filled belly strains the buttons of ${his} suit jacket and blouse.`); + break; + case "nice business attire": + r.push(`${slave.slaveName}'s implant-filled belly looks good in ${his} specially tailored blouse and jacket.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-filled belly.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a slutty nurse outfit": + r.push(`${slave.slaveName}'s jacket barely closes over ${his} implant-filled belly leaving its buttons threatening to pop.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse rides up ${his} implant-filled belly, leaving ${him} looking particularly slutty.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s implant-filled belly is demurely covered by ${his} kimono.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s abaya is filled out by ${his} implant-filled belly.`); + break; + case "a klan robe": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robe, thanks to ${his} implant-filled belly.`); + break; + case "a burqa": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} implant-filled belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s pony outfit, thanks to ${his} implant-filled belly.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-filled belly.`); + break; + case "a one-piece swimsuit": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s swimsuit, thanks to ${his} implant-filled belly.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s sweater, thanks to ${his} implant-filled belly.`); + break; + case "a police uniform": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s uniform, thanks to ${his} implant-filled belly.`); + break; + case "a hanbok": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s hanbok, thanks to ${his} implant-filled belly.`); + break; + case "a gothic lolita dress": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s dress, thanks to ${his} implant-filled belly.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s tank-top, thanks to ${his} implant-filled belly.`); + 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": + r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s shirt, thanks to ${his} implant-filled belly.`); + break; + case "a Santa dress": + r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} implant-filled belly.`); + break; + case "a burkini": + r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} implant-filled belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} implant-filled belly.`); + break; + case "battledress": + 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.`); + break; + case "a halter top dress": + 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.`); + break; + case "a ball gown": + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} implant-filled belly but draw attention to it.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} implant-filled belly. The material tightly clings to ${his} popped navel.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s implant-filled belly pushes down the fabric of ${his} monokini down somewhat.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + r.push(`${slave.slaveName}'s apron is filled out by ${his} implant-filled belly.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} implant-filled belly.`); + break; + case "a bunny outfit": + r.push(`${slave.slaveName}'s teddy is stretched out by ${his} implant-filled belly. ${His} popped navel prominently pokes through the material.`); + break; + case "spats and a tank top": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 1200)) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-filled belly by ${his} breasts, allowing it to slightly obscure ${his} spats from view.`); + } else { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to slightly obscure ${his} spats from view.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} implant-filled belly.`); + break; + case "a courtesan dress": + r.push(`${slave.slaveName}'s implant-filled belly is carefully caressed by the ribs of ${his} corset.`); + break; + default: + } + if (V.arcologies[0].FSTransformationFetishist !== "unset") { + r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + } + } else if (slave.weight > 95) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`); + } else if ((slave.bellyAccessory === "a small empathy belly")) { + r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} huge gut.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + r.push(`${slave.slaveName}'s fat belly is cruelly squeezed by the suit.`); + break; + case "conservative clothing": + if (slave.boobs > 20000) { + 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 > 10000)) { + 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.`); + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`); + break; + case "chains": + r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); + break; + case "Western clothing": + 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.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s toga can barely be pulled shut over ${his} fat belly.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} fat belly, allowing it to hang free.`); + break; + case "uncomfortable straps": + 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.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt 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.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt 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.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt 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.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`); + } else if ((slave.boobs > 4000)) { + r.push(`${slave.slaveName}'s shirt 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.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + 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.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor tightly clings to ${his} fat belly.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of ${his} gut.`); + break; + case "a nice maid outfit": + 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.`); + break; + case "a fallen nuns habit": + 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.`); + break; + case "a penitent nuns habit": + r.push(`${His} fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} fat belly.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s cute panties expose ${his} fat belly.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} fat belly, forcing flab to poke through the mesh.`); + break; + case "a cheerleader outfit": + 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.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`); + } else { + r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`); + break; + case "a slave gown": + r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`); + break; + case "slutty business attire": + 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.`); + break; + case "nice business attire": + 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.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); + break; + case "a slutty nurse outfit": + 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.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`); + break; + case "a klan robe": + r.push(`${slave.slaveName}'s robe is filled out by ${his} fat belly.`); + break; + case "a burqa": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`${slave.slaveName}'s fat belly molds itself against ${his} pony outfit.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`); + break; + case "a one-piece swimsuit": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} swimsuit.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} sweater.`); + break; + case "a police uniform": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} uniform.`); + break; + case "a hanbok": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} hanbok.`); + break; + case "a gothic lolita dress": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} dress.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} tank-top.`); + 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": + r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} shirt.`); + break; + case "a Santa dress": + r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`); + break; + case "a burkini": + r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`); + break; + case "battledress": + r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`); + break; + case "a halter top dress": + 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.`); + break; + case "a ball gown": + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is gently sinks into ${his} fat belly.`); + break; + case "a bunny outfit": + 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.`); + break; + case "spats and a tank top": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 1200)) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts, allowing it to hang loose and obscure ${his} spats from view.`); + } else { + r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly draps over ${his} miniskirt.`); + break; + case "a courtesan dress": + r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`); + break; + default: + } + if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") { + r.push(`Your sleek, slim society finds ${his} bloated body unsightly.`); + } + } else if (slave.bellyImplant >= 2000) { + if (slave.bellyAccessory === "an extreme corset") { + r.push(`${slave.slaveName}'s implant-rounded belly is tightly compressed by ${his} corset causing ${his} distress.`); + } else if ((slave.bellyAccessory === "a corset")) { + r.push(`${slave.slaveName}'s implant-rounded belly comfortably rounds out ${his} corset.`); + } + switch (slave.clothes) { + case "a Fuckdoll suit": + 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.`); + break; + case "conservative clothing": + if (slave.boobs > 20000) { + 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 > 10000)) { + 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.`); + } + break; + case "attractive lingerie for a pregnant woman": + r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swollen belly.`); + break; + case "a maternity dress": + r.push(`${slave.slaveName}'s implant-rounded belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} swollen middle.`); + break; + case "stretch pants and a crop-top": + r.push(`${slave.slaveName}'s implant-rounded belly takes full advantage of ${his} exposed midriff to bulge freely.`); + break; + case "chains": + r.push(`${slave.slaveName}'s implant-rounded belly is tightly wrapped with chains.`); + break; + case "Western clothing": + r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} implant-rounded belly.`); + break; + case "body oil": + r.push(`${slave.slaveName}'s implant-rounded belly is covered in a sheen of oil.`); + break; + case "a toga": + r.push(`${slave.slaveName}'s implant-rounded belly gently bulges under ${his} toga.`); + break; + case "a huipil": + r.push(`${slave.slaveName}'s implant-rounded belly slightly bulges under ${his} huipil.`); + break; + case "a slutty qipao": + r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} implant-rounded belly.`); + break; + case "uncomfortable straps": + r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-rounded belly.`); + break; + case "shibari ropes": + r.push(`${slave.slaveName}'s implant-rounded belly is tightly bound with rope, flesh bulges from between them.`); + break; + case "a latex catsuit": + case "restrictive latex": + r.push(`${slave.slaveName}'s implant-rounded belly greatly bulges under ${his} latex suit.`); + break; + case "a military uniform": + if (slave.boobs > 6000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`); + break; + } 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.`); + } + break; + case "a schutzstaffel uniform": + if (slave.boobs > 6000) { + 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.`); + } + break; + case "a slutty schutzstaffel uniform": + if (slave.boobs > 6000) { + 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.`); + } + break; + case "a red army uniform": + if (slave.boobs > 6000) { + 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.`); + } + break; + case "a nice nurse outfit": + if (slave.boobs > 6000) { + 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.`); + } + break; + case "a mini dress": + r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-rounded belly.`); + break; + case "battlearmor": + r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-rounded belly.`); + break; + case "a mounty outfit": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); + break; + case "lederhosen": + r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`); + break; + case "a long qipao": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + break; + case "a dirndl": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + break; + case "a biyelgee costume": + r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`); + break; + case "attractive lingerie": + r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} lacy g-string.`); + break; + case "kitty lingerie": + r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silk panties.`); + break; + case "a succubus outfit": + r.push(`${slave.slaveName}'s implant-rounded belly peeks out of ${his} corset, which is laced above and below it.`); + break; + case "a slutty maid outfit": + r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} implant-rounded belly.`); + break; + case "a nice maid outfit": + r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-rounded belly completely.`); + break; + case "a fallen nuns habit": + r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} implant-rounded belly.`); + break; + case "a penitent nuns habit": + r.push(`${slave.slaveName}'s habit gently bulges from ${his} implant-rounded belly. The coarse cloth aggravates ${his} sensitive skin.`); + break; + case "a string bikini": + r.push(`${slave.slaveName}'s implant-rounded belly juts out between the strings of ${his} bikini.`); + break; + case "a scalemail bikini": + r.push(`${slave.slaveName}'s implant-rounded belly juts out underneath ${his} bikini.`); + break; + case "striped panties": + r.push(`${slave.slaveName}'s implant-rounded belly juts out above ${his} panties.`); + break; + case "clubslut netting": + r.push(`${slave.slaveName}'s clubslut netting clings to ${his} implant-rounded belly.`); + break; + case "a cheerleader outfit": + r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} implant-rounded belly displaying how slutty this cheerleader is.`); + break; + case "cutoffs and a t-shirt": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 2000)) { + r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-rounded belly.`); + } else { + r.push(`${slave.slaveName}'s t-shirt bulges with ${his} implant-rounded belly. The bottom of which is beginning to peek from under ${his} T-shirt.`); + } + break; + case "a slutty outfit": + r.push(`${slave.slaveName}'s implant-rounded belly shows how big of a slut ${he} is.`); + break; + case "a slave gown": + r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} implant-rounded belly.`); + break; + case "slutty business attire": + r.push(`${slave.slaveName}'s implant-rounded belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`); + break; + case "nice business attire": + r.push(`${slave.slaveName}'s implant-rounded belly bulges under ${his} tailored blouse and jacket.`); + break; + case "harem gauze": + r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-rounded middle.`); + break; + case "a comfortable bodysuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); + break; + case "a slutty nurse outfit": + r.push(`${slave.slaveName}'s jacket bulges with ${his} implant-rounded belly, which can be seen peeking out from underneath.`); + break; + case "a schoolgirl outfit": + r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`); + break; + case "a kimono": + r.push(`${slave.slaveName}'s implant-rounded belly is demurely covered by ${his} kimono.`); + break; + case "a hijab and abaya": + case "a niqab and abaya": + r.push(`${slave.slaveName}'s abaya bulges with ${his} implant-rounded belly.`); + break; + case "a klan robe": + r.push(`${slave.slaveName}'s robe is filled out by ${his} implant-swollen belly.`); + break; + case "a burqa": + r.push(`${slave.slaveName}'s burqa is filled out by ${his} implant-swollen belly.`); + break; + case "a nice pony outfit": + case "a slutty pony outfit": + r.push(`${slave.slaveName}'s pony outfit is rounded out by ${his} implant-swollen belly.`); + 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": + r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-swollen belly.`); + break; + case "a one-piece swimsuit": + r.push(`${slave.slaveName}'s swimsuit is rounded out by ${his} implant-swollen belly.`); + break; + case "a sweater": + case "a sweater and cutoffs": + case "a sweater and panties": + r.push(`${slave.slaveName}'s sweater is rounded out by ${his} implant-swollen belly.`); + break; + case "a police uniform": + r.push(`${slave.slaveName}'s uniform is rounded out by ${his} implant-swollen belly.`); + break; + case "a hanbok": + r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} implant-swollen belly.`); + break; + case "a gothic lolita dress": + r.push(`${slave.slaveName}'s dress gently bulges from ${his} implant-swollen belly.`); + break; + case "a tank-top": + case "a tank-top and panties": + r.push(`${slave.slaveName}'s tank-top gently bulges from ${his} implant-swollen belly.`); + 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": + r.push(`${slave.slaveName}'s shirt covers most of ${his} implant-swollen belly.`); + break; + case "a Santa dress": + r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} implant-rounded belly.`); + break; + case "a burkini": + r.push(`${slave.slaveName}'s burkini gently bulges from ${his} implant-rounded belly.`); + break; + case "a hijab and blouse": + r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} implant-rounded belly.`); + break; + case "battledress": + 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.`); + break; + case "a halter top dress": + r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} implant-rounded belly.`); + break; + case "a ball gown": + r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} rounded middle.`); + break; + case "slutty jewelry": + r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} implant-rounded belly.`); + break; + case "a leotard": + r.push(`${slave.slaveName}'s tight leotard shows off ${his} implant-rounded belly.`); + break; + case "a monokini": + r.push(`${slave.slaveName}'s monokini is filled out by ${his} implant-rounded belly.`); + break; + case "overalls": + 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.`); + } + break; + case "an apron": + r.push(`${slave.slaveName}'s apron is rounded out by ${his} implant-rounded belly.`); + break; + case "a cybersuit": + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`); + break; + case "a chattel habit": + r.push(`The strip of cloth running down ${his} front is pushed out by ${his} implant-rounded belly.`); + break; + case "a bunny outfit": + r.push(`${slave.slaveName}'s teddy bulges with ${his} implant-rounded belly.`); + break; + case "spats and a tank top": + if (slave.boobs > 4000) { + r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`); + } else if ((slave.boobs > 1200)) { + r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-rounded belly by ${his} breasts.`); + } else { + r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`); + } + break; + case "a bimbo outfit": + r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} implant-rounded belly.`); + break; + case "a courtesan dress": + r.push(`${slave.slaveName}'s corset bulges with ${his} implant-rounded belly.`); + break; + default: + } + if (V.arcologies[0].FSTransformationFetishist !== "unset") { + r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`); + } } + } else { + r.push(`${slave.slaveName}'s belly is bare and ready for surgery.`); } - } else { - r.push(`${slave.slaveName}'s belly is bare and ready for surgery.`); } + + return r.join(" "); } - if (slave.fuckdoll === 0) { + function navel() { + const r = []; if (slave.navelPiercing === 1) { r.push(`${His} navel bears a simple stud.`); } else if (slave.navelPiercing === 2) { @@ -2104,7 +2153,12 @@ App.Desc.bellyImplant = function(slave) { r.push(`It has a short length of chain dangling from it.`); } } + return r.join(" "); + } + function tattoo() { + const r = []; + // Belly tat if (slave.bellyTat !== 0) { if (slave.bellyImplant >= 32000) { if (slave.bellyTat === "a heart") { @@ -2189,6 +2243,11 @@ App.Desc.bellyImplant = function(slave) { } } + return r.join(" "); + } + + function age() { + const r = []; if (slave.physicalAge >= 13) { if (slave.bellyImplant >= 31000) { if (canWalk(slave)) { @@ -2286,34 +2345,6 @@ App.Desc.bellyImplant = function(slave) { } } } - } else { - if (slave.navelPiercing > 0) { - if (slave.bellyImplant >= 4000) { - if (slave.navelPiercing === 1) { - r.push(`${His} popped navel bears a simple stud.`); - } else if (slave.navelPiercing === 2) { - r.push(`${His} popped navel is pierced with a big ring.`); - } - r.push(`It's eye-catching, since most of ${his} piercings are hidden by the suit.`); - } - } else { - r.push(`${His} navel piercing runs through the suit's material.`); - } - if (slave.physicalAge >= 13) { - if (slave.bellyImplant >= 31000) { - r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); - } - } else if (slave.physicalAge >= 4) { - if (slave.bellyImplant >= 14000) { - r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); - } - } else if (slave.physicalAge < 4) { - if (slave.bellyImplant >= 10000) { - r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); - } - } + return r.join(" "); } - - - return r.join(" "); }; diff --git a/src/npc/descriptions/drugs.js b/src/npc/descriptions/drugs.js new file mode 100644 index 0000000000000000000000000000000000000000..158effb501c72aa0c83a962deb57aee845e9fc1c --- /dev/null +++ b/src/npc/descriptions/drugs.js @@ -0,0 +1,933 @@ +/** + * @param {App.Entity.SlaveState} slave + * @returns {string} + */ +App.Desc.drugs = function(slave) { + const r = []; + const { + he, him, his, hers, himself, boy, He, His + } = getPronouns(slave); + let ignoredRule; + if (slave.fuckdoll === 0) { + r.push(drugs()); + r.push(aphrodisiacs()); + } + + return r.join(" "); + + function drugs() { + const r = []; + switch (slave.drugs) { + case "priapism agents": + if (slave.dick > 0 && slave.dick <= 10) { + if (slave.chastityPenis === 1) { + r.push(`${He} can do nothing but writhe in agony at the pain of ${his} priapismic erection trapped in ${his} chastity cage.`); + } else { + if (slave.dick > 8) { + r.push(`${His} oversized dick is painfully engorged to a state of semi-hardness due to the priapism agents.`); + } else if (slave.dick > 6) { + r.push(`${He} sports a painful, oversized erection due to the priapism agents.`); + } else { + r.push(`${He} sports a throbbing, painful erection due to the priapism agents.`); + } + } + } + break; + case "super fertility drugs": + if (isFertile(slave) && slave.preg === 0) { + r.push(`${He} is constantly dripping sexual fluids and ${his} breasts and belly are slightly swollen. The super fertility drugs have ${him} ready to be impregnated.`); + } + break; + case "fertility drugs": + if (isFertile(slave) && slave.preg === 0) { + r.push(`${He} smells of sexual fluids and ${his} breasts are slightly swollen. The fertility drugs have ${him} ready to be impregnated.`); + } + break; + case "intensive breast injections": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} tits uncomfortably.`); + } else { + r.push(`${He} squirms under the unfamiliar weight on ${his} chest.`); + } + r.push(`The A-HGH must be having an effect, painfully stretching ${his} breasts as the mammary and adipose tissue underneath grows explosively.`); + break; + case "nipple enhancers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} nipples uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} breasts.`); + } + r.push(`The A-HGH must be having an effect, painfully causing ${his} body to expand ${his} nipples.`); + break; + case "hyper breast injections": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} tits uncomfortably.`); + } else { + r.push(`${He} squirms under the unfamiliar weight on ${his} chest.`); + } + r.push(`The HA-HGH must be having an effect, painfully stretching ${his} breasts as the mammary and adipose tissue underneath grows explosively.`); + break; + case "intensive butt injections": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} butt uncomfortably.`); + } else { + r.push(`${He} squirms against the unfamiliar weight on ${his} backside.`); + } + r.push(`The A-HGH must be having an effect, painfully stretching ${his} buttocks as the muscular and adipose tissue underneath grows explosively.`); + break; + case "hyper butt injections": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} butt uncomfortably.`); + } else { + r.push(`${He} squirms against the unfamiliar weight on ${his} backside.`); + } + r.push(`The HA-HGH must be having an effect, painfully stretching ${his} buttocks as the muscular and adipose tissue underneath grows explosively.`); + break; + case "intensive penis enhancement": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his}`); + if (slave.dick > 0) { + r.push(`dick`); + } else { + r.push(`clit`); + } + r.push(`uncomfortably.`); + } else { + r.push(`${He} squirms against the unfamiliar weight in ${his}`); + if (slave.dick > 0) { + r.push(`dick.`); + } else { + r.push(`clit.`); + } + } + r.push(`The A-HGH must be having an effect, painfully lengthening and thickening ${his}`); + if (slave.dick > 0) { + r.push(`dick.`); + } else { + r.push(`clit.`); + } + break; + case "intensive testicle enhancement": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably`); + } else { + r.push(`${He} squirms in response to the pressure in ${his} balls`); + } + r.push(`as a bead of cum forms on tip of ${his} dick. The A-HGH must be having an effect, painfully expanding ${his} testicles.`); + break; + case "hyper penis enhancement": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his}`); + if (slave.dick > 0) { + r.push(`dick`); + } else { + r.push(`clit`); + } + r.push(`uncomfortably.`); + } else { + r.push(`${He} squirms against the unfamiliar weight in ${his}`); + if (slave.dick > 0) { + r.push(`dick.`); + } else { + r.push(`clit.`); + } + } + r.push(`The HA-HGH must be having an effect, painfully lengthening and thickening ${his}`); + if (slave.dick > 0) { + r.push(`dick.`); + } else { + r.push(`clit.`); + } + break; + case "hyper testicle enhancement": + if (slave.balls < 20) { + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably`); + } else { + r.push(`${He} squirms in response to the pressure in ${his} balls`); + } + r.push(`as cum drools from the tip of ${his} dick. The HA-HGH must be having an effect, painfully expanding ${his} testicles.`); + } else if (slave.balls >= 50) { + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably`); + } else { + r.push(`${He} squirms in response to the pressure in ${his} balls`); + } + r.push(`as a thick cascade of cum pours from the tip of ${his} cock. The HA-HGH must be having an effect, painfully expanding ${his} testicles.`); + } else if (slave.balls >= 37) { + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably`); + } else { + r.push(`${He} squirms in response to the pressure in ${his} balls`); + } + r.push(`as cum freely flows from the tip of ${his} cock, pooling under ${him}. The HA-HGH must be having an effect, painfully expanding ${his} testicles.`); + } else if (slave.balls >= 20) { + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably`); + } else { + r.push(`${He} squirms in response to the pressure in ${his} balls`); + } + r.push(`as precum pools under ${him}. The HA-HGH must be having an effect, painfully expanding ${his} testicles.`); + } + break; + case "female hormone injections": + case "male hormone injections": + r.push(`${He} looks very ill, likely a side effect of the extreme hormone injections.`); + break; + case "appetite suppressors": + r.push(`Despite how little ${he} has been eating lately, ${his} stomach barely growls at all.`); + break; + case "penis atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} dick uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} dick.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} dick.`); + break; + case "testicle atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} balls uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} balls.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} testicles.`); + break; + case "clitoris atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} clit uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} clit.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} clitoris.`); + break; + case "labia atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} pussy uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} cunt.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} labia.`); + break; + case "nipple atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} nipples uncomfortably.`); + } else { + r.push(`${He} squirms in response to the discomfort in ${his} breasts.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} nipples.`); + break; + case "lip atrophiers": + if (hasAnyArms(slave)) { + r.push(`${He} massages ${his} lips uncomfortably.`); + } else { + r.push(`${He} licks ${his} lips uncomfortably.`); + } + r.push(`The A-TRPH must be having an effect, painfully causing ${his} body to atrophy ${his} lips.`); + break; + case "breast redistributors": + if (hasAnyArms(slave)) { + r.push(`${He} pinches at the fat building on ${his} belly and lets off a sigh.`); + } else { + r.push(`${He} squirms under the added weight building on ${his} belly.`); + } + r.push(`The RDST-D must be having an effect, encouraging ${his} body to redistribute ${his} breasts' adipose tissue to ${his} middle.`); + break; + case "butt redistributors": + if (hasAnyArms(slave)) { + r.push(`${He} pinches at the fat building on ${his} belly and lets off a sigh.`); + } else { + r.push(`${He} squirms under the added weight building on ${his} belly.`); + } + r.push(`The RDST-D must be having an effect, encouraging ${his} body to redistribute ${his} buttock's adipose tissue to ${his} middle.`); + break; + case "sag-B-gone": + r.push(`${His} breasts are shiny from the layer of anti-sag cream rubbed onto them. They might be a little perkier, or not.`); + break; + default: + } + return r.join(" "); + } + + function aphrodisiacs() { + const r = []; + if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiacs") { + if (slave.fetish === "mindbroken") { + ignoredRule = 1; + } else if (disobedience(slave) !== 0) { + ignoredRule = (disobedience(slave) >= jsRandom(1, 100)) ? 1 : 0; + } else { + ignoredRule = 0; + } + if (slave.inflationType === "aphrodisiacs" || slave.aphrodisiacs > 1) { + if (slave.inflationType === "aphrodisiacs") { + r.push(`${He}'s literally full of`); + } else { + r.push(`${He}'s swimming in`); + } + if (!hasAnyArms(slave)) { + r.push(`aphrodisiacs, but is an amputee, so ${he} cannot touch ${himself}. ${He} writhes with extreme sexual frustration, desperately trying to relieve`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more.`); + } else { + r.push(`${himself}.`); + } + } else if (slave.rules.release.masturbation === 0 && slave.rules.release.master === 0 && ignoredRule === 0) { + r.push(`aphrodisiacs, but is not permitted to touch ${him}self nor beg you for release. ${He} writhes with extreme sexual frustration, desperate to not break the rules in front of`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`you, but only manages to stir up the aphrodisiacs contained in ${his} gut, further strengthening their effects on ${him}.`); + } else { + r.push(`you.`); + } + if (canAchieveErection(slave)) { + if (slave.chastityPenis) { + r.push(`${His} cock agonizingly fills ${his} chastity cage, only adding to ${his} misery.`); + } else { + r.push(`${His} cock stands painfully erect, threatening to blow with the slightest contact.`); + } + } + } else if (!canDoVaginal(slave) && !canDoAnal(slave) && (slave.dick === 0 || slave.chastityPenis) && slave.fetish === "boobs" && slave.boobs > 300) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you, ${he}`); + if (slave.nipples === "fuckable") { + r.push(`uses`); + if (hasBothArms(slave)) { + r.push(`both hands`); + } else { + r.push(`${his} hand`); + } + r.push(`to vigorously fist ${his} nipples.`); + } else { + r.push(`viciously gropes, kneads and milks ${his} breasts, only stopping to occasionally focus on ${his} erect nipples.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`aphrodisiacs and is not allowed to masturbate so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you, ${he} desperately presents ${his} chest in the hopes you'll grab hold of ${his} favorite body parts.`); + } + } else if (canDoAnal(slave) && slave.fetish === "buttslut") { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he}`); + if (slave.anus === 0) { + r.push(`furiously rubs ${his} virgin anus and the sensitive perineum beneath it, desperately trying to either get ${him}self off or entice you into giving ${him} what ${he} needs.`); + } else { + r.push(`uses`); + if (slave.anus > 2) { + if (hasBothArms(slave)) { + r.push(`both hands,`); + } else { + r.push(`${his} entire fist,`); + } + } else { + r.push(`several fingers`); + } + r.push(`to vigorously fuck ${his} favorite hole.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`aphrodisiacs and is not allowed to masturbate so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you, ${he} desperately presents ${his} anus hoping to entice you into giving ${him} relief.`); + } + } else if (slave.vagina >= 0 && slave.dick > 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (!canDoVaginal(slave) && slave.chastityPenis) { + if (canDoAnal(slave)) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he}`); + if (slave.anus === 0) { + if (hasBothArms(slave)) { + r.push(`plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other,`); + } else { + r.push(`furiously rubs ${his} virgin anus and the sensitive perineum beneath it,`); + } + r.push(`desperately trying to get ${him}self off.`); + } else { + r.push(`uses`); + if (slave.anus > 2) { + r.push(`${his} entire hand, formed into a beak shape,`); + } else if (slave.anus > 1) { + r.push(`two fingers`); + } else { + r.push(`a finger`); + } + r.push(`to fuck ${his} own ass.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`aphrodisiacs, but is wearing full chastity and cannot touch ${him}self. ${He} writhes with extreme sexual frustration, desperately trying to relieve`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more`); + } else { + r.push(`${himself}.`); + } + } + } else if (canDoVaginal(slave)) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} fingers ${his} vagina with`); + if (hasBothArms(slave)) { + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`one hand while ${he} fingers ${his} anus with the other.`); + } else { + r.push(`one hand while ${he} plays with a nipple with the other.`); + } + } else { + r.push(`${his} hand.`); + } + } else if (!slave.chastityPenis) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} rubs ${his} shaft with`); + if (hasBothArms(slave)) { + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`one hand while ${he} fingers ${his} anus with the other.`); + } else { + r.push(`both hands.`); + } + } else { + r.push(`${his} hand.`); + } + if (canPenetrate(slave)) { + r.push(`${His} cock is painfully erect.`); + } + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} rubs ${his} shaft`); + if (hasBothArms(slave)) { + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`and pussy with one hand while ${he} fingers ${his} anus with the other.`); + } else { + r.push(`one hand while ${he} fingers ${his} pussy with the other.`); + } + } else { + r.push(`and pussy with ${his} hand.`); + } + if (canAchieveErection(slave)) { + r.push(`${His} cock is painfully erect.`); + } else { + r.push(`${His} cock is painfully engorged.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic masturbation forces ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } + } else { + r.push(`aphrodisiacs and is not allowed to masturbate so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} desperately presents ${his} open mouth, ${his}`); + if (slave.boobs >= 300) { + r.push(`breasts,`); + } else { + r.push(`chest,`); + } + if (canDoVaginal(slave) || !slave.chastityPenis) { + if (!canDoAnal(slave)) { + r.push(`and`); + } + r.push(`${his} crotch,`); + } + if (canDoAnal(slave)) { + if (canDoVaginal(slave) || !slave.chastityPenis) { + r.push(`and`); + } + r.push(`${his} anus`); + } + if (!canDoVaginal(slave) && !slave.chastityPenis && !canDoAnal(slave)) { + r.push(`and ${his} chastity`); + } + r.push(`in turn, hoping that something will entice you to give ${him} relief.`); + if (slave.chastityPenis) { + r.push(`${His} cock agonizingly fills ${his} chastity cage, only adding to ${his} misery.`); + } else if (canAchieveErection(slave)) { + r.push(`${His} cock stands painfully erect, threatening to blow with the slightest contact.`); + } else { + r.push(`${His} cock is painfully engorged and ready to burst at the slightest touch.`); + } + } + } else if (slave.vagina >= 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (!canDoVaginal(slave)) { + if (canDoAnal(slave)) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he}`); + if (slave.anus === 0) { + if (hasBothArms(slave)) { + r.push(`plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other,`); + } else { + r.push(`furiously rubs ${his} virgin anus and the sensitive perineum beneath it,`); + } + r.push(`desperately trying to get ${him}self off.`); + } else { + r.push(`uses`); + if (slave.anus > 2) { + r.push(`${his} entire hand, formed into a beak shape,`); + } else if (slave.anus > 1) { + r.push(`two fingers`); + } else { + r.push(`a finger`); + } + r.push(`to fuck ${his} own ass.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`aphrodisiacs, but is wearing a chastity belt and cannot touch ${him}self. ${He} writhes with extreme sexual frustration, desperately trying to relieve`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more.`); + } else { + r.push(`${himself}.`); + } + } + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} rubs ${his} clit with`); + if (hasBothArms(slave)) { + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`one hand while ${he} fingers ${his} anus with the other.`); + } else { + r.push(`one hand while ${he} plays with a nipple with the other.`); + } + } else { + r.push(`${his} hand.`); + } + } + } else { + r.push(`aphrodisiacs and is not allowed to masturbate so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} desperately presents ${his} open mouth, ${his}`); + if (slave.boobs >= 300) { + r.push(`breasts,`); + } else { + r.push(`chest,`); + } + if (canDoVaginal(slave)) { + if (!canDoAnal(slave)) { + r.push(`and`); + } + r.push(`${his} crotch,`); + } + if (canDoAnal(slave)) { + if (canDoVaginal(slave)) { + r.push(`and`); + } + r.push(`${his} anus`); + } + if (!canDoVaginal(slave) && !slave.chastityAnus) { + r.push(`and ${his} chastity belts`); + } + r.push(`in turn, hoping that something will entice you to give ${him} relief.`); + } + } else if (slave.dick > 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (slave.chastityPenis) { + if (canDoAnal(slave)) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he}`); + if (slave.anus === 0) { + if (hasBothArms(slave)) { + r.push(`plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other,`); + } else { + r.push(`furiously rubs ${his} virgin anus and the sensitive perineum beneath it,`); + } + r.push(`desperately trying to get ${him}self off.`); + } else { + r.push(`uses`); + if (slave.anus > 2) { + r.push(`${his} entire hand, formed into a beak shape,`); + } else if (slave.anus > 1) { + r.push(`two fingers`); + } else { + r.push(`a finger`); + } + r.push(`to fuck ${his} own ass.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`aphrodisiacs, but is wearing a chastity cage and cannot touch ${him}self. ${He} writhes with extreme sexual frustration, desperately trying to relieve`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${himself}, but only managing to stir up the aphrodisiacs contained in ${his} gut, strengthening their effects even more`); + } else { + r.push(`${himself}.`); + } + } + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} rubs ${his} shaft with`); + if (hasBothArms(slave)) { + if (canDoAnal(slave) && slave.anus > 0) { + r.push(`one hand while ${he} fingers ${his} anus with the other.`); + } else { + r.push(`both hands.`); + } + } else { + r.push(`${his} hand.`); + } + if (canAchieveErection(slave)) { + r.push(`${His} cock is painfully erect.`); + } else { + r.push(`${His} cock is painfully engorged.`); + } + } + } else { + r.push(`aphrodisiacs and is not allowed to masturbate so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} desperately presents ${his} open mouth, ${his}`); + if (slave.boobs >= 300) { + r.push(`breasts,`); + } else { + r.push(`chest,`); + } + if (!canDoAnal(slave)) { + r.push(`and`); + } + r.push(`${his} crotch,`); + if (canDoAnal(slave)) { + r.push(`and ${his} anus`); + } + r.push(`in turn, hoping that something will entice you to give ${him} relief.`); + if (slave.chastityPenis) { + r.push(`${His} chastity cage painfully squeezes ${his} cock.`); + } else if (canAchieveErection(slave)) { + r.push(`${His} cock is painfully erect.`); + } else { + r.push(`${His} cock is painfully engorged.`); + } + } + } else { + // no tools + r.push(`aphrodisiacs, has`); + if (V.seeDicks > 0) { + r.push(`no penis and`); + } + r.push(`no vagina, and`); + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he}`); + if (canDoAnal(slave)) { + if (slave.anus === 0) { + r.push(`plays with a nipple with one hand while furiously rubbing ${his} virgin anus and the sensitive perineum beneath it with the other, desperately trying to get ${him}self off.`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + r.push(`uses`); + if (slave.anus > 2) { + r.push(`${his} entire hand, formed into a beak shape,`); + } else if (slave.anus > 1) { + r.push(`two fingers`); + } else { + r.push(`a finger`); + } + r.push(`to fuck ${his} own ass.`); + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } + } else if (slave.fetish === "boobs") { + r.push(`furiously works ${his} rock-hard nipples.`); + } else { + r.push(`writhes with extreme sexual frustration, desperately trying to relieve ${him}self despite ${his} anal chastity.`); + } + if (slave.inflationType === "aphrodisiacs") { + r.push(`${His} frantic attempts force ${his} distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`); + } + } else { + if (canDoAnal(slave)) { + r.push(`and is not allowed to masturbate, so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} desperately presents ${his} asshole, hoping you'll fuck ${his} only real source of relief.`); + } else { + r.push(`and is locked in anal chastity, so as ${he}`); + if (hasAnyLegs(slave)) { + r.push(`stands`); + } else { + r.push(`sits`); + } + r.push(`before you ${he} desperately presents ${his} rear, hoping to entice you into removing ${his} belt and taking ${him} right there.`); + } + } + } + } else { + r.push(`${He}'s on`); + if (!hasAnyArms(slave)) { + r.push(`aphrodisiacs, but is an amputee, so ${he} cannot touch ${him}self. ${He} writhes with sexual frustration.`); + } else if (slave.rules.release.masturbation === 0 && slave.rules.release.master === 0 && ignoredRule === 0) { + r.push(`aphrodisiacs, but is not permitted to touch ${him}self nor beg you for release, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably.`); + if (canAchieveErection(slave) && !slave.chastityPenis) { + r.push(`${His} erect dick sways as ${he} does.`); + } + } else if (slave.vagina >= 0 && slave.dick > 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (!canDoVaginal(slave) && slave.chastityPenis) { + r.push(`aphrodisiacs, but is wearing chastity and cannot touch ${him}self. ${He} writhes with sexual frustration as ${he} runs ${his}`); + if (hasBothArms(slave)) { + r.push(`hands`); + } else { + r.push(`hand`); + } + r.push(`across ${his} body.`); + } else if (canDoVaginal(slave)) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he} obeys your commands ${he} idly rubs ${his} pussy with`); + if (hasBothArms(slave)) { + r.push(`one hand while the other pinches a nipple.`); + } else { + r.push(`${his} hand.`); + } + } else if (!slave.chastityPenis) { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he} obeys your commands ${he} idly rubs ${his} shaft with`); + if (hasBothArms(slave)) { + r.push(`one hand while the other pinches a nipple.`); + } else { + r.push(`${his} hand.`); + } + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he} obeys your commands ${he} idly rubs ${his} shaft`); + if (hasBothArms(slave)) { + r.push(`with one hand while ${he} fingers ${his} pussy with the other.`); + } else { + r.push(`and pussy with ${his} hand.`); + } + } + } else { + r.push(`aphrodisiacs, but is not permitted to touch ${him}self, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably.`); + if (canAchieveErection(slave) && !slave.chastityPenis) { + r.push(`${His} erect dick sways as ${he} does.`); + } + } + } else if (slave.vagina >= 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (!canDoVaginal(slave)) { + r.push(`aphrodisiacs, but is wearing a chastity belt and cannot touch ${him}self. ${He} writhes with sexual frustration.`); + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he} obeys your commands ${he} idly rubs ${his} pussy with`); + if (hasBothArms(slave)) { + r.push(`one hand while the other pinches a nipple.`); + } else { + r.push(`${his} hand.`); + } + } + } else { + r.push(`aphrodisiacs, but is not permitted to touch ${him}self, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably.`); + } + } else if (slave.dick > 0) { + if (slave.rules.release.masturbation === 1 || ignoredRule === 1) { + if (slave.chastityPenis) { + r.push(`aphrodisiacs, but is wearing a chastity cage and cannot touch ${him}self. ${He} writhes with sexual frustration.`); + } else { + r.push(`aphrodisiacs and`); + if (ignoredRule === 1) { + r.push(`has disregarded ${his} masturbation restriction,`); + } else { + r.push(`is allowed to masturbate,`); + } + r.push(`so as ${he} obeys your commands ${he} idly rubs ${his} shaft with`); + if (hasBothArms(slave)) { + r.push(`one hand while the other pinches a nipple.`); + } else { + r.push(`${his} hand.`); + } + } + } else { + r.push(`aphrodisiacs, but is not permitted to touch ${him}self, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably.`); + if (canAchieveErection(slave) && !slave.chastityPenis) { + r.push(`${His} erect dick sways as ${he} does.`); + } + } + } else { + r.push(`aphrodisiacs, but has`); + if (V.seeDicks > 0) { + r.push(`no penis and`); + } + r.push(`no vagina no touch, so as ${he} obeys your commands ${he} shifts ${his} weight uncomfortably.`); + } + } + } + if (slave.addict > 0 && slave.addict <= 2) { + r.push(`${He} is a new <span class="cyan">aphrodisiac addict.</span>`); + } else if (slave.addict > 0 && slave.addict < 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.`); + } + return r.join(" "); + } +}; diff --git a/src/npc/descriptions/mind.js b/src/npc/descriptions/mind.js new file mode 100644 index 0000000000000000000000000000000000000000..490ffad3dc99cb871547dd83dd8cb551e6f1e41b --- /dev/null +++ b/src/npc/descriptions/mind.js @@ -0,0 +1,705 @@ +/** + * @param {App.Entity.SlaveState} slave + * @returns {string} + */ +App.Desc.mind = function(slave) { + const r = []; + const { + he, him, his, hers, himself, boy, He, His + } = getPronouns(slave); + if (slave.fuckdoll === 0) { + r.push(App.Desc.eyes(slave)); + + if (slave.fetish === "mindbroken") { + r.push(`However, <span class="coral">${his} mind is fundamentally broken;</span> everything ${he} experiences will quickly be forgotten.`); + } + + r.push(behavioralFlaws()); + r.push(behavioralQuirks()); + r.push(sexualFlaws()); + r.push(sexualQuirk()); + r.push(fetish()); + r.push(attraction()); + } else { + r.push(`It's impossible to tell what intelligence or inclinations a Fuckdoll might have by looking at it, but the most recent records indicate that this one is`); + if (slave.intelligence + slave.intelligenceImplant > 95) { + r.push(`<span class="deepskyblue">brilliant</span>`); + } else if (slave.intelligence + slave.intelligenceImplant > 50) { + r.push(`<span class="deepskyblue">highly intelligent</span>`); + } else if (slave.intelligence + slave.intelligenceImplant > 15) { + r.push(`of <span class="deepskyblue">above average intelligence</span>`); + } else if (slave.intelligence + slave.intelligenceImplant >= -15) { + r.push(`of average intelligence`); + } else if (slave.intelligence + slave.intelligenceImplant >= -50) { + r.push(`of <span class="orangered">below average intelligence</span>`); + } else if (slave.intelligence + slave.intelligenceImplant >= -95) { + r.push(`<span class="orangered">very stupid</span>`); + } else if (slave.intelligence + slave.intelligenceImplant >= -100) { + r.push(`<span class="orangered">a moron</span>`); + } + if (slave.intelligence >= -15) { + if (slave.intelligenceImplant < 15) { + r.push(`but is uneducated.`); + } else if (slave.intelligenceImplant >= 30) { + r.push(`and is well educated.`); + } else { + r.push(`and is educated.`); + } + } else { + if (slave.intelligenceImplant < 15) { + r.push(`and is uneducated.`); + } else if (slave.intelligenceImplant >= 30) { + r.push(`but is well educated.`); + } else { + r.push(`but is educated.`); + } + } + + if (slave.behavioralFlaw !== "none" || slave.sexualFlaw !== "none" || slave.behavioralQuirk !== "none" || slave.sexualQuirk !== "none") { + if (slave.behavioralFlaw !== "none" || slave.sexualFlaw !== "none") { + r.push(`${His} remaining mental flaws are likewise impossible to discern, but if ${he} was allowed out of ${his} suit, this Fuckdoll would probably still`); + if (slave.behavioralFlaw !== "none") { + switch (slave.behavioralFlaw) { + case "hates men": + r.push(`<span class="red">hate men</span>`); + break; + case "hates women": + r.push(`<span class="red">hate women</span>`); + break; + case "gluttonous": + r.push(`be a <span class="red">stress eater</span>`); + break; + default: + r.push(`be <span class="red">${slave.behavioralFlaw}</span>`); + } + } if (slave.sexualFlaw !== "none") { + if (slave.behavioralFlaw !== "none") { + r.push(`and would still`); + } + switch (slave.sexualFlaw) { + case "hates oral": + r.push(`<span class="red">hate oral.</span>`); + break; + case "hates anal": + r.push(`<span class="red">hate anal.</span>`); + break; + case "hates penetration": + r.push(`<span class="red">hate penetration.</span>`); + break; + case "cum addict": + r.push(`a <span class="yellow">cum addict.</span>`); + break; + case "anal addict": + r.push(`an <span class="yellow">anal addict.</span>`); + break; + case "attention whore": + r.push(`an <span class="yellow">attention whore.</span>`); + break; + case "breast growth": + r.push(`have a <span class="yellow">breast obsession.</span>`); + break; + case "breeder": + r.push(`have a <span class="yellow">breeding obsession.</span>`); + break; + default: + r.push(`be <span class="red">${slave.sexualFlaw}.</span>`); + } + } else { + r.push(`to an unacceptable degree.`); + } + } + if (slave.behavioralQuirk !== "none" || slave.sexualQuirk !== "none") { + r.push(`${His} character seems to retain some distinctiveness; ${he} may still`); + if (slave.behavioralQuirk !== "none") { + r.push(`be`); + switch (slave.behavioralQuirk) { + case "fitness": + r.push(`<span class="green">a fitness fanatic</span>`); + break; + case "adores women": + r.push(`<span class="green">adore women</span>`); + break; + case "adores men": + r.push(`<span class="green">adore men</span>`); + break; + case "advocate": + r.push(`<span class="green">an advocate</span>`); + break; + default: + r.push(`<span class="green">${slave.behavioralQuirk}</span>`); + } + } + if (slave.sexualQuirk !== "none") { + if (slave.behavioralQuirk !== "none") { + r.push(`and still`); + } + r.push(`be`); + switch (slave.sexualQuirk) { + case "romantic": + case "perverted": + case "caring": + case "unflinching": + r.push(`<span class="green"> ${slave.sexualQuirk}.</span>`); + break; + default: + r.push(`a <span class="green"> ${slave.sexualQuirk}.</span>`); + } + } else { + r.push(`in there.`); + } + } + } + + if (slave.fetishKnown === 1) { + r.push(`${His} recent biomedical readings indicate that ${he} still prefers`); + switch (slave.fetish) { + case "submissive": + r.push(`<span class="lightcoral">being forced to submit</span>`); + break; + case "cumslut": + r.push(`<span class="lightcoral">being facefucked</span>`); + break; + case "humiliation": + r.push(`<span class="lightcoral">being fucked in public</span>`); + break; + case "buttslut": + r.push(`<span class="lightcoral">being sodomized</span>`); + break; + case "boobs": + r.push(`<span class="lightcoral">having ${his} breasts handled</span>`); + break; + case "pregnancy": + r.push(`<span class="lightcoral">being inseminated</span>`); + break; + case "dom": + case "sadist": + r.push(`<span class="lightcoral">being on top</span>`); + break; + case "masochist": + r.push(`<span class="lightcoral">being hurt</span>`); + break; + default: + r.push(`<span class="lightcoral">having vanilla sex</span>`); + } + r.push(`to any other kind of use.`); + } + + if (slave.attrKnown === 1) { + r.push(`${His} suit usually forces ${him} to become aroused for use, but when ${he}'s allowed to react naturally, ${he} has`); + if (slave.energy > 95) { + r.push(`a <span class="green">nymphomaniac</span> need`); + } else if (slave.energy > 80) { + r.push(`a <span class="green">pathological need</span>`); + } else if (slave.energy > 60) { + r.push(`a <span class="green">powerful need</span>`); + } else if (slave.energy > 40) { + r.push(`a <span class="yellow">healthy need</span>`); + } else if (slave.energy > 20) { + r.push(`a <span class="red">weak need</span>`); + } else { + r.push(`<span class="red">no need</span>`); + } + r.push(`for external sexual stimulation, acts`); + if (slave.attrXX <= 15) { + r.push(`<span class="red">revolted</span>`); + } else if (slave.attrXX <= 35) { + r.push(`<span class="red">unhappy</span>`); + } else if (slave.attrXX <= 65) { + r.push(`indifferent`); + } else if (slave.attrXX <= 85) { + r.push(`<span class="green">eager</span>`); + } else { + r.push(`<span class="green">very enthusiastic</span>`); + } + r.push(`when a pussy is pressed against ${his} face hole, and`); + if (slave.attrXY <= 15) { + r.push(`<span class="red">struggles</span>`); + } else if (slave.attrXY <= 35) { + r.push(`<span class="red">does not react positively</span>`); + } else if (slave.attrXY <= 65) { + r.push(`does not react significantly`); + } else if (slave.attrXY <= 85) { + r.push(`<span class="green">seems pleased</span>`); + } else { + r.push(`is <span class="green">very happy</span>`); + } + r.push(`when a dick is pushed inside`); + if (canDoVaginal(slave) && slave.vagina > 0 && canDoAnal(slave) && slave.anus > 0) { + r.push(`either of ${his} lower holes.`); + } else if (canDoVaginal(slave) && slave.vagina > 0) { + r.push(`${his} front hole.`); + } else if (canDoAnal(slave) && slave.anus > 0) { + r.push(`${his} rear hole.`); + } else { + r.push(`it.`); + } + } + } + + function behavioralFlaws() { + const r = []; + if (slave.behavioralFlaw === "arrogant") { + if (slave.devotion < -20 && slave.trust >= -20) { + r.push(`${He} is <span class="red">arrogant</span> and clings to ${his} dignity.`); + } else if (slave.devotion < -20) { + r.push(`${He} is still <span class="red">arrogant</span> at heart, but does ${his} best to hide it out of fear.`); + } else if (slave.devotion <= 20) { + r.push(`${He} is <span class="red">arrogant</span> and seems to think slavery beneath ${him}.`); + } else { + r.push(`Despite being well broken, ${he} seems to retain hints of <span class="red">arrogance.</span>`); + } + } else if (slave.behavioralFlaw === "bitchy") { + if (slave.devotion < -20 && slave.trust >= -20) { + r.push(`${He} is <span class="red">bitchy</span> and insults you every chance ${he} gets.`); + } else if (slave.devotion < -20) { + r.push(`${He} is still <span class="red">bitchy</span> at times, but does ${his} best to keep quiet out of fear.`); + } else if (slave.devotion <= 20) { + r.push(`${He} is <span class="red">bitchy</span> and constantly tries to get a word in edgewise.`); + } else { + r.push(`Since ${he} is well broken, ${he} tries to confine ${his} <span class="red">bitchy</span> remarks to your other slaves.`); + } + } else if (slave.behavioralFlaw === "liberated") { + if (slave.devotion < -20 && slave.trust >= -20) { + r.push(`${He} strongly believes that <span class="red">slavery is wrong,</span> and resists it as best ${he} can.`); + } else if (slave.devotion < -20) { + r.push(`${He} strongly believes that <span class="red">slavery is wrong,</span> but usually keeps quiet out of fear.`); + } else if (slave.devotion <= 20) { + r.push(`${He} strongly believes that <span class="red">slavery is wrong,</span> and rarely misses a chance to complain about it.`); + } else { + r.push(`${He} strongly believes that <span class="red">slavery is wrong,</span> but has learned to keep it to ${him}self.`); + } + } else if (slave.behavioralFlaw === "devout") { + r.push(`${He} is <span class="red">devoutly religious,</span>`); + if (slave.devotion < -20 && slave.trust >= -20) { + r.push(`and uses ${his} faith as a wellspring of resistance.`); + } else if (slave.devotion < -20) { + r.push(`and uses ${his} faith as a place of refuge.`); + } else if (slave.devotion <= 20) { + r.push(`and uses ${his} faith as a private place within ${him}self.`); + } else { + r.push(`but has learned to keep ${his} faith private.`); + } + } else if (slave.behavioralFlaw === "odd") { + r.push(`${He} behaves <span class="red">oddly,</span> saying and doing random things.`); + } else if (slave.behavioralFlaw === "hates men") { + r.push(`${He} <span class="red">strongly dislikes</span> being around`); + if (slave.attrXY >= 85 && slave.energy >= 40) { + r.push(`men; since ${he} loves the dick, ${he}'s forced to put up with them.`); + } else if (slave.attrXY >= 65 && slave.energy >= 40) { + r.push(`men; since ${he} likes the dick, ${he} reluctantly puts up with them.`); + } else { + r.push(`men.`); + } + } else if (slave.behavioralFlaw === "hates women") { + r.push(`${He} <span class="red">strongly dislikes</span> being around`); + if (slave.attrXX >= 85 && slave.energy >= 40) { + r.push(`women; since ${he} loves pussy, ${he}'s forced to put up with them.`); + } else if ((slave.attrXX >= 65) && (slave.energy >= 40)) { + r.push(`women; since ${he} likes pussy, ${he} reluctantly puts up with them.`); + } else { + r.push(`women.`); + } + } else if (slave.behavioralFlaw === "anorexic") { + r.push(`${He} suffers from <span class="red">anorexia.</span>`); + } else if (slave.behavioralFlaw === "gluttonous") { + r.push(`${He} <span class="red">tends to overeat</span> whenever ${he} can, reacting to the rigors of sexual slavery with overeating.`); + } + return r.join(" "); + } + function behavioralQuirks() { + const r = []; + switch (slave.behavioralQuirk) { + case "confident": + r.push(`${He}'s <span class="green">confident,</span> and believes that ${he} has something of value to offer, even as a slave.`); + break; + case "cutting": + r.push(`${He} often has a witty or <span class="green">cutting</span> remark ready, but knows when to keep them to ${him}self.`); + break; + case "funny": + r.push(`${He}'s <span class="green">funny,</span> often providing a little comic relief.`); + break; + case "adores women": + r.push(`${He} <span class="green">adores women,</span> and loves spending time with them.`); + break; + case "adores men": + r.push(`${He} <span class="green">adores men,</span> and loves spending time with them.`); + break; + case "fitness": + r.push(`${He}'s a <span class="green">fitness fanatic,</span> and almost gets off to a hard workout.`); + break; + case "insecure": + r.push(`${He}'s <span class="green">insecure,</span> defining ${his} self worth by how much others want to fuck ${him}.`); + break; + case "sinful": + if (V.arcologies[0].FSChattelReligionist === "unset") { + r.push(`${He}'s delightfully <span class="green">sinful,</span> taking real pleasure in breaking cultural mores.`); + } else { + r.push(`${He}'s a devout Chattel Religionist, and is aggressively <span class="green">sinful</span> against old world faiths. ${He} is enthusiastic about slutty religious clothing, and excited by intentional sacrilege like openly using old world religious icons as sex toys or having orgies on altars.`); + } + break; + case "advocate": + r.push(`${He}'s an <span class="green">advocate</span> for slavery, and can articulate what it's done for ${him}.`); + } + return r.join(" "); + } + + function sexualFlaws() { + const r = []; + switch (slave.sexualFlaw) { + case "hates oral": + r.push(`${He} <span class="red">hates</span> oral sex and tries to avoid it.`); + break; + case "hates anal": + r.push(`${He} <span class="red">hates</span> anal sex and tries to avoid it.`); + break; + case "hates penetration": + r.push(`${He} <span class="red">hates</span> penetration and tries to avoid it.`); + break; + case "repressed": + r.push(`${He} is <span class="red">sexually repressed,</span> retaining a fundamental distaste for sex from ${his} upbringing.`); + break; + case "idealistic": + r.push(`${He} is <span class="red">sexually idealistic,</span> retaining a belief that sex should be based on love and consent.`); + break; + case "shamefast": + r.push(`${He} is <span class="red">shamefast,</span> suffering crippling anxiety when naked.`); + break; + case "apathetic": + r.push(`${He} is <span class="red">sexually apathetic,</span> often slipping into inertness during sex.`); + break; + case "crude": + r.push(`${He} is <span class="red">sexually crude,</span> and has little sense of what partners find disgusting during sex.`); + break; + case "judgemental": + r.push(`${He} is <span class="red">sexually judgemental,</span> and often denigrates ${his} sexual partners' performance.`); + break; + case "cum addict": + r.push(`${He}'s a <span class="yellow">cum addict:</span> ${he} has a deep psychological addiction to`); + if (V.PC.balls > 0) { + r.push(`semen`); + if (V.PC.vagina !== -1) { + r.push(`and`); + } + } + if (V.PC.vagina !== -1) { + r.push(`pussyjuice`); + } + r.push(`and becomes anxious if ${he} goes for a few hours without drinking any.`); + break; + case "anal addict": + r.push(`${He}'s an <span class="yellow">anal addict:</span> ${he} has a deep psychological need to be fucked in the ass and becomes anxious if ${he} goes for a few hours without anal.`); + break; + case "attention whore": + r.push(`${He}'s an <span class="yellow">attention whore:</span> shocking and titillating spectators is more important to ${him} than the actual pleasure of sex.`); + break; + case "breast growth": + r.push(`${He} has a <span class="yellow">breast growth obsession:</span> ${he}'s nearly incapable of believing that ${his} breasts are big enough.`); + break; + case "abusive": + r.push(`${He}'s sexually <span class="yellow">abusive:</span> ${he} prefers taking sexual pleasure by force to having it offered to ${him}.`); + break; + case "malicious": + r.push(`${He}'s sexually <span class="yellow">malicious:</span> ${he} gets off on others' anguish.`); + break; + case "self hating": + r.push(`${He}'s filled with <span class="yellow">self hatred,</span> and is disturbingly willing to comply with things that might hurt ${him}.`); + break; + case "neglectful": + r.push(`${He}'s sexually <span class="yellow">self neglectful,</span> and often shows no interest in getting off ${him}self.`); + break; + case "breeder": + r.push(`${He}'s <span class="yellow">obsessed with being bred</span> to the point of fetishizing pregnancy itself as much as any act that leads to it.`); + } + return r.join(" "); + } + + function sexualQuirk() { + const r = []; + switch (slave.sexualQuirk) { + case "gagfuck queen": + r.push(`${He}'s a <span class="green">gagfuck queen:</span> ${he}'s able to safely take a rough facefuck.`); + break; + case "painal queen": + r.push(`${He}'s a <span class="green">painal queen:</span> ${he} knows exactly how much ${he} can take without getting hurt.`); + break; + case "strugglefuck queen": + r.push(`${He}'s a <span class="green">strugglefuck queen:</span> ${he} can gauge exactly how much resistance ${his} partners want.`); + break; + case "tease": + r.push(`${He}'s a <span class="green">tease,</span> and often displays a little flash of ${him}self followed by a blush.`); + break; + case "romantic": + r.push(`${He}'s a <span class="green">romantic,</span> and persists in innocent pleasure in the closeness of sex.`); + break; + case "perverted": + r.push(`${He}'s <span class="green">perverted,</span> and enjoys breaking sexual boundaries.`); + break; + case "caring": + r.push(`${He}'s <span class="green">caring,</span> and enjoys bringing partners pleasure more than getting off ${him}self.`); + break; + case "unflinching": + r.push(`${He}'s <span class="green">unflinching,</span> willing to do anything, even by the standards of sex slaves.`); + break; + case "size queen": + r.push(`${He}'s <span class="green">a size queen;</span> preferring big cock is almost ${his} trademark.`); + } + return r.join(" "); + } + + function fetish() { + const r = []; + if (slave.fetishKnown === 1) { + switch (slave.fetish) { + case "submissive": + if (slave.sexualFlaw === "apathetic") { + r.push(`This sexual apathy plays into ${his} preference for <span class="lightcoral">submission.</span>`); + } else if (slave.behavioralFlaw === "arrogant") { + r.push(`${His} arrogance is really just a thin shell to protect ${his} true need to <span class="lightcoral">submit.</span>`); + } else if (slave.fetishStrength > 95) { + r.push(`${He}'s an extreme <span class="lightcoral">submissive,</span> and relishes the strictures of slavery.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He}'s a confirmed <span class="lightcoral">submissive,</span> and enjoys the strictures of slavery.`); + } else { + r.push(`${He} has <span class="lightcoral">submissive</span> tendencies, and likes the strictures of slavery.`); + } + break; + case "cumslut": + if (slave.sexualFlaw === "hates oral") { + r.push(`${He}'s torn between ${his} <span class="lightcoral">love of semen</span> and ${his} dislike of having cocks in ${his} mouth.`); + } else if (slave.fetishStrength > 95) { + r.push(`${He}'s a <span class="lightcoral">cumslut,</span> and loves giving blowjobs and receiving facials.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} <span class="lightcoral">prefers giving oral,</span> and enjoys sucking dick and receiving facials.`); + } else { + r.push(`${He} has an <span class="lightcoral">oral fixation,</span> and likes giving blowjobs and receiving facials.`); + } + break; + case "humiliation": + if (slave.behavioralFlaw === "bitchy") { + r.push(`${His} bitchiness is really just an expression of ${his} deep need to be <span class="lightcoral">humiliated</span> ${him}self.`); + } else if (slave.sexualFlaw === "shamefast") { + r.push(`${His} shame is genuine, and it is with real self-loathing that ${he} <span class="lightcoral">gets off on humiliation.</span>`); + } else if (slave.fetishStrength > 95) { + r.push(`${He}'s a slut for <span class="lightcoral">humiliation,</span> and gets off on having others see ${his} enslavement.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} enjoys <span class="lightcoral">humiliating</span> sex.`); + } else { + r.push(`${He} likes <span class="lightcoral">embarrassing</span> sex.`); + } + break; + case "buttslut": + if (slave.sexualFlaw === "hates anal") { + r.push(`${His} hatred is just pretense to cover ${his} shame about how much ${he} really loves getting <span class="lightcoral">fucked in the butt.</span>`); + } else if (slave.fetishStrength > 95) { + r.push(`${He}'s a <span class="lightcoral">buttslut,</span> happy to have anyone put anything up ${his} ass.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} <span class="lightcoral">prefers anal.</span>`); + } else { + r.push(`${He} has an <span class="lightcoral">anal fixation.</span>`); + } + break; + case "boobs": + if (slave.fetishStrength > 95) { + r.push(`${He} <span class="lightcoral">prefers mammary intercourse</span> to any other kind of sex, and readily climaxes to nipple stimulation.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} enjoys <span class="lightcoral">breast play,</span> and is rapidly aroused by nipple stimulation.`); + } else { + r.push(`${He} <span class="lightcoral">really likes boobs,</span> ${he}rs and others.`); + } + break; + case "pregnancy": + if (slave.fetishStrength > 95) { + r.push(`${He} has a <span class="lightcoral">pregnancy fetish,</span> and finds anything related to reproduction sexy.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} has an <span class="lightcoral">impregnation fantasy,</span> and enjoys bareback sex.`); + } else { + r.push(`${He} has a recurring <span class="lightcoral">impregnation fantasy.</span>`); + } + break; + case "dom": + if (slave.sexualFlaw === "apathetic") { + r.push(`${He} is at war with ${him}self, since ${his} habitual apathy during sex barely masks a desire to <span class="lightcoral">dominate.</span>`); + } else if (slave.fetishStrength > 95) { + r.push(`${He} is a <span class="lightcoral">complete dom;</span> with other slaves this is expressed as a strong preference to top, and with ${his} betters ${he}'s an almost competitive lover.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} likes to take an active, powerful role in sex; with other slaves this is expressed as <span class="lightcoral">dominance,</span> and with ${his} betters ${he}'s a very energetic lover.`); + } else { + r.push(`${He} prefers to take a <span class="lightcoral">dominant</span> sexual role.`); + } + break; + case "sadist": + if (slave.fetishStrength > 95) { + r.push(`${He} is an <span class="lightcoral">aggressive sadist;</span> ${he}'s constantly plotting to control, abuse, and hurt other slaves.`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} has <span class="lightcoral">sadistic tendencies;</span> ${he} enjoys watching other slaves in pain, but truly loves causing pain ${him}self.`); + } else { + r.push(`${He} gets off on <span class="lightcoral">the suffering of others;</span> ${he} enjoys watching other slaves in pain.`); + } + break; + case "masochist": + if (slave.fetishStrength > 95) { + r.push(`${He} is a <span class="lightcoral">pain slut.</span>`); + } else if (slave.fetishStrength > 60) { + r.push(`${He} <span class="lightcoral">gets off on pain,</span> showing strong masochistic tendencies.`); + } else { + r.push(`${He} <span class="lightcoral">doesn't mind pain,</span> and shows some masochistic tendencies.`); + } + break; + default: + r.push(`${His} sexual tastes are <span class="pink">quite normal.</span>`); + } + } else { + r.push(`${His} fetishes, if any, are not known to you.`); + } + return r.join(" "); + } + + function attraction() { + const r = []; + if (slave.attrKnown === 1) { + if (slave.energy > 95) { + r.push(`${He}'s a <span class="green">nymphomaniac.</span>`); + } else if (slave.energy > 80) { + r.push(`${He}'s a <span class="green">sex addict.</span>`); + } else if (slave.energy > 60) { + r.push(`${He} has a <span class="green">powerful appetite for sex.</span>`); + } else if (slave.energy > 40) { + r.push(`${He} has a <span class="yellow">healthy sex drive.</span>`); + } else if (slave.energy > 20) { + r.push(`${He} has a <span class="red">weak sex drive.</span>`); + } else { + r.push(`${He}'s <span class="red">frigid,</span> with little interest in sex.`); + } + if (slave.attrXY <= 5) { + if (slave.attrXX <= 5) { + r.push(`${He} <span class="red">finds both men's and women's intimate areas quite repulsive,</span> an unfortunate state of affairs!`); + } else { + r.push(`${He} <span class="red">finds men sexually disgusting,</span>`); + if (slave.attrXX <= 15) { + r.push(`and <span class="red">has almost as much trouble with women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`and is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`and ${he} is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`but <span class="green">is attracted to women.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`<span class="green">strongly preferring women.</span>`); + } else { + r.push(`but is <span class="green">passionate about women.</span>`); + } + } + } else if (slave.attrXY <= 15) { + r.push(`${He} <span class="red">considers men's bodies a turnoff,</span>`); + if (slave.attrXX <= 5) { + r.push(`and is <span class="red">actually disgusted by women's.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`and <span class="red">feels the same about women's.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`and is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`and ${he} is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`but <span class="green">is attracted to women.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`<span class="green">strongly preferring women.</span>`); + } else { + r.push(`but is <span class="green">passionate about women.</span>`); + } + } else if (slave.attrXY <= 35) { + r.push(`${He} <span class="red">finds most men unattractive,</span>`); + if (slave.attrXX <= 5) { + r.push(`and is <span class="red">disgusted by the idea of intimacy with a woman.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`and is <span class="red">turned off by women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`and is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`and ${he} is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`but <span class="green">is attracted to women.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`<span class="green">strongly preferring women.</span>`); + } else { + r.push(`but is <span class="green">passionate about women.</span>`); + } + } else if (slave.attrXY <= 65) { + r.push(`${He}'s indifferent to sex with men,`); + if (slave.attrXX <= 5) { + r.push(`but is <span class="red">disgusted by the idea of intimacy with a woman.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`but is <span class="red">turned off by women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`but is <span class="red">actually unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`and feels the same about women, too.`); + } else if (slave.attrXX <= 85) { + r.push(`but <span class="green">is attracted to women.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`<span class="green">strongly preferring women.</span>`); + } else { + r.push(`but is <span class="green">passionate about women.</span>`); + } + } else if (slave.attrXY <= 85) { + r.push(`${He} <span class="green">finds men attractive,</span>`); + if (slave.attrXX <= 5) { + r.push(`but is <span class="red">disgusted by the idea of intimacy with a woman.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`but is <span class="red">turned off by women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`but is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`but is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`and <span class="green">likes women too.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`but <span class="green">likes women even more.</span>`); + } else { + r.push(`but is really <span class="green">passionate about women.</span>`); + } + } else if (slave.attrXY <= 95) { + r.push(`${He} <span class="green">is aroused by most men,</span>`); + if (slave.attrXX <= 5) { + r.push(`but is <span class="red">disgusted by the idea of intimacy with a woman.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`but is <span class="red">turned off by women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`but is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`but is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`and <span class="green">likes women too.</span>`); + } else if (slave.attrXX <= 95) { + r.push(`and <span class="green">thinks most women are hot,</span> too.`); + } else { + r.push(`but is most <span class="green">passionate about women.</span>`); + } + } else { + if (slave.attrXX > 95) { + r.push(`${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone.`); + } else { + r.push(`${He}'s <span class="green">passionate about men,</span>`); + if (slave.attrXX <= 5) { + r.push(`but is <span class="red">disgusted by the idea of intimacy with a woman.</span>`); + } else if (slave.attrXX <= 15) { + r.push(`but is <span class="red">turned off by women.</span>`); + } else if (slave.attrXX <= 35) { + r.push(`but is <span class="red">unenthusiastic about women.</span>`); + } else if (slave.attrXX <= 65) { + r.push(`but is indifferent to women.`); + } else if (slave.attrXX <= 85) { + r.push(`but also <span class="green">likes women,</span> too.`); + } else { + r.push(`but also <span class="green">thinks most women are hot,</span> too.`); + } + } + } + } else { + r.push(`You do not understand ${his} sexuality very well.`); + } + return r.join(" "); + } + + + return r.join(" "); +}; diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js index 7808bdca3d8fa149502a99e28abd00c2ac68f9a1..b0048eaed9faf5a3ad6c8ced0421b95836edfb11 100644 --- a/src/npc/descriptions/style/clothing.js +++ b/src/npc/descriptions/style/clothing.js @@ -784,7 +784,7 @@ App.Desc.clothing = function(slave) { r.push(`${His} uniform is pinned with the`); if (slave.ID === V.Bodyguard.ID || slave.ID === V.HeadGirl.ID || slave.ID === V.Recruiter.ID || slave.ID === V.Concubine.ID) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.Stewardess.ID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { 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,`); @@ -806,7 +806,7 @@ App.Desc.clothing = function(slave) { r.push(`${His} uniform is pinned with the`); if (slave.ID === V.Bodyguard.ID || slave.ID === V.HeadGirl.ID || slave.ID === V.Recruiter.ID || slave.ID === V.Concubine.ID) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.Stewardess.ID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); @@ -828,7 +828,7 @@ App.Desc.clothing = function(slave) { r.push(`${His} uniform is pinned with the`); if ((slave.ID === V.Bodyguard.ID) || (slave.ID === V.HeadGirl.ID) || (slave.ID === V.Recruiter.ID) || (slave.ID === V.Concubine.ID)) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.Stewardess.ID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); @@ -850,7 +850,7 @@ App.Desc.clothing = function(slave) { r.push(`${His} uniform is pinned with the`); if ((slave.ID === V.Bodyguard.ID) || (slave.ID === V.HeadGirl.ID) || (slave.ID === V.Recruiter.ID) || (slave.ID === V.Concubine.ID)) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.Stewardess.ID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.Schoolteacher.ID) || (slave.ID === V.Wardeness.ID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); diff --git a/src/npc/findSlave.tw b/src/npc/findSlave.tw index 204f8a2b4b9f614b74a95a9c5bd366c9f03189e3..e7aebb3b75b9076c0e94cb51891a4b38d3a95018 100644 --- a/src/npc/findSlave.tw +++ b/src/npc/findSlave.tw @@ -7,23 +7,23 @@ After spending a minute trying to remember some details about one of your slaves "Certainly, <<= properMaster()>>. What can you tell me about them?"<br><br> "They're called something like: -<<textbox "_nameSearch" "" autofocus>> +<<textbox "$findName" $findName autofocus>> <<link "Locate">> - <<script>>$('#slaveList').empty().append(App.FindSlave.searchByName(State.temporary.nameSearch));<</script>> + <<script>>$('#slaveList').empty().append(App.FindSlave.searchByName(V.findName));<</script>> <</link>> <br>//(Enter a fragment of their nickname, name, surname, birth name, or birth surname)//<br><br> "In the past, they were: -<<textbox "_backgroundSearch" "">> +<<textbox "$findBackground" $findBackground>> <<link "Locate">> - <<script>>$('#slaveList').empty().append(App.FindSlave.searchByBackground(State.temporary.backgroundSearch));<</script>> + <<script>>$('#slaveList').empty().append(App.FindSlave.searchByBackground(V.findBackground));<</script>> <</link>> <br>//(Enter a fragment of their origin or past job, for example, "shelter" or "lawyer")//<br><br> "Their data should meet this condition: -<<textbox "_dataSearch" "">> +<<textbox "$findData" $findData>> <<link "Locate">> - <<script>>$('#slaveList').empty().append(App.FindSlave.searchByExpression(State.temporary.dataSearch));<</script>> + <<script>>$('#slaveList').empty().append(App.FindSlave.searchByExpression(V.findData));<</script>> <</link>> <br>//(Enter a conditional expression which evaluates to true for the slave you want to find, such as "slave.physicalAge >= 18 && slave.physicalAge < 21")//<br><br> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 16eb04389ce628158d9e517745225e43f9b4dbe6..17602dd1738b829ae827366cce41105ac4df9cb4 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -381,11 +381,11 @@ <<if _birthScene > 50>> While giving a slave oral service, $slaves[$i].slaveName's water breaks. $He disregards this development and continues working. <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he draws <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child to $his breast until <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him to move $his useless pregnant ass. + The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he draws <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child to $his breast until <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him to move $his useless pregnant ass. <<else>> While scrubbing the penthouse floor, $slaves[$i].slaveName's water breaks. $He turns to clean this new spill, disregarding what it means. <<ClothingBirth>> - Instead of cleaning the fresh mess $he made, $he draws <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child to $his breast until <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him to move $his useless pregnant ass. + Instead of cleaning the fresh mess $he made, $he draws <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child to $his breast until <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him to move $his useless pregnant ass. <</if>> <</if>> <<else>> @@ -396,11 +396,11 @@ While giving a slave oral service, $slaves[$i].slaveName's water breaks. $He desperately tries to pull away but they grab $his head and force $him back to their crotch. <<set $humiliation = 1>> <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. $He hurriedly tries to mop up the mess and collect <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>><</if>> shouts at $him for dragging $his pregnant ass. + The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. $He hurriedly tries to mop up the mess and collect <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>><</if>> shouts at $him for dragging $his pregnant ass. <<else>> While scrubbing the penthouse floor, $slaves[$i].slaveName's water breaks. $He panics at the thought of not cleaning up $his spill but $his worsening contractions force $him to find a secluded place to give birth. <<ClothingBirth>> - Collecting <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child, $he carefully exits $his hiding place before coming under the eye of <<if $Stewardess != 0>>the glaring $Stewardess.slaveName. $His child is promptly taken<<elseif $HeadGirl != 0>>the glaring $HeadGirl.slaveName. $His child is promptly taken <<else>>. $His child is promptly taken by other servants<</if>> following a lecture about priorities and time management given $his constant pregnancy and predictable birth cycle. + Collecting <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child, $he carefully exits $his hiding place before coming under the eye of <<if _S.Stewardess>>the glaring _S.Stewardess.slaveName. $His child is promptly taken<<elseif $HeadGirl != 0>>the glaring $HeadGirl.slaveName. $His child is promptly taken <<else>>. $His child is promptly taken by other servants<</if>> following a lecture about priorities and time management given $his constant pregnancy and predictable birth cycle. <</if>> <</if>> <</if>> @@ -1490,18 +1490,18 @@ <<if random(0,1) == 1>> While giving a slave oral service, $slaves[$i].slaveName's body begins to birth another of $his brood. $He disregards this development and continues working. <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he struggles to bring $his child to $his breast until <<if $Stewardess != 0>>$Stewardess.slaveName shouts at $him to move $his useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him to move $his useless ass<<else>>shouts at $him to move $his useless ass<</if>>. + The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he struggles to bring $his child to $his breast until <<if _S.Stewardess>>_S.Stewardess.slaveName shouts at $him to move $his useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him to move $his useless ass<<else>>shouts at $him to move $his useless ass<</if>>. <<else>> While struggling to scrub the penthouse floor, $slaves[$i].slaveName's body begins to birth another of $his brood. $He carries on trying to clean as $he drags $his belly along the floor. <<ClothingBirth>> - Instead of carrying on $his task, $he draws $his child to $his breast until <<if $Stewardess != 0>>$Stewardess.slaveName shouts at $him to move $his useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him to move $his useless ass<<else>>shouts at $him to move $his useless ass<</if>>. + Instead of carrying on $his task, $he draws $his child to $his breast until <<if _S.Stewardess>>_S.Stewardess.slaveName shouts at $him to move $his useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him to move $his useless ass<<else>>shouts at $him to move $his useless ass<</if>>. <</if>> <<else>> <<if random(0,1) == 1>> While giving a slave oral service, $slaves[$i].slaveName's body begins to birth another of $his brood. $He desperately tries to pull away but they grab $his head and force $him back to their crotch. <<set $humiliation = 1>> <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him to the ground, leaving $him struggling to get up before <<if $Stewardess != 0>>$Stewardess.slaveName shouts at $him<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him <<else>>shouts at $him<</if>>. + The slave gets off quite strongly to the show and shoves $him to the ground, leaving $him struggling to get up before <<if _S.Stewardess>>_S.Stewardess.slaveName shouts at $him<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at $him <<else>>shouts at $him<</if>>. <<else>> While using $his bloated belly to scrub the penthouse floor, $slaves[$i].slaveName's body begins to birth another of $his brood. Since this isn't the first time this week this happened, $he readies $himself for the coming birth. <<ClothingBirth>> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index ce9de6d116d39c37e47cf52b7f997977096a48e4..7abda5270e1c73f230d970b4e014033407183d5c 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -621,298 +621,6 @@ $activeSlave.slaveName is up for review: <</replace>> <</widget>> -<<widget "BodyguardWeapon">> - -<<if ($activeSlave.muscles+$activeSlave.height-100)/25 > 5>> - $He has a long ceramic sword strapped to $his back, - <<switch $activeSlave.nationality>> - <<case "American">> - and, in keeping with $his heritage, a US Ordnance Mk43 Mod.1 GPMG - <<case "Armenian" "Belarusian" "Cuban" "Hungarian" "Kazakh" "Uzbek">> - and, in keeping with $his heritage, a PKM GPMG - <<case "Australian">> - and, in keeping with $his heritage, a Lithgow F89 Maximi GPMG - <<case "Austrian">> - and, in keeping with $his heritage, a Steyr MG 74 GPMG - <<case "Belgian">> - and, in keeping with $his heritage, a FN Minimi M3 LMG - <<case "British" "Scottish">> - and, in keeping with $his heritage, an L7A2 GPMG - <<case "Canadian">> - and, in keeping with $his heritage, a Colt Canada 5.56-LSW LMG - <<case "Chilean" "German">> - and, in keeping with $his heritage, a Rheinmetall MG3 GPMG - <<case "Chinese">> - and, in keeping with $his heritage, a Norinco QJY-88 LMG - <<case "Czech" "Slovak">> - and, in keeping with $his heritage, a ZVI Uk vz.59 Rachot GPMG - <<case "Filipina">> - and, in keeping with $his heritage, a Government Arsenal M60E4 GPMG - <<case "Finnish">> - and, in keeping with $his heritage, a Valmet KvKK 62 LMG - <<case "French">> - and, in keeping with $his heritage, a MAS AAT-F1 GPMG - <<case "Indian">> - and, in keeping with $his heritage, an OFB MG 2A1 GPMG - <<case "Indonesian">> - and, in keeping with $his heritage, a Pindad SM2 LMG - <<case "Iranian">> - and, in keeping with $his heritage, a DIO MGA3 GPMG - <<case "Israeli">> - and, in keeping with $his heritage, an IWI Negev NG7 GPMG - <<case "Japanese">> - and, in keeping with $his heritage, a Sumitomo Type 62 GPMG - <<case "Korean">> - and, in keeping with $his heritage, a S&T K12 GPMG - <<case "Mexican">> - and, in keeping with $his heritage, a SEDENA MG-21 GPMG - <<case "Polish">> - and, in keeping with $his heritage, a ZMT UKM-2000 GPMG - <<case "Romanian">> - and, in keeping with $his heritage, a FACSA PM md.93 LMG - <<case "Russian">> - and, in keeping with $his heritage, a PKP Pecheneg GPMG - <<case "Serbian">> - and, in keeping with $his heritage, a Zastava M09 LMG - <<case "South African">> - and, in keeping with $his heritage, a Vektor SS-77 GPMG - <<case "Spanish">> - and, in keeping with $his heritage, a CETME MG 82 Ameli LMG - <<case "Swiss">> - and, in keeping with $his heritage, a W+F-Bern MG51 GPMG - <<case "Turkish">> - and, in keeping with $his heritage, a MKEK MG3 GPMG - <<case "Ukrainian">> - and, in keeping with $his heritage, a Fort-401 LMG - <<case "Vietnamese">> - and, in keeping with $his heritage, a Z111 RPK LMG - <<case "Zimbabwean">> - <<if $activeSlave.race == "white">> - and, in keeping with $his heritage, a FN MAG-58 GPMG - <<else>> - and a FN MAG 60.20 GPMG - <</if>> - <<default>> - and a FN MAG 60.20 GPMG - <</switch>> - slung crosswise on $his chest. -<<elseif ($activeSlave.muscles+$activeSlave.height-100)/25 > 4>> - $He has a ceramic sword strapped to $his back - <<switch $activeSlave.nationality>> - <<case "American">> - and, in keeping with $his heritage, a Colt M16A4 assault rifle - <<case "Argentinian">> - and, in keeping with $his heritage, a FMAP FARA-83 assault rifle - <<case "Armenian" "Belarusian" "Kazakh" "Uzbek">> - and, in keeping with $his heritage, a Kalashnikov AK-74M assault rifle - <<case "Australian">> - and, in keeping with $his heritage, a Lithgow EF88 Austeyr bullpup assault rifle - <<case "Austrian">> - and, in keeping with $his heritage, a Steyr AUG A3 bullpup assault rifle - <<case "Belgian">> - and, in keeping with $his heritage, a FN FNC M2 assault rifle - <<case "Brazilian">> - and, in keeping with $his heritage, an IMBEL IA2 assault rifle - <<case "British" "Scottish">> - and, in keeping with $his heritage, an L85A3 bullpup assault rifle - <<case "Canadian">> - and, in keeping with $his heritage, a Colt Canada MRR assault rifle - <<case "Chilean">> - and, in keeping with $his heritage, a FAMAE ACE 22NC assault rifle - <<case "Chinese">> - and, in keeping with $his heritage, a Norinco QBZ-95-1 bullpup assault rifle - <<case "Colombian">> - and, in keeping with $his heritage, an Indumil ACE 22 assault rifle - <<case "Croatian">> - and, in keeping with $his heritage, an HS Produkt VHS-2 bullpup assault rifle - <<case "Cuban">> - and, in keeping with $his heritage, an AKM assault rifle - <<case "Czech" "Slovak">> - and, in keeping with $his heritage, a CZUB CZ-806 BREN-2 assault rifle - <<case "Filipina">> - and, in keeping with $his heritage, an Elitool M653P carbine - <<case "Finnish">> - and, in keeping with $his heritage, a SAKO Rk 95 TP assault rifle - <<case "French">> - and, in keeping with $his heritage, a Nexter FAMAS G2 bullpup assault rifle - <<case "German">> - and, in keeping with $his heritage, a H&K G36A2 assault rifle - <<case "Hungarian">> - and, in keeping with $his heritage, a FEG AMD-65M assault rifle - <<case "Indian">> - and, in keeping with $his heritage, an OFB MCIWS assault rifle - <<case "Indonesian">> - and, in keeping with $his heritage, a Pindad SS2 assault rifle - <<case "Iranian">> - and, in keeping with $his heritage, a DIO KH-2002 Khaybar bullpup assault rifle - <<case "Israeli">> - and, in keeping with $his heritage, an IWI MTAR-21 bullpup assault rifle - <<case "Italian">> - and, in keeping with $his heritage, a Beretta ARX-160 assault rifle - <<case "Japanese">> - and, in keeping with $his heritage, a Howa Type 89 assault rifle - <<case "Korean">> - and, in keeping with $his heritage, a Daewoo K2C1 assault rifle - <<case "Mexican">> - and, in keeping with $his heritage, a DGIM FX-05 Xiuhcoatl assault rifle - <<case "Peruvian">> - and, in keeping with $his heritage, a SIMA FAD bullpup assault rifle - <<case "Polish">> - and, in keeping with $his heritage, a FB MSBS assault rifle - <<case "Romanian">> - and, in keeping with $his heritage, a ROMARM PA md.86 assault rifle - <<case "Russian">> - and, in keeping with $his heritage, an Izhmash AN-94 Abakan assault rifle - <<case "Serbian">> - and, in keeping with $his heritage, a Zastava M21A assault rifle - <<case "South African">> - and, in keeping with $his heritage, a Vektor R4 assault rifle - <<case "Spanish">> - and, in keeping with $his heritage, a CETME Model C battle rifle - <<case "Swedish">> - and, in keeping with $his heritage, a Bofors Ak-5C assault rifle - <<case "Swiss">> - and, in keeping with $his heritage, a SIG SG 550 assault rifle - <<case "Thai">> - and, in keeping with $his heritage, a MND Type 11 assault rifle - <<case "Turkish">> - and, in keeping with $his heritage, a MKEK MPT-76 assault rifle - <<case "Ukrainian">> - and, in keeping with $his heritage, a Fort-227 assault rifle - <<case "Vietnamese">> - and, in keeping with $his heritage, a Z111 AKM assault rifle - <<case "Zimbabwean">> - <<if $activeSlave.race == "white">> - and, in keeping with $his heritage, a FN FAL battle rifle - <<else>> - and a FN F2000 bullpup assault rifle - <</if>> - <<default>> - and a FN F2000 bullpup assault rifle - <</switch>> - slung across $his chest. -<<elseif ($activeSlave.muscles+$activeSlave.height-100)/25 > 3>> - $He has a straight ceramic sword strapped to $his back - <<switch $activeSlave.nationality>> - <<case "American">> - and, in keeping with $his heritage, a KRISS Vector SMG - <<case "Argentinian">> - and, in keeping with $his heritage, a Halcon ML-63 SMG - <<case "Armenian" "Belarusian" "Kazakh" "Uzbek">> - and, in keeping with $his heritage, a Kalashnikov AKS-74U PDW - <<case "Austrian">> - and, in keeping with $his heritage, a Steyr AUG A3 Para XS bullpup SMG - <<case "Belgian">> - and, in keeping with $his heritage, a FN P90 bullpup PDW - <<case "Brazilian">> - and, in keeping with $his heritage, a Taurus MT40 G2 SMG - <<case "British" "Scottish">> - and, in keeping with $his heritage, an L91A1 SMG - <<case "Chilean">> - and, in keeping with $his heritage, a FAMAE SAF-200 SMG - <<case "Chinese">> - and, in keeping with $his heritage, a Norinco QCQ-05 SMG - <<case "Croatian">> - and, in keeping with $his heritage, a PM Agram 2000 SMG - <<case "Filipina">> - and, in keeping with $his heritage, a Ferfrans SCW7 PDW - <<case "German">> - and, in keeping with $his heritage, an H&K MP7A1 PDW - <<case "Indian">> - and, in keeping with $his heritage, an OFB MSMC SMG - <<case "Indonesian">> - and, in keeping with $his heritage, a Pindad PM1A1 SMG - <<case "Iranian">> - and, in keeping with $his heritage, a DIO MPT-9 Tondar SMG - <<case "Israeli">> - and, in keeping with $his heritage, an IWI Uzi SMG - <<case "Italian">> - and, in keeping with $his heritage, a Beretta MX4 SMG - <<case "Korean">> - and, in keeping with $his heritage, a Daewoo K1A PDW - <<case "Mexican">> - and, in keeping with $his heritage, a Mendoza Cobra SMG - <<case "Polish">> - and, in keeping with $his heritage, a FB PM-06 Glauberyt SMG - <<case "Romanian">> - and, in keeping with $his heritage, a UM Cugir LP7 SMG - <<case "Russian">> - and, in keeping with $his heritage, a KBP PP-90M1 SMG - <<case "Serbian">> - and, in keeping with $his heritage, a Zastava Master FLG SMG - <<case "South African">> - and, in keeping with $his heritage, a Milkor BXP SMG - <<case "Spanish">> - and, in keeping with $his heritage, a Star Z84 SMG - <<case "Swedish">> - and, in keeping with $his heritage, a Carl Gustav m/45 SMG - <<case "Swiss">> - and, in keeping with $his heritage, a SIG MPX SMG - <<case "Turkish">> - and, in keeping with $his heritage, a Sarsilmaz SAR 109 SMG - <<case "Ukrainian">> - and, in keeping with $his heritage, a Fort-224 bullpup SMG - <<case "Vietnamese">> - and, in keeping with $his heritage, a Z111 K-50M LMG - <<case "Zimbabwean">> - <<if $activeSlave.race == "white">> - and, in keeping with $his heritage, a Sterling Mk.IV SMG - <<else>> - and a H&K MP5 SMG - <</if>> - <<default>> - and a H&K MP5 SMG - <</switch>> - slung across $his chest. -<<else>> - $He has a short ceramic sword strapped to $his back - <<switch $activeSlave.nationality>> - <<case "American">> - and, in keeping with $his heritage, a MAC-10 machine pistol - <<case "Armenian" "Belarusian" "Cuban" "Kazakh" "Ukrainian" "Uzbek">> - and, in keeping with $his heritage, a Molot Ordnance Stechkin APS machine pistol - <<case "Austrian">> - and, in keeping with $his heritage, a Steyr TMP machine pistol - <<case "Belgian">> - and, in keeping with $his heritage, a VBR-Belgium PDW machine pistol - <<case "Chinese">> - and, in keeping with $his heritage, a Chongqing Changfeng CF-05 machine pistol - <<case "Czech" "Slovak">> - and, in keeping with $his heritage, a CZUB CZ 75 Automatic machine pistol - <<case "German">> - and, in keeping with $his heritage, a H&K VP70 machine pistol - <<case "Hungarian">> - and, in keeping with $his heritage, a FEG KGP-9 machine pistol - <<case "Israeli">> - and, in keeping with $his heritage, an IWI Uzi Pro machine pistol - <<case "Italian">> - and, in keeping with $his heritage, a Beretta 93R machine pistol - <<case "Japanese">> - and, in keeping with $his heritage, a Minebea PM-9 machine pistol - <<case "Mexican">> - and, in keeping with $his heritage, a Trejo Modelo 2 Especial machine pistol - <<case "Peruvian">> - and, in keeping with $his heritage, a SIMA MGP-87 machine pistol - <<case "Polish">> - and, in keeping with $his heritage, a WITU PMM machine pistol - <<case "Romanian">> - and, in keeping with $his heritage, a UMS Pistolul md.98 Dracula machine pistol - <<case "Russian">> - and, in keeping with $his heritage, a KBP OTs-33 Pernach machine pistol - <<case "Swedish">> - and, in keeping with $his heritage, a Saab Bofors Dynamics CBJ-MS machine pistol - <<case "Swiss">> - and, in keeping with $his heritage, a B+T MP9 machine pistol - <<case "Turkish">> - and, in keeping with $his heritage, a TiSAS Zigana F machine pistol - <<default>> - and a Glock 18 machine pistol - <</switch>> - at $his side. -<</if>> - -<</widget>> - <<widget "ParentNames">> <<set _currentSlaveNames = $slaves.map(s => s.slaveName)>> <<if $allowMaleSlaveNames>> diff --git a/src/uncategorized/PETS.tw b/src/uncategorized/PETS.tw index b36ce153d9bc665ecc637b7a59b6871376341fba..b66d64bbf2551d8f212448c3484a843015c52c1b 100644 --- a/src/uncategorized/PETS.tw +++ b/src/uncategorized/PETS.tw @@ -45,7 +45,7 @@ <<case "nurse molestation">> <<set $activeSlave = $Nurse, $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> <<case "stewardess beating">> - <<set $activeSlave = $Stewardess, $subSlave = $slaves.find(function(s) { return s.assignment == "work as a servant"; })>> + <<set $activeSlave = _S.Stewardess, $subSlave = $slaves.find(function(s) { return s.assignment == "work as a servant"; })>> <<case "aggressive schoolteacher">> <<set $activeSlave = $Schoolteacher, $subSlave = $slaves.find(function(s) { return s.assignment == "learn in the schoolroom"; })>> <<case "abusive wardeness">> diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index a16d2668fb50a825823ba2dd6bf9dc9f5e1234a0..8a54c682f3ec6a579cba53eea2a19fa097d8f68c 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -362,587 +362,7 @@ is <</if>> <</if>> -<<if $activeSlave.fuckdoll == 0>> /* NORMAL NON-FUCKDOLL MENTAL REPORT */ - <<= App.Desc.eyes($activeSlave)>> - - <<if $activeSlave.fetish == "mindbroken">> - However, <span class="coral">$his mind is fundamentally broken;</span> everything $he experiences will quickly be forgotten. - <</if>> - - <<if ($activeSlave.behavioralFlaw == "arrogant")>> - <<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>> - $He is <span class="red">arrogant</span> and clings to $his dignity. - <<elseif ($activeSlave.devotion < -20)>> - $He is still <span class="red">arrogant</span> at heart, but does $his best to hide it out of fear. - <<elseif ($activeSlave.devotion <= 20)>> - $He is <span class="red">arrogant</span> and seems to think slavery beneath $him. - <<else>> - Despite being well broken, $he seems to retain hints of <span class="red">arrogance.</span> - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "bitchy")>> - <<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>> - $He is <span class="red">bitchy</span> and insults you every chance $he gets. - <<elseif ($activeSlave.devotion < -20)>> - $He is still <span class="red">bitchy</span> at times, but does $his best to keep quiet out of fear. - <<elseif ($activeSlave.devotion <= 20)>> - $He is <span class="red">bitchy</span> and constantly tries to get a word in edgewise. - <<else>> - Since $he is well broken, $he tries to confine $his <span class="red">bitchy</span> remarks to your other slaves. - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "liberated")>> - <<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>> - $He strongly believes that <span class="red">slavery is wrong,</span> and resists it as best $he can. - <<elseif ($activeSlave.devotion < -20)>> - $He strongly believes that <span class="red">slavery is wrong,</span> but usually keeps quiet out of fear. - <<elseif ($activeSlave.devotion <= 20)>> - $He strongly believes that <span class="red">slavery is wrong,</span> and rarely misses a chance to complain about it. - <<else>> - $He strongly believes that <span class="red">slavery is wrong,</span> but has learned to keep it to $himself. - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "devout")>> - $He is <span class="red">devoutly religious,</span> - <<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>> - and uses $his faith as a wellspring of resistance. - <<elseif ($activeSlave.devotion < -20)>> - and uses $his faith as a place of refuge. - <<elseif ($activeSlave.devotion <= 20)>> - and uses $his faith as a private place within $himself. - <<else>> - but has learned to keep $his faith private. - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "odd")>> - $He behaves <span class="red">oddly,</span> saying and doing random things. - <<elseif ($activeSlave.behavioralFlaw == "hates men")>> - $He <span class="red">strongly dislikes</span> being around - <<if ($activeSlave.attrXY >= 85) && ($activeSlave.energy >= 40)>> - men; since $he loves the dick, $he's forced to put up with them. - <<elseif ($activeSlave.attrXY >= 65) && ($activeSlave.energy >= 40)>> - men; since $he likes the dick, $he reluctantly puts up with them. - <<else>> - men. - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "hates women")>> - $He <span class="red">strongly dislikes</span> being around - <<if ($activeSlave.attrXX >= 85) && ($activeSlave.energy >= 40)>> - women; since $he loves pussy, $he's forced to put up with them. - <<elseif ($activeSlave.attrXX >= 65) && ($activeSlave.energy >= 40)>> - women; since $he likes pussy, $he reluctantly puts up with them. - <<else>> - women. - <</if>> - <<elseif ($activeSlave.behavioralFlaw == "anorexic")>> - $He suffers from <span class="red">anorexia.</span> - <<elseif ($activeSlave.behavioralFlaw == "gluttonous")>> - $He <span class="red">tends to overeat</span> whenever $he can, reacting to the rigors of sexual slavery with overeating. - <</if>> - - <<switch $activeSlave.behavioralQuirk>> - <<case "confident">> - $He's <span class="green">confident,</span> and believes that $he has something of value to offer, even as a slave. - <<case "cutting">> - $He often has a witty or <span class="green">cutting</span> remark ready, but knows when to keep them to $himself. - <<case "funny">> - $He's <span class="green">funny,</span> often providing a little comic relief. - <<case "adores women">> - $He <span class="green">adores women,</span> and loves spending time with them. - <<case "adores men">> - $He <span class="green">adores men,</span> and loves spending time with them. - <<case "fitness">> - $He's a <span class="green">fitness fanatic,</span> and almost gets off to a hard workout. - <<case "insecure">> - $He's <span class="green">insecure,</span> defining $his self worth by how much others want to fuck $him. - <<case "sinful">> - <<if $arcologies[0].FSChattelReligionist == "unset">> - $He's delightfully <span class="green">sinful,</span> taking real pleasure in breaking cultural mores. - <<else>> - $He's a devout Chattel Religionist, and is aggressively <span class="green">sinful</span> against old world faiths. $He is enthusiastic about slutty religious clothing, and excited by intentional sacrilege like openly using old world religious icons as sex toys or having orgies on altars. - <</if>> - <<case "advocate">> - $He's an <span class="green">advocate</span> for slavery, and can articulate what it's done for $him. - <</switch>> - - <<switch $activeSlave.sexualFlaw>> - <<case "hates oral">> - $He <span class="red">hates</span> oral sex and tries to avoid it. - <<case "hates anal">> - $He <span class="red">hates</span> anal sex and tries to avoid it. - <<case "hates penetration">> - $He <span class="red">hates</span> penetration and tries to avoid it. - <<case "repressed">> - $He is <span class="red">sexually repressed,</span> retaining a fundamental distaste for sex from $his upbringing. - <<case "idealistic">> - $He is <span class="red">sexually idealistic,</span> retaining a belief that sex should be based on love and consent. - <<case "shamefast">> - $He is <span class="red">shamefast,</span> suffering crippling anxiety when naked. - <<case "apathetic">> - $He is <span class="red">sexually apathetic,</span> often slipping into inertness during sex. - <<case "crude">> - $He is <span class="red">sexually crude,</span> and has little sense of what partners find disgusting during sex. - <<case "judgemental">> - $He is <span class="red">sexually judgemental,</span> and often denigrates $his sexual partners' performance. - <<case "cum addict">> - $He's a <span class="yellow">cum addict:</span> $he has a deep psychological addiction to <<if $PC.balls > 0>>semen<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>pussyjuice<</if>> and becomes anxious if $he goes for a few hours without drinking any. - <<case "anal addict">> - $He's an <span class="yellow">anal addict:</span> $he has a deep psychological need to be fucked in the ass and becomes anxious if $he goes for a few hours without anal. - <<case "attention whore">> - $He's an <span class="yellow">attention whore:</span> shocking and titillating spectators is more important to $him than the actual pleasure of sex. - <<case "breast growth">> - $He has a <span class="yellow">breast growth obsession:</span> $he's nearly incapable of believing that $his breasts are big enough. - <<case "abusive">> - $He's sexually <span class="yellow">abusive:</span> $he prefers taking sexual pleasure by force to having it offered to $him. - <<case "malicious">> - $He's sexually <span class="yellow">malicious:</span> $he gets off on others' anguish. - <<case "self hating">> - $He's filled with <span class="yellow">self hatred,</span> and is disturbingly willing to comply with things that might hurt $him. - <<case "neglectful">> - $He's sexually <span class="yellow">self neglectful,</span> and often shows no interest in getting off $himself. - <<case "breeder">> - $He's <span class="yellow">obsessed with being bred</span> to the point of fetishizing pregnancy itself as much as any act that leads to it. - <</switch>> - - <<switch $activeSlave.sexualQuirk>> - <<case "gagfuck queen">> - $He's a <span class="green">gagfuck queen:</span> $he's able to safely take a rough facefuck. - <<case "painal queen">> - $He's a <span class="green">painal queen:</span> $he knows exactly how much $he can take without getting hurt. - <<case "strugglefuck queen">> - $He's a <span class="green">strugglefuck queen:</span> $he can gauge exactly how much resistance $his partners want. - <<case "tease">> - $He's a <span class="green">tease,</span> and often displays a little flash of $himself followed by a blush. - <<case "romantic">> - $He's a <span class="green">romantic,</span> and persists in innocent pleasure in the closeness of sex. - <<case "perverted">> - $He's <span class="green">perverted,</span> and enjoys breaking sexual boundaries. - <<case "caring">> - $He's <span class="green">caring,</span> and enjoys bringing partners pleasure more than getting off $himself. - <<case "unflinching">> - $He's <span class="green">unflinching,</span> willing to do anything, even by the standards of sex slaves. - <<case "size queen">> - $He's <span class="green">a size queen;</span> preferring big cock is almost $his trademark. - <</switch>> - - <<if ($activeSlave.fetishKnown == 1)>> - <<switch $activeSlave.fetish>> - <<case "submissive">> - <<if ($activeSlave.sexualFlaw == "apathetic")>> - This sexual apathy plays into $his preference for <span class="lightcoral">submission.</span> - <<elseif ($activeSlave.behavioralFlaw == "arrogant")>> - $His arrogance is really just a thin shell to protect $his true need to <span class="lightcoral">submit.</span> - <<elseif ($activeSlave.fetishStrength > 95)>> - $He's an extreme <span class="lightcoral">submissive,</span> and relishes the strictures of slavery. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He's a confirmed <span class="lightcoral">submissive,</span> and enjoys the strictures of slavery. - <<else>> - $He has <span class="lightcoral">submissive</span> tendencies, and likes the strictures of slavery. - <</if>> - <<case "cumslut">> - <<if ($activeSlave.sexualFlaw == "hates oral")>> - $He's torn between $his <span class="lightcoral">love of semen</span> and $his dislike of having cocks in $his mouth. - <<elseif ($activeSlave.fetishStrength > 95)>> - $He's a <span class="lightcoral">cumslut,</span> and loves giving blowjobs and receiving facials. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He <span class="lightcoral">prefers giving oral,</span> and enjoys sucking dick and receiving facials. - <<else>> - $He has an <span class="lightcoral">oral fixation,</span> and likes giving blowjobs and receiving facials. - <</if>> - <<case "humiliation">> - <<if ($activeSlave.behavioralFlaw == "bitchy")>> - $His bitchiness is really just an expression of $his deep need to be <span class="lightcoral">humiliated</span> $himself. - <<elseif ($activeSlave.sexualFlaw == "shamefast")>> - $His shame is genuine, and it is with real self-loathing that $he <span class="lightcoral">gets off on humiliation.</span> - <<elseif ($activeSlave.fetishStrength > 95)>> - $He's a slut for <span class="lightcoral">humiliation,</span> and gets off on having others see $his enslavement. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He enjoys <span class="lightcoral">humiliating</span> sex. - <<else>> - $He likes <span class="lightcoral">embarrassing</span> sex. - <</if>> - <<case "buttslut">> - <<if ($activeSlave.sexualFlaw == "hates anal")>> - $His hatred is just pretense to cover $his shame about how much $he really loves getting <span class="lightcoral">fucked in the butt.</span> - <<elseif ($activeSlave.fetishStrength > 95)>> - $He's a <span class="lightcoral">buttslut,</span> happy to have anyone put anything up $his ass. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He <span class="lightcoral">prefers anal.</span> - <<else>> - $He has an <span class="lightcoral">anal fixation.</span> - <</if>> - <<case "boobs">> - <<if ($activeSlave.fetishStrength > 95)>> - $He <span class="lightcoral">prefers mammary intercourse</span> to any other kind of sex, and readily climaxes to nipple stimulation. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He enjoys <span class="lightcoral">breast play,</span> and is rapidly aroused by nipple stimulation. - <<else>> - $He <span class="lightcoral">really likes boobs,</span> $hers and others. - <</if>> - <<case "pregnancy">> - <<if ($activeSlave.fetishStrength > 95)>> - $He has a <span class="lightcoral">pregnancy fetish,</span> and finds anything related to reproduction sexy. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He has an <span class="lightcoral">impregnation fantasy,</span> and enjoys bareback sex. - <<else>> - $He has a recurring <span class="lightcoral">impregnation fantasy.</span> - <</if>> - <<case "dom">> - <<if ($activeSlave.sexualFlaw == "apathetic")>> - $He is at war with $himself, since $his habitual apathy during sex barely masks a desire to <span class="lightcoral">dominate.</span> - <<elseif ($activeSlave.fetishStrength > 95)>> - $He is a <span class="lightcoral">complete dom;</span> with other slaves this is expressed as a strong preference to top, and with $his betters $he's an almost competitive lover. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He likes to take an active, powerful role in sex; with other slaves this is expressed as <span class="lightcoral">dominance,</span> and with $his betters $he's a very energetic lover. - <<else>> - $He prefers to take a <span class="lightcoral">dominant</span> sexual role. - <</if>> - <<case "sadist">> - <<if ($activeSlave.fetishStrength > 95)>> - $He is an <span class="lightcoral">aggressive sadist;</span> $he's constantly plotting to control, abuse, and hurt other slaves. - <<elseif ($activeSlave.fetishStrength > 60)>> - $He has <span class="lightcoral">sadistic tendencies;</span> $he enjoys watching other slaves in pain, but truly loves causing pain $himself. - <<else>> - $He gets off on <span class="lightcoral">the suffering of others;</span> $he enjoys watching other slaves in pain. - <</if>> - <<case "masochist">> - <<if ($activeSlave.fetishStrength > 95)>> - $He is a <span class="lightcoral">pain slut.</span> - <<elseif ($activeSlave.fetishStrength > 60)>> - $He <span class="lightcoral">gets off on pain,</span> showing strong masochistic tendencies. - <<else>> - $He <span class="lightcoral">doesn't mind pain,</span> and shows some masochistic tendencies. - <</if>> - <<default>> - $His sexual tastes are <span class="pink">quite normal.</span> - <</switch>> - <<else>> - $His fetishes, if any, are not known to you. - <</if>> - - <<if ($activeSlave.attrKnown == 1)>> - <<if ($activeSlave.energy > 95)>> - $He's a <span class="green">nymphomaniac.</span> - <<elseif ($activeSlave.energy > 80)>> - $He's a <span class="green">sex addict.</span> - <<elseif ($activeSlave.energy > 60)>> - $He has a <span class="green">powerful appetite for sex.</span> - <<elseif ($activeSlave.energy > 40)>> - $He has a <span class="yellow">healthy sex drive.</span> - <<elseif ($activeSlave.energy > 20)>> - $He has a <span class="red">weak sex drive.</span> - <<else>> - $He's <span class="red">frigid,</span> with little interest in sex. - <</if>> - <<if ($activeSlave.attrXY <= 5)>> - <<if ($activeSlave.attrXX <= 5)>> - $He <span class="red">finds both men's and women's intimate areas quite repulsive,</span> an unfortunate state of affairs! - <<else>> - $He <span class="red">finds men sexually disgusting,</span> - <<if ($activeSlave.attrXX <= 15)>> - and <span class="red">has almost as much trouble with women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - and is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - and $he is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - but <span class="green">is attracted to women.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - <span class="green">strongly preferring women.</span> - <<else>> - but is <span class="green">passionate about women.</span> - <</if>> - <</if>> - <<elseif ($activeSlave.attrXY <= 15)>> - $He <span class="red">considers men's bodies a turnoff,</span> - <<if ($activeSlave.attrXX <= 5)>> - and is <span class="red">actually disgusted by women's.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - and <span class="red">feels the same about women's.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - and is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - and $he is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - but <span class="green">is attracted to women.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - <span class="green">strongly preferring women.</span> - <<else>> - but is <span class="green">passionate about women.</span> - <</if>> - <<elseif ($activeSlave.attrXY <= 35)>> - $He <span class="red">finds most men unattractive,</span> - <<if ($activeSlave.attrXX <= 5)>> - and is <span class="red">disgusted by the idea of intimacy with a woman.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - and is <span class="red">turned off by women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - and is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - and $he is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - but <span class="green">is attracted to women.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - <span class="green">strongly preferring women.</span> - <<else>> - but is <span class="green">passionate about women.</span> - <</if>> - <<elseif ($activeSlave.attrXY <= 65)>> - $He's indifferent to sex with men, - <<if ($activeSlave.attrXX <= 5)>> - but is <span class="red">disgusted by the idea of intimacy with a woman.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - but is <span class="red">turned off by women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - but is <span class="red">actually unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - and feels the same about women, too. - <<elseif ($activeSlave.attrXX <= 85)>> - but <span class="green">is attracted to women.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - <span class="green">strongly preferring women.</span> - <<else>> - but is <span class="green">passionate about women.</span> - <</if>> - <<elseif ($activeSlave.attrXY <= 85)>> - $He <span class="green">finds men attractive,</span> - <<if ($activeSlave.attrXX <= 5)>> - but is <span class="red">disgusted by the idea of intimacy with a woman.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - but is <span class="red">turned off by women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - but is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - but is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - and <span class="green">likes women too.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - but <span class="green">likes women even more.</span> - <<else>> - but is really <span class="green">passionate about women.</span> - <</if>> - <<elseif ($activeSlave.attrXY <= 95)>> - $He <span class="green">is aroused by most men,</span> - <<if ($activeSlave.attrXX <= 5)>> - but is <span class="red">disgusted by the idea of intimacy with a woman.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - but is <span class="red">turned off by women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - but is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - but is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - and <span class="green">likes women too.</span> - <<elseif ($activeSlave.attrXX <= 95)>> - and <span class="green">thinks most women are hot,</span> too. - <<else>> - but is most <span class="green">passionate about women.</span> - <</if>> - <<else>> - <<if ($activeSlave.attrXX > 95)>> - $He's <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. - <<else>> - $He's <span class="green">passionate about men,</span> - <<if ($activeSlave.attrXX <= 5)>> - but is <span class="red">disgusted by the idea of intimacy with a woman.</span> - <<elseif ($activeSlave.attrXX <= 15)>> - but is <span class="red">turned off by women.</span> - <<elseif ($activeSlave.attrXX <= 35)>> - but is <span class="red">unenthusiastic about women.</span> - <<elseif ($activeSlave.attrXX <= 65)>> - but is indifferent to women. - <<elseif ($activeSlave.attrXX <= 85)>> - but also <span class="green">likes women,</span> too. - <<else>> - but also <span class="green">thinks most women are hot,</span> too. - <</if>> - <</if>> - <</if>> - <<else>> - You do not understand $his sexuality very well. - <</if>> - -<<else>> /* FUCKDOLL MENTAL REPORT */ - - It's impossible to tell what intelligence or inclinations a Fuckdoll might have by looking at it, but the most recent records indicate that this one is - <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 95)>> - <span class="deepskyblue">brilliant</span> - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>> - <span class="deepskyblue">highly intelligent</span> - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 15)>> - of <span class="deepskyblue">above average intelligence</span> - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15)>> - of average intelligence - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50)>> - of <span class="orangered">below average intelligence</span> - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -95)>> - <span class="orangered">very stupid</span> - <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -100)>> - <span class="orangered">a moron</span> - <</if>> - <<if ($activeSlave.intelligence >= -15)>> - <<if ($activeSlave.intelligenceImplant < 15)>> - but is uneducated. - <<elseif $activeSlave.intelligenceImplant >= 30>> - and is well educated. - <<else>> - and is educated. - <</if>> - <<else>> - <<if ($activeSlave.intelligenceImplant < 15)>> - and is uneducated. - <<elseif $activeSlave.intelligenceImplant >= 30>> - but is well educated. - <<else>> - but is educated. - <</if>> - <</if>> - - <<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none") ||($activeSlave.behavioralQuirk != "none") ||($activeSlave.sexualQuirk != "none")>> - <<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none")>> - $His remaining mental flaws are likewise impossible to discern, but if $he was allowed out of $his suit, this Fuckdoll would probably still - <<if $activeSlave.behavioralFlaw != "none">> - <<switch $activeSlave.behavioralFlaw>> - <<case "hates men">> - <span class="red">hate men</span> - <<case "hates women">> - <span class="red">hate women</span> - <<case "gluttonous">> - be a <span class="red">stress eater</span> - <<default>> - be <span class="red">$activeSlave.behavioralFlaw</span> - <</switch>> - <</if>> - <<if $activeSlave.sexualFlaw != "none">> - <<if $activeSlave.behavioralFlaw != "none">>and would still<</if>> - <<switch $activeSlave.sexualFlaw>> - <<case "hates oral">> - <span class="red">hate oral.</span> - <<case "hates anal">> - <span class="red">hate anal.</span> - <<case "hates penetration">> - <span class="red">hate penetration.</span> - <<case "cum addict">> - a <span class="yellow">cum addict.</span> - <<case "anal addict">> - an <span class="yellow">anal addict.</span> - <<case "attention whore">> - an <span class="yellow">attention whore.</span> - <<case "breast growth">> - have a <span class="yellow">breast obsession.</span> - <<case "breeder">> - have a <span class="yellow">breeding obsession.</span> - <<default>> - be <span class="red">$activeSlave.sexualFlaw.</span> - <</switch>> - <<else>> - to an unacceptable degree. - <</if>> - <</if>> - <<if ($activeSlave.behavioralQuirk != "none") ||($activeSlave.sexualQuirk != "none")>> - $His character seems to retain some distinctiveness; $he may still - <<if $activeSlave.behavioralQuirk != "none">> - be - <<switch $activeSlave.behavioralQuirk>> - <<case "fitness">> - <span class="green">a fitness fanatic</span> - <<case "adores women">> - <span class="green">adore women</span> - <<case "adores men">> - <span class="green">adore men</span> - <<case "advocate">> - <span class="green">an advocate</span> - <<default>> - <span class="green">$activeSlave.behavioralQuirk</span> - <</switch>> - <</if>> - <<if $activeSlave.sexualQuirk != "none">> - <<if $activeSlave.behavioralQuirk != "none">>and still<</if>> be - <<switch $activeSlave.sexualQuirk>> - <<case "romantic" "perverted" "caring" "unflinching">> - <span class="green">$activeSlave.sexualQuirk.</span> - <<default>> - a <span class="green">$activeSlave.sexualQuirk.</span> - <</switch>> - <<else>> - in there. - <</if>> - <</if>> - <</if>> - - <<if ($activeSlave.fetishKnown == 1)>> - $His recent biomedical readings indicate that $he still prefers - <<switch $activeSlave.fetish>> - <<case "submissive">> - <span class="lightcoral">being forced to submit</span> - <<case "cumslut">> - <span class="lightcoral">being facefucked</span> - <<case "humiliation">> - <span class="lightcoral">being fucked in public</span> - <<case "buttslut">> - <span class="lightcoral">being sodomized</span> - <<case "boobs">> - <span class="lightcoral">having $his breasts handled</span> - <<case "pregnancy">> - <span class="lightcoral">being inseminated</span> - <<case "dom" "sadist">> - <span class="lightcoral">being on top</span> - <<case "masochist">> - <span class="lightcoral">being hurt</span> - <<default>> - <span class="lightcoral">having vanilla sex</span> - <</switch>> - to any other kind of use. - <</if>> - - <<if ($activeSlave.attrKnown == 1)>> - $His suit usually forces $him to become aroused for use, but when $he's allowed to react naturally, $he has - <<if ($activeSlave.energy > 95)>> - a <span class="green">nymphomaniac</span> need - <<elseif ($activeSlave.energy > 80)>> - a <span class="green">pathological need</span> - <<elseif ($activeSlave.energy > 60)>> - a <span class="green">powerful need</span> - <<elseif ($activeSlave.energy > 40)>> - a <span class="yellow">healthy need</span> - <<elseif ($activeSlave.energy > 20)>> - a <span class="red">weak need</span> - <<else>> - <span class="red">no need</span> - <</if>> - for external sexual stimulation, acts - <<if ($activeSlave.attrXX <= 15)>> - <span class="red">revolted</span> - <<elseif ($activeSlave.attrXX <= 35)>> - <span class="red">unhappy</span> - <<elseif ($activeSlave.attrXX <= 65)>> - indifferent - <<elseif ($activeSlave.attrXX <= 85)>> - <span class="green">eager</span> - <<else>> - <span class="green">very enthusiastic</span> - <</if>> - when a pussy is pressed against $his face hole, and - <<if ($activeSlave.attrXY <= 15)>> - <span class="red">struggles</span> - <<elseif ($activeSlave.attrXY <= 35)>> - <span class="red">does not react positively</span> - <<elseif ($activeSlave.attrXY <= 65)>> - does not react significantly - <<elseif ($activeSlave.attrXY <= 85)>> - <span class="green">seems pleased</span> - <<else>> - is <span class="green">very happy</span> - <</if>> - when a dick is pushed inside - <<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0 && canDoAnal($activeSlave) && $activeSlave.anus > 0>> - either of $his lower holes. - <<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>> - $his front hole. - <<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>> - $his rear hole. - <<else>> - it. - <</if>> - <</if>> - -<</if>> /* END MENTAL REPORT */ +<<= App.Desc.mind($activeSlave)>> <<if $saleDescription == 0>> <<if $eventDescription == 0>> @@ -1711,30 +1131,7 @@ $He is <</if>> <</if>> -<<if $activeSlave.fuckdoll == 0>> - <<if $activeSlave.ID == $Bodyguard.ID>> - $He is your bodyguard. - <<BodyguardWeapon>> - <</if>> - - <<if $activeSlave.skill.combat > 0>> - $He is <span class="aquamarine">skilled at combat:</span> $he is comfortable with the use of modern firearms and edged weapons, and $his hands - <<if !hasBothArms($activeSlave)>> - would be deadly weapons if $he had - <<if !hasAnyArms($activeSlave)>> - any. - <<else>> - more than one. - <</if>> - <<else>> - <<if getArmCount($activeSlave, 5) + getArmCount($activeSlave, 6) > 1>> - would be deadly weapons even if they weren't full of deadly weapons already. - <<else>> - are deadly weapons. - <</if>> - <</if>> - <</if>> -<</if>> +<<= App.Desc.bodyguard($activeSlave)>> <<if ($activeSlave.counter.pitWins + $activeSlave.counter.pitLosses) > 0>> $He has participated in <<print num($activeSlave.counter.pitWins + $activeSlave.counter.pitLosses)>> pit fights, with $activeSlave.counter.pitWins wins and $activeSlave.counter.pitLosses losses. @@ -2011,540 +1408,7 @@ $He is <<if $activeSlave.fuckdoll == 0>> <br> - <<switch $activeSlave.drugs>> - <<case "priapism agents">> - <<if $activeSlave.dick > 0 && $activeSlave.dick <= 10>> - <<if $activeSlave.chastityPenis == 1>> - $He can do nothing but writhe in agony at the pain of $his priapismic erection trapped in $his chastity cage. - <<else>> - <<if ($activeSlave.dick > 8)>> - $His oversized dick is painfully engorged to a state of semi-hardness due to the priapism agents. - <<elseif ($activeSlave.dick > 6)>> - $He sports a painful, oversized erection due to the priapism agents. - <<else>> - $He sports a throbbing, painful erection due to the priapism agents. - <</if>> - <</if>> - <</if>> - <<case "super fertility drugs">> - <<if isFertile($activeSlave) && $activeSlave.preg == 0>> - $He is constantly dripping sexual fluids and $his breasts and belly are slightly swollen. The super fertility drugs have $him ready to be impregnated. - <</if>> - <<case "fertility drugs">> - <<if isFertile($activeSlave) && $activeSlave.preg == 0>> - $He smells of sexual fluids and $his breasts are slightly swollen. The fertility drugs have $him ready to be impregnated. - <</if>> - <<case "intensive breast injections">> - <<if hasAnyArms($activeSlave)>>$He massages $his tits uncomfortably<<else>>$He squirms under the unfamiliar weight on $his chest<</if>>. The A-HGH must be having an effect, painfully stretching $his breasts as the mammary and adipose tissue underneath grows explosively. - <<case "nipple enhancers">> - <<if hasAnyArms($activeSlave)>>$He massages $his nipples uncomfortably<<else>>$He squirms in response to the discomfort in $his breasts<</if>>. The A-HGH must be having an effect, painfully causing $his body to expand $his nipples. - <<case "hyper breast injections">> - <<if hasAnyArms($activeSlave)>>$He massages $his tits uncomfortably<<else>>$He squirms under the unfamiliar weight on $his chest<</if>>. The HA-HGH must be having an effect, painfully stretching $his breasts as the mammary and adipose tissue underneath grows explosively. - <<case "intensive butt injections">> - <<if hasAnyArms($activeSlave)>>$He massages $his butt uncomfortably<<else>>$He squirms against the unfamiliar weight on $his backside<</if>>. The A-HGH must be having an effect, painfully stretching $his buttocks as the muscular and adipose tissue underneath grows explosively. - <<case "hyper butt injections">> - <<if hasAnyArms($activeSlave)>>$He massages $his butt uncomfortably<<else>>$He squirms against the unfamiliar weight on $his backside<</if>>. The HA-HGH must be having an effect, painfully stretching $his buttocks as the muscular and adipose tissue underneath grows explosively. - <<case "intensive penis enhancement">> - <<if hasAnyArms($activeSlave)>>$He massages $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>> uncomfortably<<else>>$He squirms against the unfamiliar weight in $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>><</if>>. The A-HGH must be having an effect, painfully lengthening and thickening $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>>. - <<case "intensive testicle enhancement">> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as a bead of cum forms on tip of $his dick. The A-HGH must be having an effect, painfully expanding $his testicles. - <<case "hyper penis enhancement">> - <<if hasAnyArms($activeSlave)>>$He massages $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>> uncomfortably<<else>>$He squirms against the unfamiliar weight in $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>><</if>>. The HA-HGH must be having an effect, painfully lengthening and thickening $his <<if ($activeSlave.dick > 0)>>dick<<else>>clit<</if>>. - <<case "hyper testicle enhancement">> - <<if $activeSlave.balls < 20>> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as cum drools from the tip of $his dick. The HA-HGH must be having an effect, painfully expanding $his testicles. - <<elseif $activeSlave.balls >= 50>> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as a thick cascade of cum pours from the tip of $his cock. The HA-HGH must be having an effect, painfully expanding $his testicles. - <<elseif $activeSlave.balls >= 37>> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as cum freely flows from the tip of $his cock, pooling under $him. The HA-HGH must be having an effect, painfully expanding $his testicles. - <<elseif $activeSlave.balls >= 20>> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as precum pools under $him. The HA-HGH must be having an effect, painfully expanding $his testicles. - <</if>> - <<case "female hormone injections" "male hormone injections">> - $He looks very ill, likely a side effect of the extreme hormone injections. - <<case "appetite suppressors">> - Despite how little $he has been eating lately, $his stomach barely growls at all. - <<case "penis atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his dick uncomfortably<<else>>$He squirms in response to the discomfort in $his dick<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his dick. - <<case "testicle atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the discomfort in $his balls<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his testicles. - <<case "clitoris atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his clit uncomfortably<<else>>$He squirms in response to the discomfort in $his clit<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his clitoris. - <<case "labia atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his pussy uncomfortably<<else>>$He squirms in response to the discomfort in $his cunt<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his labia. - <<case "nipple atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his nipples uncomfortably<<else>>$He squirms in response to the discomfort in $his breasts<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his nipples. - <<case "lip atrophiers">> - <<if hasAnyArms($activeSlave)>>$He massages $his lips uncomfortably<<else>>$He licks $his lips uncomfortably<</if>>. The A-TRPH must be having an effect, painfully causing $his body to atrophy $his lips. - <<case "breast redistributors">> - <<if hasAnyArms($activeSlave)>>$He pinches at the fat building on $his belly and lets off a sigh<<else>>$He squirms under the added weight building on $his belly<</if>>. The RDST-D must be having an effect, encouraging $his body to redistribute $his breasts' adipose tissue to $his middle. - <<case "butt redistributors">> - <<if hasAnyArms($activeSlave)>>$He pinches at the fat building on $his belly and lets off a sigh<<else>>$He squirms under the added weight building on $his belly<</if>>. The RDST-D must be having an effect, encouraging $his body to redistribute $his buttock's adipose tissue to $his middle. - <<case "sag-B-gone">> - $His breasts are shiny from the layer of anti-sag cream rubbed onto them. They might be a little perkier, or not. - <<default>> - <</switch>> - <<if $activeSlave.aphrodisiacs > 0 || $activeSlave.inflationType == "aphrodisiacs">> - <<if $activeSlave.fetish == "mindbroken">> - <<set _ignoredRule = 1>> - <<elseif disobedience($activeSlave) != 0>> - <<set _ignoredRule = (disobedience($activeSlave) >= random(1,100)) ? 1 : 0>> - <<else>> - <<set _ignoredRule = 0>> - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs" || $activeSlave.aphrodisiacs > 1>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $He's literally full of - <<else>> - $He's swimming in - <</if>> - <<if !hasAnyArms($activeSlave)>> - aphrodisiacs, but is an amputee, so $he cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself<<if $activeSlave.inflationType == "aphrodisiacs">>, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more<</if>>. - <<elseif $activeSlave.rules.release.masturbation == 0 && $activeSlave.rules.release.master == 0 && _ignoredRule == 0>> - aphrodisiacs, but is not permitted to touch $himself nor beg you for release. $He writhes with extreme sexual frustration, desperate to not break the rules in front of you<<if $activeSlave.inflationType == "aphrodisiacs">>, but only manages to stir up the aphrodisiacs contained in $his gut, further strengthening their effects on $him<</if>>. - <<if canAchieveErection($activeSlave)>> - <<if $activeSlave.chastityPenis>> - $His cock agonizingly fills $his chastity cage, only adding to $his misery. - <<else>> - $His cock stands painfully erect, threatening to blow with the slightest contact. - <</if>> - <</if>> - <<elseif !canDoVaginal($activeSlave) && !canDoAnal($activeSlave) && ($activeSlave.dick == 0 || $activeSlave.chastityPenis) && $activeSlave.fetish == "boobs" && $activeSlave.boobs > 300>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you, $he - <<if $activeSlave.nipples == "fuckable">> - uses <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>> to vigorously fist $his nipples. - <<else>> - viciously gropes, kneads and milks $his breasts, only stopping to occasionally focus on $his erect nipples. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - aphrodisiacs and is not allowed to masturbate so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you, $he desperately presents $his chest in the hopes you'll grab hold of $his favorite body parts. - <</if>> - <<elseif canDoAnal($activeSlave) && $activeSlave.fetish == "buttslut">> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he - <<if $activeSlave.anus == 0>> - furiously rubs $his virgin anus and the sensitive perineum beneath it, desperately trying to either get $himself off or entice you into giving $him what $he needs. - <<else>> - uses <<if $activeSlave.anus > 2>><<if hasBothArms($activeSlave)>>both hands<<else>>$his entire fist<</if>>,<<else>>several fingers<</if>> to vigorously fuck $his favorite hole. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - aphrodisiacs and is not allowed to masturbate so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you, $he desperately presents $his anus hoping to entice you into giving $him relief. - <</if>> - <<elseif $activeSlave.vagina >= 0 && $activeSlave.dick > 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if !canDoVaginal($activeSlave) && $activeSlave.chastityPenis>> - <<if canDoAnal($activeSlave)>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he - <<if $activeSlave.anus == 0>> - <<if hasBothArms($activeSlave)>> - plays with a nipple with one hand while furiously rubbing $his virgin anus and the sensitive perineum beneath it with the other, - <<else>> - furiously rubs $his virgin anus and the sensitive perineum beneath it, - <</if>> - desperately trying to get $himself off. - <<else>> - uses <<if $activeSlave.anus > 2>>$his entire hand, formed into a beak shape,<<elseif $activeSlave.anus > 1>>two fingers<<else>>a finger<</if>> to fuck $his own ass. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - aphrodisiacs, but is wearing full chastity and cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself<<if $activeSlave.inflationType == "aphrodisiacs">>, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more<</if>>. - <</if>> - <<elseif canDoVaginal($activeSlave)>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he fingers $his vagina with - <<if hasBothArms($activeSlave)>> - <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> - one hand while $he fingers $his anus with the other. - <<else>> - one hand while $he plays with a nipple with the other. - <</if>> - <<else>> - $his hand. - <</if>> - <<elseif !$activeSlave.chastityPenis>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he rubs $his shaft with - <<if hasBothArms($activeSlave)>> - <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> - one hand while $he fingers $his anus with the other. - <<else>> - both hands. - <</if>> - <<else>> - $his hand. - <</if>> - <<if canPenetrate($activeSlave)>> - $His cock is painfully erect. - <</if>> - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he rubs $his shaft - <<if hasBothArms($activeSlave)>> - <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> - and pussy with one hand while $he fingers $his anus with the other. - <<else>> - one hand while $he fingers $his pussy with the other. - <</if>> - <<else>> - and pussy with $his hand. - <</if>> - <<if canAchieveErection($activeSlave)>> - $His cock is painfully erect. - <<else>> - $His cock is painfully engorged. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic masturbation forces $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <</if>> - <<else>> - aphrodisiacs and is not allowed to masturbate so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he desperately presents $his open mouth, $his - <<if $activeSlave.boobs >= 300>> - breasts, - <<else>> - chest, - <</if>> - <<if canDoVaginal($activeSlave) || !$activeSlave.chastityPenis>> - <<if !canDoAnal($activeSlave)>> - and - <</if>> - $his crotch, - <</if>> - <<if canDoAnal($activeSlave)>> - <<if canDoVaginal($activeSlave) || !$activeSlave.chastityPenis>> - and - <</if>> - $his anus - <</if>> - <<if !canDoVaginal($activeSlave) && !$activeSlave.chastityPenis && !canDoAnal($activeSlave)>> - and $his chastity - <</if>> - in turn, hoping that something will entice you to give $him relief. - <<if $activeSlave.chastityPenis>> - $His cock agonizingly fills $his chastity cage, only adding to $his misery. - <<elseif canAchieveErection($activeSlave)>> - $His cock stands painfully erect, threatening to blow with the slightest contact. - <<else>> - $His cock is painfully engorged and ready to burst at the slightest touch. - <</if>> - <</if>> - <<elseif $activeSlave.vagina >= 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if !canDoVaginal($activeSlave)>> - <<if canDoAnal($activeSlave)>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he - <<if $activeSlave.anus == 0>> - <<if hasBothArms($activeSlave)>> - plays with a nipple with one hand while furiously rubbing $his virgin anus and the sensitive perineum beneath it with the other, - <<else>> - furiously rubs $his virgin anus and the sensitive perineum beneath it, - <</if>> - desperately trying to get $himself off. - <<else>> - uses <<if $activeSlave.anus > 2>>$his entire hand, formed into a beak shape,<<elseif $activeSlave.anus > 1>>two fingers<<else>>a finger<</if>> to fuck $his own ass. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - aphrodisiacs, but is wearing a chastity belt and cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself<<if $activeSlave.inflationType == "aphrodisiacs">>, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more<</if>>. - <</if>> - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he rubs $his clit with - <<if hasBothArms($activeSlave)>> - <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> - one hand while $he fingers $his anus with the other. - <<else>> - one hand while $he plays with a nipple with the other. - <</if>> - <<else>> - $his hand. - <</if>> - <</if>> - <<else>> - aphrodisiacs and is not allowed to masturbate so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he desperately presents $his open mouth, $his - <<if $activeSlave.boobs >= 300>> - breasts, - <<else>> - chest, - <</if>> - <<if canDoVaginal($activeSlave)>> - <<if !canDoAnal($activeSlave)>> - and - <</if>> - $his crotch, - <</if>> - <<if canDoAnal($activeSlave)>> - <<if canDoVaginal($activeSlave)>> - and - <</if>> - $his anus - <</if>> - <<if !canDoVaginal($activeSlave) && !$activeSlave.chastityAnus>> - and $his chastity belts - <</if>> - in turn, hoping that something will entice you to give $him relief. - <</if>> - <<elseif $activeSlave.dick > 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if $activeSlave.chastityPenis>> - <<if canDoAnal($activeSlave)>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he - <<if $activeSlave.anus == 0>> - <<if hasBothArms($activeSlave)>> - plays with a nipple with one hand while furiously rubbing $his virgin anus and the sensitive perineum beneath it with the other, - <<else>> - furiously rubs $his virgin anus and the sensitive perineum beneath it, - <</if>> - desperately trying to get $himself off. - <<else>> - uses <<if $activeSlave.anus > 2>>$his entire hand, formed into a beak shape,<<elseif $activeSlave.anus > 1>>two fingers<<else>>a finger<</if>> to fuck $his own ass. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - aphrodisiacs, but is wearing a chastity cage and cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself<<if $activeSlave.inflationType == "aphrodisiacs">>, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more<</if>>. - <</if>> - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he rubs $his shaft with - <<if hasBothArms($activeSlave)>> - <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> - one hand while $he fingers $his anus with the other. - <<else>> - both hands. - <</if>> - <<else>> - $his hand. - <</if>> - <<if canAchieveErection($activeSlave)>> - $His cock is painfully erect. - <<else>> - $His cock is painfully engorged. - <</if>> - <</if>> - <<else>> - aphrodisiacs and is not allowed to masturbate so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he desperately presents $his open mouth, $his - <<if $activeSlave.boobs >= 300>> - breasts, - <<else>> - chest, - <</if>> - <<if !canDoAnal($activeSlave)>> - and - <</if>> - $his crotch, - <<if canDoAnal($activeSlave)>> - and $his anus - <</if>> - in turn, hoping that something will entice you to give $him relief. - <<if $activeSlave.chastityPenis>> - $His chastity cage painfully squeezes $his cock. - <<elseif canAchieveErection($activeSlave)>> - $His cock is painfully erect. - <<else>> - $His cock is painfully engorged. - <</if>> - <</if>> - <<else>> /* no tools */ - aphrodisiacs, has<<if $seeDicks > 0>> no penis and<</if>> no vagina, and - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he - <<if canDoAnal($activeSlave)>> - <<if $activeSlave.anus == 0>> - plays with a nipple with one hand while furiously rubbing $his virgin anus and the sensitive perineum beneath it with the other, desperately trying to get $himself off. - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - uses <<if $activeSlave.anus > 2>>$his entire hand, formed into a beak shape,<<elseif $activeSlave.anus > 1>>two fingers<<else>>a finger<</if>> to fuck $his own ass. - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <</if>> - <<elseif $activeSlave.fetish == "boobs">> - furiously works $his rock-hard nipples. - <<else>> - writhes with extreme sexual frustration, desperately trying to relieve $himself despite $his anal chastity. - <</if>> - <<if $activeSlave.inflationType == "aphrodisiacs">> - $His frantic attempts force $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. - <</if>> - <<else>> - <<if canDoAnal($activeSlave)>> - and is not allowed to masturbate, so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he desperately presents $his asshole, hoping you'll fuck $his only real source of relief. - <<else>> - and is locked in anal chastity, so as $he <<if hasAnyLegs($activeSlave)>>stands<<else>>sits<</if>> before you $he desperately presents $his rear, hoping to entice you into removing $his belt and taking $him right there. - <</if>> - <</if>> - <</if>> - <<else>> - $He's on - <<if !hasAnyArms($activeSlave)>> - aphrodisiacs, but is an amputee, so $he cannot touch $himself. $He writhes with sexual frustration. - <<elseif $activeSlave.rules.release.masturbation == 0 && $activeSlave.rules.release.master == 0 && _ignoredRule == 0>> - aphrodisiacs, but is not permitted to touch $himself nor beg you for release, so as $he obeys your commands $he shifts $his weight uncomfortably. - <<if canAchieveErection($activeSlave) && !$activeSlave.chastityPenis>> - $His erect dick sways as $he does. - <</if>> - <<elseif $activeSlave.vagina >= 0 && $activeSlave.dick > 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if !canDoVaginal($activeSlave) && $activeSlave.chastityPenis>> - aphrodisiacs, but is wearing chastity and cannot touch $himself. $He writhes with sexual frustration as $he runs $his <<if hasBothArms($activeSlave)>>hands<<else>>hand<</if>> across $his body. - <<elseif canDoVaginal($activeSlave)>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he obeys your commands $he idly rubs $his pussy with <<if hasBothArms($activeSlave)>>one hand while the other pinches a nipple<<else>>$his hand<</if>>. - <<elseif !$activeSlave.chastityPenis>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he obeys your commands $he idly rubs $his shaft with <<if hasBothArms($activeSlave)>>one hand while the other pinches a nipple<<else>>$his hand<</if>>. - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he obeys your commands $he idly rubs $his shaft - <<if hasBothArms($activeSlave)>> - with one hand while $he fingers $his pussy with the other. - <<else>> - and pussy with $his hand. - <</if>> - <</if>> - <<else>> - aphrodisiacs, but is not permitted to touch $himself, so as $he obeys your commands $he shifts $his weight uncomfortably. - <<if canAchieveErection($activeSlave) && !$activeSlave.chastityPenis>> - $His erect dick sways as $he does. - <</if>> - <</if>> - <<elseif $activeSlave.vagina >= 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if !canDoVaginal($activeSlave)>> - aphrodisiacs, but is wearing a chastity belt and cannot touch $himself. $He writhes with sexual frustration. - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he obeys your commands $he idly rubs $his pussy with <<if hasBothArms($activeSlave)>>one hand while the other pinches a nipple<<else>>$his hand<</if>>. - <</if>> - <<else>> - aphrodisiacs, but is not permitted to touch $himself, so as $he obeys your commands $he shifts $his weight uncomfortably. - <</if>> - <<elseif $activeSlave.dick > 0>> - <<if $activeSlave.rules.release.masturbation == 1 || _ignoredRule == 1>> - <<if $activeSlave.chastityPenis>> - aphrodisiacs, but is wearing a chastity cage and cannot touch $himself. $He writhes with sexual frustration. - <<else>> - aphrodisiacs and - <<if _ignoredRule == 1>> - has disregarded $his masturbation restriction, - <<else>> - is allowed to masturbate, - <</if>> - so as $he obeys your commands $he idly rubs $his shaft with <<if hasBothArms($activeSlave)>>one hand while the other pinches a nipple<<else>>$his hand<</if>>. - <</if>> - <<else>> - aphrodisiacs, but is not permitted to touch $himself, so as $he obeys your commands $he shifts $his weight uncomfortably. - <<if canAchieveErection($activeSlave) && !$activeSlave.chastityPenis>> - $His erect dick sways as $he does. - <</if>> - <</if>> - <<else>> - aphrodisiacs, but has<<if $seeDicks > 0>> no penis and<</if>> no vagina no touch, so as $he obeys your commands $he shifts $his weight uncomfortably. - <</if>> - <</if>> - <</if>> - <<if ($activeSlave.addict > 0) && ($activeSlave.addict <= 2)>> - $He is a new <span class="cyan">aphrodisiac addict.</span> - <<elseif ($activeSlave.addict > 0) && ($activeSlave.addict < 10)>> - $He is a confirmed <span class="cyan">aphrodisiac addict.</span> - <<elseif ($activeSlave.addict > 0)>> - $He is completely <span class="cyan">dependent on aphrodisiacs,</span> and it is unlikely you will ever be able to wean $him off them. - <</if>> + <<= App.Desc.drugs($activeSlave)>> <</if>> <<set $saleDescription = 0, $applyLaw = 0>> /* clear sale and law flags, if set */ diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index 8512f5d628ae097f75889e1d3ffaa2ab4a0ed6ff..ec4c8c7e9ce1d8800604ee5aed776c71ffd94573 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -184,6 +184,8 @@ /% Fix some possible floating point rounding errors, and bring precision to one decimal place. %/ <<run SlaveStatClamp($slaves[_i])>> <<set $slaves[_i].energy = Math.clamp($slaves[_i].energy.toFixed(1), 0, 100)>> + <<set $slaves[_i].attrXY = Math.clamp($slaves[_i].attrXY.toFixed(1), 0, 100)>> + <<set $slaves[_i].attrXX = Math.clamp($slaves[_i].attrXX.toFixed(1), 0, 100)>> <<if $slaves[_i].fetishStrength > 95>> <<set $slaves[_i].fetishStrength = 100>> <<else>> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index 8293e06236324248b66656278b6fa5ecb745dbfb..5d762d66439cbc3aa860d235528445e3f62d1864 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -415,7 +415,7 @@ <</if>> <</if>> - <<if ($Stewardess != 0) && (_L.servantsQuarters > 0) && ($Stewardess.actualAge >= 35 || $AgePenalty == 0)>> + <<if (_S.Stewardess) && (_L.servantsQuarters > 0) && (_S.Stewardess.actualAge >= 35 || $AgePenalty == 0)>> <<set $PETSevent.push("stewardess beating")>> <</if>> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index 01775d78605a4f0ff7b6abcee7ba94d8c800dd90..dc47c42182ac2d0c87c47a5ee99763c232d6f900 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -140,7 +140,7 @@ <<if ($activeSlave.ID == $Milkmaid.ID) && $activeSlave.dick > 5 && canPenetrate($activeSlave) && $cumSlaves > 3>> <<set _qualifiedNicknames.push("Collectrix")>> <</if>> -<<if ($activeSlave.ID == $Stewardess.ID)>> +<<if ($activeSlave.ID == $StewardessID)>> <<set _qualifiedNicknames.push("Stewardess")>> <</if>> <<if ($activeSlave.ID == $Schoolteacher.ID)>> diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw index 9462fe30673c8bb57a9c9828f09429b556a8d1f3..333f82a703419a3019678fa22c540546e1f1ad07 100644 --- a/src/uncategorized/saDiet.tw +++ b/src/uncategorized/saDiet.tw @@ -1476,7 +1476,7 @@ <</if>> <<if $slaves[$i].waist < 15>> Hormonal changes @@.orange;thicken $his waist.@@ - <<set $slaves[$i].waist-->> + <<set $slaves[$i].waist++>> <</if>> <<elseif $slaves[$i].balls > 0>> /* male */ <<if $slaves[$i].muscles < 30>> diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw index a6d00acccdd09a2b53be5e6aef30a5d322606040..e6968eeabedcb1843698379463205605bb9b438e 100644 --- a/src/uncategorized/saRelationships.tw +++ b/src/uncategorized/saRelationships.tw @@ -141,7 +141,7 @@ <<set _SlaveI.devotion += 1>> <</if>> <</if>> - <<elseif (_SlaveJ.ID == $Stewardess.ID) && (_SlaveI.assignment == "work as a servant")>> + <<elseif (_SlaveJ.ID == $StewardessID) && (_SlaveI.assignment == "work as a servant")>> <<if _SlaveJ.rules.relationship != "restrictive">> _SlaveI.slaveName manages to ingratiate $himself with the Stewardess, _SlaveJ.slaveName. The two slaves have @@.lightgreen;struck up a friendship.@@ <<set _SlaveJ.relationship = 1, _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveI.relationship = 1, _SlaveI.relationshipTarget = _SlaveJ.ID>> diff --git a/src/uncategorized/servantsQuarters.tw b/src/uncategorized/servantsQuarters.tw index 1d14602cf0d2ced5fafa2e500094d930097ea02d..1c1d71e93e47d0b973d75c721ddc7bccc60df860 100644 --- a/src/uncategorized/servantsQuarters.tw +++ b/src/uncategorized/servantsQuarters.tw @@ -72,8 +72,8 @@ $servantsQuartersNameCaps are busy with hurrying slaves. One shift of servants is eating, cleaning the quarters, and bathing. The second is sleeping, and the third is out in the penthouse cleaning and serving. <<elseif _DL > 0>> A few slaves are working out of the servants' quarters. They must split their scant time between looking after their own needs and the superior needs of everyone else. - <<elseif $Stewardess != 0>> - $Stewardess.slaveName is alone, and seems rather bereft without anyone to order around. + <<elseif _S.Stewardess>> + _S.Stewardess.slaveName is alone, and seems rather bereft without anyone to order around. <<else>> None of your slaves are working out of the servants' quarters. <div class="choices" style="font-style:normal"> @@ -124,10 +124,10 @@ <p> <<set _facility = App.Entity.facilities.servantsQuarters>> - <<if $Stewardess != 0>> - <<setLocalPronouns $Stewardess>> + <<if _S.Stewardess>> + <<setLocalPronouns _S.Stewardess>> <<print App.UI.SlaveList.displayManager(_facility)>> - <<if canAchieveErection($Stewardess) && $Stewardess.pubertyXY == 1>> + <<if canAchieveErection(_S.Stewardess) && _S.Stewardess.pubertyXY == 1>> <<if $stewardessImpregnates == 1>> Keeping the maids pregnant is part of $his job. <div class="choices"> diff --git a/src/uncategorized/servantsQuartersReport.tw b/src/uncategorized/servantsQuartersReport.tw index 28abb38eff176e710cc78d5426016ef73962b9ad..6abf6fc4e9d59aec7819e2b6c0eaa63e013633f6 100644 --- a/src/uncategorized/servantsQuartersReport.tw +++ b/src/uncategorized/servantsQuartersReport.tw @@ -1,334 +1,5 @@ :: Servants' Quarters Report [nobr] -<<set _slaves = App.Utils.sortedEmployees(App.Entity.facilities.servantsQuarters)>> -<<set _DL = _slaves.length, _SL = $slaves.length, _FLsFetish = 0, $stewardessBonus = 0>> - -<<if $servantsQuartersDecoration != "standard">> - <<set _devBonus = 1>> -<<else>> - <<set _devBonus = 0>> -<</if>> - -<<if ($Stewardess != 0)>> - <<set _FLs = $slaveIndices[$Stewardess.ID]>> - - <<set $slaves[_FLs].devotion += _devBonus>> - <<if ($slaves[_FLs].health.condition < -80)>> - <<run improveCondition($slaves[_FLs], 20)>> - <<elseif ($slaves[_FLs].health.condition < -40)>> - <<run improveCondition($slaves[_FLs], 15)>> - <<elseif ($slaves[_FLs].health.condition < 0)>> - <<run improveCondition($slaves[_FLs], 10)>> - <<elseif ($slaves[_FLs].health.condition < 90)>> - <<run improveCondition($slaves[_FLs], 7)>> - <</if>> - <<if $slaves[_FLs].devotion <= 60>> - <<set $slaves[_FLs].devotion++>> - <</if>> - <<if $slaves[_FLs].trust < 60>> - <<set $slaves[_FLs].trust++>> - <</if>> - <<if $slaves[_FLs].fetishStrength <= 95>> - <<if $slaves[_FLs].fetish != "dom">> - <<if fetishChangeChance($slaves[_FLs]) > random(0,100)>> - <<set _FLsFetish = 1, $slaves[_FLs].fetishKnown = 1, $slaves[_FLs].fetish = "dom">> - <</if>> - <<elseif $slaves[_FLs].fetishKnown == 0>> - <<set _FLsFetish = 1, $slaves[_FLs].fetishKnown = 1>> - <<else>> - <<set _FLsFetish = 2, $slaves[_FLs].fetishStrength += 4>> - <</if>> - <</if>> - <<if $slaves[_FLs].rules.living != "luxurious">> - <<set $slaves[_FLs].rules.living = "luxurious">> - <</if>> - <<set $Stewardess = $slaves[_FLs]>> - <<setLocalPronouns $Stewardess>> - <<= SlaveFullName($Stewardess)>> is serving as your Stewardess.<<if $Stewardess.relationship == -3 && $Stewardess.devotion > 50>> $He does $his best to be your perfect lovely house<<= $wife>>.<</if>> - <<if ($stewardessImpregnates == 1) && (_DL > 0) && (canPenetrate($Stewardess)) && $Stewardess.pubertyXY == 1>> - <<set _stewardessImpregnated = 0>> - <<for _slave range _slaves>> - <<if (canImpreg(_slave, $Stewardess))>> - <<= knockMeUp(_slave, 100, 2, $Stewardess.ID)>> - <<set _slave.preg = 1, _slave.pregKnown = 1, _slave.pregWeek = 1, _slave.pregSource = $Stewardess.ID>><<set _slave.pregType = setPregType(_slave)>> - <<set WombImpregnate(_slave, _slave.pregType, _slave.pregSource, 1)>> - <<set _slave.vagina = Math.clamp(_slave.vagina,1,10), _stewardessImpregnated++, _slave.counter.vaginal += 10, $vaginalTotal += 10>> - <<set _slave.need = 0>> - <</if>> - <</for>> - <<if _stewardessImpregnated > 0>> - It's $his responsibility to keep $his charges pregnant, so - <<if _stewardessImpregnated == 1>> - $he cums in the only fertile slave's pussy all week. - <<else>> - $he ensures the _stewardessImpregnated fertile servants are full of $his cum at all times. - <</if>> - <<if $Stewardess.career == "a breeding bull">> - $He was conditioned to fill empty wombs, so $he takes a @@.hotpink;deep pleasure@@ in $his job. - <<set $slaves[_FLs].devotion++>> - <</if>> - <<set _Tmult = (_stewardessImpregnated * 10), $slaves[_FLs].counter.penetrative += _Tmult, $Stewardess.counter.penetrative += _Tmult, $penetrativeTotal += _Tmult>> - <<set $slaves[_FLs].need = 0>> - <</if>> - <</if>> - <<if _FLsFetish == 1>> - $He's allowed and even expected to use $his charges for $his own gratification, and sometimes they'll even instigate submissive sex with $him just to ingratiate themselves. $He becomes comfortable with the role of a @@.lightcoral;sexual dominant.@@ - <<elseif _FLsFetish == 2>> - Having a legion of servants jumping to obey $his daily commands @@.lightsalmon;makes $him more dominant.@@ - <</if>> - <<if ($Stewardess.health.condition < 10)>> - Though $he tries to watch the servants, $his lack of good health inhibits $him. - <<elseif ($Stewardess.health.condition < 80)>> - <<set $stewardessBonus += 50>> - $His good health allows $him to work long hours and @@.yellowgreen;drive@@ the servants hard. - <<else>> - <<set $stewardessBonus += 75>> - $His perfect health allows $him to work exhaustive hours and @@.yellowgreen;drive@@ the servants very hard. - <</if>> - <<if setup.stewardessCareers.includes($Stewardess.career)>> - <<set $stewardessBonus += 25>> - $He has applicable experience with daily sums and organizational trifles from $his life before $he was a slave. - <<elseif $Stewardess.skill.stewardess >= $masteredXP>> - <<set $stewardessBonus += 25>> - $He has applicable experience with daily sums and organizational trifles from working for you. - <<else>> - <<set $slaves[_FLs].skill.stewardess += random(1,Math.ceil(($Stewardess.intelligence+$Stewardess.intelligenceImplant)/15) + 8)>> - <</if>> - <<if ($Stewardess.actualAge > 35)>> - <<set $stewardessBonus += 25>> - $His age and experience give $him added effectiveness. - <<elseif $AgePenalty == 0>> - <<set $stewardessBonus +=25>> - <</if>> - <<if ($Stewardess.intelligence+$Stewardess.intelligenceImplant > 15)>> - <<set $stewardessBonus += $Stewardess.intelligence+$Stewardess.intelligenceImplant>> - $He's smart enough that $he misses very little. - <</if>> - <<if ($Stewardess.energy > 95) || (($Stewardess.fetishKnown == 1) && ($Stewardess.fetish == "dom"))>> - <<set _BonusToggle = 1>> - <<else>> - <<set _BonusToggle = 0>> - <</if>> - <<for _slave range _slaves>> - <<setLocalPronouns _slave 2>> - <<if $Stewardess.rivalryTarget == _slave.ID>> - $He bears down on $his <<print rivalryTerm($Stewardess)>>, _slave.slaveName, forcing _him2 to work extra hard or suffer punishment. - <<set _slave.devotion--, _slave.trust-->> - <<if random(1,100) > 65>> - <<set $Stewardess.rivalry++, $slaves[_FLs].rivalry++, _slave.rivalry++>> - <</if>> - <<elseif $Stewardess.relationshipTarget == _slave.ID>> - $He dotes over $his <<print relationshipTerm($Stewardess)>>, _slave.slaveName, making sure _he2 knows how to do a good job and keeping _him2 well stocked with everything _he2 needs. - <<set _slave.devotion++>> - <<elseif areRelated($Stewardess, _slave)>> - $He pays special attention to $his <<print relativeTerm($Stewardess,_slave)>>, _slave.slaveName, making sure _he2 doesn't slack off just because they are related. - <<set _slave.trust++>> - <</if>> - <<switch _slave.prestigeDesc>> - <<case "$He is a famed Free Cities whore, and commands top prices.">> - $He does $his best to motivate the famous whore, _slave.slaveName, though $he is uncertain why _he2 is here. - <<case "$He is a famed Free Cities slut, and can please anyone.">> - $He ignores $his duties in order the fawn over the famous entertainer, _slave.slaveName. - <<case "$He is remembered for winning best in show as a cockmilker.">> - <<if (_slave.dick != 0) && (_slave.balls != 0) && (_slave.prostate > 1)>> - _slave.slaveName leaves a trail of cum wherever _he2 goes and frequently stops to masturbate, greatly annoying $Stewardess.slaveName. - <<if random(1,100) > 90 && $Stewardess.rivalry == 0 && _slave.rivalry == 0>> - <<set $Stewardess.rivalryTarget = _slave.ID, $Stewardess.rivalry++, $slaves[_FLs].rivalryTarget = _slave.ID, $slaves[_FLs].rivalry++>> - <<set _slave.rivalryTarget = $Stewardess.ID, _slave.rivalry++>> - <</if>> - <</if>> - <<case "$He is remembered for winning best in show as a dairy cow.">> - <<if (_slave.lactation > 0) && ((_slave.boobs-_slave.boobsImplant) > 6000)>> - _slave.slaveName's huge breasts frequently get in the way of _his2 work and _he2 leaks milk everywhere, greatly annoying $Stewardess.slaveName. - <<if random(1,100) > 90 && $Stewardess.rivalry == 0 && _slave.rivalry == 0>> - <<set $Stewardess.rivalryTarget = _slave.ID, $Stewardess.rivalry++, $slaves[_FLs].rivalryTarget = _slave.ID, $slaves[_FLs].rivalry++>> - <<set _slave.rivalryTarget = $Stewardess.ID, _slave.rivalry++>> - <</if>> - <</if>> - <<case "$He is remembered for winning best in show as a breeder.">> - <<if _slave.bellyPreg >= 10000>> - _slave.slaveName's big pregnant belly frequently gets in the way of _his2 work. However, $Stewardess.slaveName is willing to overlook it, as well as allow _him2 easy jobs, due to how valuable _his2 womb is. - <</if>> - <</switch>> - <<if (_BonusToggle == 1) && (_slave.devotion < 45)>> - <<set _slave.devotion += 5>> - <</if>> - <</for>> - <<if (_DL > 0)>> - <<if ($Stewardess.fetishKnown == 1) && ($Stewardess.fetish == "dom")>> - $He walks among the cowering servants as a queen among peasants, playing the role of a dominant to perfection and increasing $his charges' @@.hotpink;obedience.@@ - <<elseif ($Stewardess.energy > 95)>> - $He walks among the cowering servants looking for an excuse to extract sex from shirkers as @@.hotpink;punishment.@@ - <</if>> - /% Get it out of the loop %/ - <<run cashX(($stewardessBonus * _DL), "servantsQuarters", $Stewardess)>> - <br><br> - <</if>> -<</if>> - -<<if $arcologies[0].FSRestart != "unset" && _stewardessImpregnated == 1 && $eugenicsFullControl != 1>> - The Societal Elite know you've ordered $Stewardess.slaveName to impregnate your maids. @@.red;They are not amused by your disinterest in eugenics.@@ - <<set $failedElite += 10>> -<</if>> -<<if (_DL > 0)>> - <<setLocalPronouns _slaves[0]>> - <<if (_DL != 1)>>''There are _DL slaves working out of the servants' quarters.'' They work to<<else>>''There is one slave working out of the servants' quarters.'' $He works to<</if>> @@.yellowgreen;reduce@@ your household expenses; having a well-staffed house slightly @@.green;increases@@ your reputation. -<</if>> - -<<if ($Stewardess != 0)>> - <<set $i = _FLs>> /* apply following SA passages to facility leader */ - <<if $showEWD != 0>> - <br><br> - /* 000-250-006 */ - <<if $seeImages && $seeReportImages>> - <div class="imageRef tinyImg"> - <<= SlaveArt($slaves[_FLs], 0, 0)>> - </div> - <</if>> - /* 000-250-006 */ - <span class='slave-name'><<= SlaveFullName($slaves[_FLs])>></span> is serving as your Stewardess. - <br> - <<= App.SlaveAssignment.choosesOwnClothes($slaves[$i])>> - <<run tired($slaves[$i])>> - <<include "SA rules">> - <<include "SA diet">> - <<include "SA long term effects">> - <<= App.SlaveAssignment.drugs($slaves[$i])>> - <<include "SA relationships">> - <<include "SA rivalries">> - <br><<include "SA devotion">> - <<else>> - <<silently>> - <<run App.SlaveAssignment.choosesOwnClothes($slaves[$i])>> - <<run tired($slaves[$i])>> - <<include "SA rules">> - <<include "SA diet">> - <<include "SA long term effects">> - <<run App.SlaveAssignment.drugs($slaves[$i])>> - <<include "SA relationships">> - <<include "SA rivalries">> - <<include "SA devotion">> - <</silently>> - <</if>> - <<set $Stewardess = $slaves[_FLs]>> -<</if>> - -<<set $servantMilkersMultiplier = 0.5, _SQMilk = 0, _SQMilkSale = 0>> - -<<for _slave range _slaves>> - <<set $i = $slaveIndices[_slave.ID]>> - <<set _slave.devotion += _devBonus>> - <<setLocalPronouns _slave 2>> - <<if (_slave.devotion <= 20) && (_slave.trust >= -20)>> - <<set _slave.devotion -= 5, _slave.trust -= 5>> - <<elseif (_slave.devotion <= 10)>> - <<set _slave.devotion += 2>> - <<elseif (_slave.devotion >= 80)>> - <<set _slave.devotion -= 2>> - <</if>> - <<if (_slave.devotion < -20)>> - <<set _slave.trust += 3>> - <<elseif (_slave.trust < -50)>> - <<set _slave.trust += 2>> - <<elseif (_slave.trust < -30)>> - <<set _slave.trust += 1>> - <</if>> - <<if (_slave.health.condition < -80)>> - <<run improveCondition(_slave, 20)>> - <<elseif (_slave.health.condition < -40)>> - <<run improveCondition(_slave, 10)>> - <<elseif (_slave.health.condition < 0)>> - <<run improveCondition(_slave, 7)>> - <<elseif (_slave.health.condition < 90)>> - <<run improveCondition(_slave, 3)>> - <</if>> - <<switch $servantsQuartersDecoration>> - <<case "Arabian Revivalist" "Aztec Revivalist" "Chattel Religionist" "Chinese Revivalist" "Degradationist" "Edo Revivalist" "Egyptian Revivalist" "Roman Revivalist" "Subjugationist" "Supremacist">> - <<set _slave.rules.living = "spare">> - <<case "Slave Professionalism">> - <<if _slave.intelligence+_slave.intelligenceImplant > 15>> - <<set _slave.rules.living = "normal">> - <<else>> - <<set _slave.rules.living = "spare">> - <</if>> - <<case "Petite Admiration">> - <<if heightPass(_slave)>> - <<set _slave.rules.living = "normal">> - <<else>> - <<set _slave.rules.living = "spare">> - <</if>> - <<case "Statuesque Glorification">> - <<if heightPass(_slave)>> - <<set _slave.rules.living = "normal">> - <<else>> - <<set _slave.rules.living = "spare">> - <</if>> - <<default>> - <<set _slave.rules.living = "normal">> - <</switch>> - <<if $showEWD != 0>> - <br><br> - /* 000-250-006 */ - <<if $seeImages && $seeReportImages>> - <div class="imageRef tinyImg"> - <<= SlaveArt(_slave, 0, 0)>> - </div> - <</if>> - /* 000-250-006 */ - <span class='slave-name'><<= SlaveFullName(_slave)>></span> - <<if _slave.choosesOwnAssignment == 2>> - <<include "SA chooses own job">> - <<else>> - is working out of $servantsQuartersName. - <</if>> - <br> _He2 <<= App.SlaveAssignment.servant(_slave)>> - <<if ($servantMilkers == 1) && (_slave.lactation > 0)>> - <br> _He2 <<= App.SlaveAssignment.getMilked(_slave)>> - <<set _SQMilk += $milk, _SQMilkSale += $milkSale>> - <</if>> - <br> - <<= App.SlaveAssignment.choosesOwnClothes(_slave)>> - <<include "SA rules">> - <<include "SA diet">> - <<include "SA long term effects">> - <<= App.SlaveAssignment.drugs(_slave)>> - <<include "SA relationships">> - <<include "SA rivalries">> - <br><<include "SA devotion">> - <<else>> - <<silently>> - <<include "SA chooses own job">> - <<run App.SlaveAssignment.servant(_slave)>> - <<if ($servantMilkers == 1) && (_slave.lactation > 0)>> - <<run App.SlaveAssignment.getMilked(_slave)>> - <<set _SQMilk += $milk, _SQMilkSale += $milkSale>> - <</if>> - <<run App.SlaveAssignment.choosesOwnClothes(_slave)>> - <<include "SA rules">> - <<include "SA diet">> - <<include "SA long term effects">> - <<run App.SlaveAssignment.drugs(_slave)>> - <<include "SA relationships">> - <<include "SA rivalries">> - <<include "SA devotion">> - <</silently>> - <</if>> -<</for>> - -<<if _SQMilk > 0 || $servantsQuartersDecoration != "standard">> - <br><br> - <<if _SQMilk > 0>> - Since your lactating servants spend most of their time working in the penthouse, they use the milkers there, giving _SQMilk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_SQMilkSale)>>.@@ - <</if>> -<</if>> - -<<if $servantsQuartersDecoration != "standard">> - <br><br> $servantsQuartersNameCaps's $servantsQuartersDecoration atmosphere @@.hotpink;has a minor impact on your servants.@@ -<</if>> - -<<set $servantMilkersMultiplier = 1>> -<<run repX(_DL*20, "servantsQuarters")>> - -<<if _DL > 0 || $Stewardess != 0>> - <br><br> -<</if>> +/* This passage probably isn't really necessary but it helps organize the profiler output. + * TODO: Once all the facility reports look like this, we should probably get rid of these intermediate passages. */ +<<includeDOM App.EndWeek.servantsQuartersReport()>> diff --git a/src/uncategorized/stewardessSelect.tw b/src/uncategorized/stewardessSelect.tw index 1c5c4f97b7c7efc3b391293baa551769833d98dd..dfac601f9c962157abd5bff5c29e7e16b88b5f7a 100644 --- a/src/uncategorized/stewardessSelect.tw +++ b/src/uncategorized/stewardessSelect.tw @@ -1,15 +1,14 @@ :: Stewardess Select [nobr jump-to-safe jump-hidden jump-from-safe] <<set $nextButton = "Back", $nextLink = "Servants' Quarters", $encyclopedia = "Stewardess">> -<<if ($Stewardess != 0)>> - <<set $Stewardess = getSlave($Stewardess.ID)>> - <<setLocalPronouns $Stewardess>> - <span class='slave-name'><<= SlaveFullName($Stewardess)>></span> is serving as your Stewardess.<br><br>$He will manage the Servants' Quarters. +<<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($Stewardess, "be the Stewardess")]] +<br><br>[[None|Servants' Quarters][removeJob(_S.Stewardess, Job.STEWARD)]] <br><br> <<print App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.servantsQuarters, "Servants' Quarters")>> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index e20b372baebfad9e10b76d88671f42f0174d4b90..655776c12a53d6492141b30b0b6636eb953c2cbe 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -861,22 +861,22 @@ <<if _birthScene > 50>> While giving a slave oral service, $slaves[$i].slaveName's water breaks. $He disregards this development and continues working. <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he draws $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>> until <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>>shouts at $him to move $his useless ass. + The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. Instead, $he draws $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>> until <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>>shouts at $him to move $his useless ass. <<else>> While scrubbing the penthouse floor, $slaves[$i].slaveName's water breaks. $He turns to clean this new spill, disregarding what it means. <<ClothingBirth>> - Instead of cleaning the fresh mess $he made, $he draws $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>> until <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>>shouts at $him to move $his useless ass. + Instead of cleaning the fresh mess $he made, $he draws $his child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>> until <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>>shouts at $him to move $his useless ass. <</if>> <<else>> <<if _birthScene > 50>> While giving a slave oral service, $slaves[$i].slaveName's water breaks. $He desperately tries to pull away but they grab $his head and force $him back to their crotch. <<set $humiliation = 1>> <<ClothingBirth>> - The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. $He hurriedly tries to mop up the mess and collect $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before <<if $Stewardess != 0>>$Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him. + The slave gets off quite strongly to the show and shoves $him out of the way, leaving $him to clean up $his mess. $He hurriedly tries to mop up the mess and collect $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before <<if _S.Stewardess>>_S.Stewardess.slaveName<<elseif $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistant.name<</if>> shouts at $him. <<else>> While scrubbing the penthouse floor, $slaves[$i].slaveName's water breaks. $He panics at the thought of not cleaning up $his spill but $his worsening contractions force $him to find a secluded place to give birth. <<ClothingBirth>> - Collecting $his child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he exits $his hiding place before coming under the eye of <<if $Stewardess != 0>>the glaring $Stewardess.slaveName<<elseif $HeadGirl != 0>>the glaring $HeadGirl.slaveName<<else>>$assistant.name<</if>>. $His child<<if $slaves[$i].pregType > 1>>ren<</if>> are promptly taken by other servants following a lecture about priorities and time management. + Collecting $his child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he exits $his hiding place before coming under the eye of <<if _S.Stewardess>>the glaring _S.Stewardess.slaveName<<elseif $HeadGirl != 0>>the glaring $HeadGirl.slaveName<<else>>$assistant.name<</if>>. $His child<<if $slaves[$i].pregType > 1>>ren<</if>> are promptly taken by other servants following a lecture about priorities and time management. <</if>> <</if>>