From 456ef6578d49548258add9b3399a7945da3d60a6 Mon Sep 17 00:00:00 2001 From: DCoded <dsoloha@live.com> Date: Tue, 21 May 2019 00:26:23 -0400 Subject: [PATCH] Revert changes to generateMarketSlave.js --- src/js/generateMarketSlave.js | 273 ++++++++++++++-------------------- 1 file changed, 114 insertions(+), 159 deletions(-) diff --git a/src/js/generateMarketSlave.js b/src/js/generateMarketSlave.js index 8685451c904..1f153839b51 100644 --- a/src/js/generateMarketSlave.js +++ b/src/js/generateMarketSlave.js @@ -22,7 +22,6 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlaveOneTimeMaxAge = V.retirementAge; } } - // eslint-disable-next-line camelcase V.one_time_age_overrides_pedo_mode = 1; if (V.corpSpecRaces.length > 0) { V.fixedRace = jsEither(V.corpSpecRaces); @@ -206,7 +205,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.faceShape = "androgynous"; } V.activeSlave.faceImplant = 20; - V.activeSlave.face = Math.clamp(V.activeSlave.face + 20, -100, 100); + V.activeSlave.face = Math.clamp(V.activeSlave.face+20, -100, 100); } if ((V.activeSlave.ageImplant !== 1) && (V.activeSlave.visualAge >= 25)) { V.activeSlave.ageImplant = 1; @@ -262,28 +261,28 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.corpSpecHormones === 1) { r += `It applies almost universal female hormone therapy. `; if ((V.activeSlave.dick > 0)) { - V.activeSlave.dick = Math.clamp(V.activeSlave.dick - 1, 1, 6); + V.activeSlave.dick = Math.clamp(V.activeSlave.dick-1, 1, 6); } if ((V.activeSlave.balls > 0)) { - V.activeSlave.balls = Math.clamp(V.activeSlave.balls - 1, 1, 6); + V.activeSlave.balls = Math.clamp(V.activeSlave.balls-1, 1, 6); } if ((V.activeSlave.clit > 0)) { - V.activeSlave.clit = Math.clamp(V.activeSlave.clit - 1, 0, 3); + V.activeSlave.clit = Math.clamp(V.activeSlave.clit-1, 0, 3); } if ((V.activeSlave.voice < 3) && (V.activeSlave.voice > 0)) { - V.activeSlave.voice = Math.clamp(V.activeSlave.voice + 1, 1, 3); + V.activeSlave.voice = Math.clamp(V.activeSlave.voice+1, 1, 3); } if ((V.activeSlave.vagina > -1) && (V.activeSlave.ovaries !== 0) && (V.activeSlave.vaginaLube < 2)) { - V.activeSlave.vaginaLube = Math.clamp(V.activeSlave.vaginaLube + 1, 0, 2); + V.activeSlave.vaginaLube = Math.clamp(V.activeSlave.vaginaLube+1, 0, 2); } - if (((V.activeSlave.butt - V.activeSlave.buttImplant) < 2)) { - V.activeSlave.butt = Math.clamp(V.activeSlave.butt + 1, 0, 10); + if (((V.activeSlave.butt-V.activeSlave.buttImplant) < 2)) { + V.activeSlave.butt = Math.clamp(V.activeSlave.butt+1, 0, 10); } - if (((V.activeSlave.boobs - V.activeSlave.boobsImplant) < 500)) { - V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs + 400, 0, 10000); + if (((V.activeSlave.boobs-V.activeSlave.boobsImplant) < 500)) { + V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs+400, 0, 10000); } if (V.activeSlave.face <= 95) { - V.activeSlave.face = Math.clamp(V.activeSlave.face + 20, -100, 100); + V.activeSlave.face = Math.clamp(V.activeSlave.face+20, -100, 100); } if ((V.activeSlave.faceShape === "masculine")) { V.activeSlave.faceShape = "androgynous"; @@ -291,11 +290,11 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.faceShape = "normal"; } if ((V.activeSlave.physicalAge < 25)) { - V.activeSlave.shoulders = Math.clamp(V.activeSlave.shoulders - 1, -2, 2); - V.activeSlave.hips = Math.clamp(V.activeSlave.hips + 1, -2, 2); + V.activeSlave.shoulders = Math.clamp(V.activeSlave.shoulders-1, -2, 2); + V.activeSlave.hips = Math.clamp(V.activeSlave.hips+1, -2, 2); } if ((V.activeSlave.muscles > 30) && (V.activeSlave.diet !== "muscle building") && (V.generalUpgradeMuscle !== "toned") && (V.generalUpgradeMuscle !== "ripped")) { - V.activeSlave.muscles = Math.clamp(V.activeSlave.muscles - 10, 0, 30); + V.activeSlave.muscles = Math.clamp(V.activeSlave.muscles-10, 0, 30); } if ((V.activeSlave.nipples === "tiny")) { V.activeSlave.nipples = "cute"; @@ -305,28 +304,28 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } V.activeSlave.devotion += jsRandom(5, 10); V.activeSlave.trust += jsRandom(5, 10); - V.activeSlave.attrXY = Math.clamp(V.activeSlave.attrXY + jsRandom(5, 10), 0, 100); + V.activeSlave.attrXY = Math.clamp(V.activeSlave.attrXY+jsRandom(5, 10), 0, 100); } else if (V.corpSpecHormones === 2) { r += `It applies almost universal male hormone therapy. `; if ((V.activeSlave.dick > 0)) { - V.activeSlave.dick = Math.clamp(V.activeSlave.dick + 1, 1, 6); + V.activeSlave.dick = Math.clamp(V.activeSlave.dick+1, 1, 6); } if ((V.activeSlave.balls > 0)) { - V.activeSlave.balls = Math.clamp(V.activeSlave.balls + 1, 1, 6); + V.activeSlave.balls = Math.clamp(V.activeSlave.balls+1, 1, 6); } if ((V.activeSlave.clit > 0) && (V.activeSlave.dick === 0)) { - V.activeSlave.clit = Math.clamp(V.activeSlave.clit + 1, 0, 3); + V.activeSlave.clit = Math.clamp(V.activeSlave.clit+1, 0, 3); } if ((V.activeSlave.voice > 1)) { - V.activeSlave.voice = Math.clamp(V.activeSlave.voice - 1, 1, 3); + V.activeSlave.voice = Math.clamp(V.activeSlave.voice-1, 1, 3); } if ((V.activeSlave.vagina > -1) && (V.activeSlave.vaginaLube > 0)) { - V.activeSlave.vaginaLube = Math.clamp(V.activeSlave.vaginaLube - 1, 0, 2); + V.activeSlave.vaginaLube = Math.clamp(V.activeSlave.vaginaLube-1, 0, 2); } - V.activeSlave.butt = Math.clamp(V.activeSlave.butt - 1, 0, 10); - V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs - 400, 0, 10000); + V.activeSlave.butt = Math.clamp(V.activeSlave.butt-1, 0, 10); + V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs-400, 0, 10000); if (V.activeSlave.face > 10) { - V.activeSlave.face = Math.clamp(V.activeSlave.face - 20, -100, 100); + V.activeSlave.face = Math.clamp(V.activeSlave.face-20, -100, 100); } if (V.activeSlave.faceShape === "androgynous" || V.activeSlave.faceShape === "masculine" || V.activeSlave.faceShape === "normal") { V.activeSlave.faceShape = "masculine"; @@ -334,11 +333,11 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.faceShape = "androgynous"; } if ((V.activeSlave.physicalAge < 25)) { - V.activeSlave.shoulders = Math.clamp(V.activeSlave.shoulders + 1, -2, 2); - V.activeSlave.hips = Math.clamp(V.activeSlave.hips - 1, -2, 2); + V.activeSlave.shoulders = Math.clamp(V.activeSlave.shoulders+1, -2, 2); + V.activeSlave.hips = Math.clamp(V.activeSlave.hips-1, -2, 2); } if ((V.activeSlave.muscles <= 95) && (V.activeSlave.diet !== "slimming")) { - V.activeSlave.muscles = Math.clamp(V.activeSlave.muscles + 20, 0, 3); + V.activeSlave.muscles = Math.clamp(V.activeSlave.muscles+20, 0, 3); } if ((V.activeSlave.nipples === "huge")) { V.activeSlave.nipples = "cute"; @@ -348,7 +347,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } V.activeSlave.devotion -= jsRandom(5, 10); V.activeSlave.trust -= jsRandom(5, 10); - V.activeSlave.attrXX = Math.clamp(V.activeSlave.attrXX + jsRandom(5, 10), 0, 100); + V.activeSlave.attrXX = Math.clamp(V.activeSlave.attrXX+jsRandom(5, 10), 0, 100); } else { r += `It does not use hormones on a systematic level. `; } @@ -420,19 +419,19 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.corpSpecImplants === 1) { r += `Slaves are given tasteful breast, butt, and lip implants. `; V.activeSlave.buttImplant = 1; - V.activeSlave.butt = Math.clamp(V.activeSlave.butt + V.activeSlave.buttImplant, 0, 10); + V.activeSlave.butt = Math.clamp(V.activeSlave.butt+V.activeSlave.buttImplant, 0, 10); V.activeSlave.boobsImplant = 600; - V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs + V.activeSlave.boobsImplant, 0, 10000); + V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs+V.activeSlave.boobsImplant, 0, 10000); V.activeSlave.lipsImplant = 20; - V.activeSlave.lips = Math.clamp(V.activeSlave.lips + V.activeSlave.lipsImplant, 0, 55); + V.activeSlave.lips = Math.clamp(V.activeSlave.lips+V.activeSlave.lipsImplant, 0, 55); } else if (V.corpSpecImplants === 2) { r += `Slaves are given absurd breast, butt, and lip implants. `; V.activeSlave.buttImplant = 4; - V.activeSlave.butt = Math.clamp(V.activeSlave.butt + V.activeSlave.buttImplant, 0, 10, V.activeSlave.butt + V.activeSlave.buttImplant); + V.activeSlave.butt = Math.clamp(V.activeSlave.butt+V.activeSlave.buttImplant, 0, 10, V.activeSlave.butt+V.activeSlave.buttImplant); V.activeSlave.boobsImplant = 2400; - V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs + V.activeSlave.boobsImplant, 0, 10000); + V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs+V.activeSlave.boobsImplant, 0, 10000); V.activeSlave.lipsImplant = 60; - V.activeSlave.lips = Math.clamp(V.activeSlave.lipsImplant + V.activeSlave.buttImplant, 0, 100); + V.activeSlave.lips = Math.clamp(V.activeSlave.lipsImplant+V.activeSlave.buttImplant, 0, 100); } else { r += `Slaves are not given breast, butt, or lip implants. `; } @@ -460,7 +459,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeArcology = V.arcologies[0]; V.targetArcology = V.arcologies[market]; arcologyOpinion(); - V.opinion = Math.trunc(V.opinion / 20); + V.opinion = Math.trunc(V.opinion/20); V.opinion = Math.clamp(V.opinion, -10, 10); if (V.arcologies[market].FSSubjugationist > 20) { @@ -473,16 +472,16 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.origin = "You bought her from "; V.activeSlave.origin += V.arcologies[market].name; V.activeSlave.origin += "."; - V.activeSlave.devotion = -20 + Math.trunc(V.arcologies[market].prosperity / 10) + jsRandom(0, 10); - V.activeSlave.trust = -20 + Math.trunc(V.arcologies[market].prosperity / 10) + jsRandom(0, 10); - V.activeSlave.health = -50 + Math.trunc(V.arcologies[market].prosperity / 25) + jsRandom(0, 5); + V.activeSlave.devotion = -20 + Math.trunc(V.arcologies[market].prosperity/10) + jsRandom(0, 10); + V.activeSlave.trust = -20 + Math.trunc(V.arcologies[market].prosperity/10) + jsRandom(0, 10); + V.activeSlave.health = -50 + Math.trunc(V.arcologies[market].prosperity/25) + jsRandom(0, 5); if (V.activeSlave.vagina > 0) { - V.activeSlave.skill.vaginal += Math.clamp(V.arcologies[market].prosperity / 2, 15, 100); + V.activeSlave.skill.vaginal += Math.clamp(V.arcologies[market].prosperity/2, 15, 100); } if (V.activeSlave.anus > 0) { - V.activeSlave.skill.anal += Math.clamp(V.arcologies[market].prosperity / 2, 15, 100); + V.activeSlave.skill.anal += Math.clamp(V.arcologies[market].prosperity/2, 15, 100); } - V.activeSlave.skill.oral += Math.clamp(V.arcologies[market].prosperity / 2, 15, 100); + V.activeSlave.skill.oral += Math.clamp(V.arcologies[market].prosperity/2, 15, 100); V.activeSlave.attrKnown = 1; V.activeSlave.fetishKnown = 1; if (V.activeSlave.accent >= 3) { @@ -549,7 +548,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { r += `They all show signs of intensive hormone therapy. `; V.activeSlave.chem += jsRandom(10, 100); if (V.activeSlave.dick > 0) { - V.activeSlave.boobs += 100 * jsRandom(0, 4); + V.activeSlave.boobs += 100*jsRandom(0, 4); V.activeSlave.butt += jsRandom(0, 2); if (V.activeSlave.hips < 2) { V.activeSlave.hips += jsRandom(0, 1); @@ -583,7 +582,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } } } else { - V.activeSlave.boobs -= 100 * jsRandom(0, 2); + V.activeSlave.boobs -= 100*jsRandom(0, 2); V.activeSlave.butt -= jsRandom(0, 1); if (V.activeSlave.hips > -2) { V.activeSlave.hips -= jsRandom(0, 1); @@ -640,7 +639,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } if (V.arcologies[market].FSRepopulationFocus === "unset" && V.arcologies[market].FSBodyPurist === "unset") { if (isFertile(V.activeSlave) && jsRandom(1, 10) === 9) { - V.activeSlave.abortionTat = jsRandom(1, (Math.min(V.activeSlave.physicalAge - V.fertilityAge, V.activeSlave.physicalAge - V.minimumSlaveAge)) * 2); + V.activeSlave.abortionTat = jsRandom(1, (Math.min(V.activeSlave.physicalAge-V.fertilityAge, V.activeSlave.physicalAge-V.minimumSlaveAge))*2); } } } @@ -651,7 +650,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } else if (V.arcologies[market].FSTransformationFetishist > 80) { r += `They vary in terms of what size their implants are, not whether they have them. `; V.activeSlave.chem += jsRandom(10, 100); - V.activeSlave.boobsImplant = 200 * jsRandom(2, 20); + V.activeSlave.boobsImplant = 200*jsRandom(2, 20); V.activeSlave.boobs += V.activeSlave.boobsImplant; V.activeSlave.buttImplant = jsRandom(2, 5); V.activeSlave.butt += V.activeSlave.buttImplant; @@ -674,7 +673,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.physicalAge = V.activeSlave.actualAge; V.activeSlave.ovaryAge = V.activeSlave.actualAge; if (V.activeSlave.boobs > 400) { - V.activeSlave.boobs -= 100 * jsRandom(0, 2); + V.activeSlave.boobs -= 100*jsRandom(0, 2); } if (V.activeSlave.butt > 3) { V.activeSlave.butt -= jsRandom(0, 2); @@ -701,7 +700,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.physicalAge = V.activeSlave.actualAge; V.activeSlave.ovaryAge = V.activeSlave.actualAge; if (V.activeSlave.boobs < 400) { - V.activeSlave.boobs += 100 * jsRandom(0, 2); + V.activeSlave.boobs += 100*jsRandom(0, 2); } if (V.activeSlave.butt < 3) { V.activeSlave.butt += jsRandom(0, 2); @@ -712,7 +711,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.arcologies[market].FSSlimnessEnthusiast > 20) { r += `They're never overweight, and are often quite lithe. `; if (V.activeSlave.boobs > 400) { - V.activeSlave.boobs -= 100 * jsRandom(0, 2); + V.activeSlave.boobs -= 100*jsRandom(0, 2); } if (V.activeSlave.butt > 3) { V.activeSlave.butt -= jsRandom(0, 2); @@ -730,7 +729,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { r += `Their butts are usually imposing, but their tits are what's often most impressive. `; V.activeSlave.chem += jsRandom(10, 100); if (V.activeSlave.boobs < 5000) { - V.activeSlave.boobs += 100 * jsRandom(5, 50); + V.activeSlave.boobs += 100*jsRandom(5, 50); } if (V.activeSlave.butt < 6) { V.activeSlave.butt += jsRandom(2, 4); @@ -782,29 +781,21 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (jsRandom(1, 100) <= 5 && V.activeSlave.fetish !== "mindbroken") { switch (V.activeSlave.fetish) { case "submissive": - V.activeSlave.sexualFlaw = "neglectful"; - break; + V.activeSlave.sexualFlaw = "neglectful"; break; case "cumslut": - V.activeSlave.sexualFlaw = "cum addict"; - break; + V.activeSlave.sexualFlaw = "cum addict"; break; case "humiliation": - V.activeSlave.sexualFlaw = "attention whore"; - break; + V.activeSlave.sexualFlaw = "attention whore"; break; case "buttslut": - V.activeSlave.sexualFlaw = "anal addict"; - break; + V.activeSlave.sexualFlaw = "anal addict"; break; case "boobs": - V.activeSlave.sexualFlaw = "breast growth"; - break; + V.activeSlave.sexualFlaw = "breast growth"; break; case "pregnancy": - V.activeSlave.sexualFlaw = "breeder"; - break; + V.activeSlave.sexualFlaw = "breeder"; break; case "dom": - V.activeSlave.sexualFlaw = "abusive"; - break; + V.activeSlave.sexualFlaw = "abusive"; break; case "sadist": - V.activeSlave.sexualFlaw = "malicious"; - break; + V.activeSlave.sexualFlaw = "malicious"; break; case "masochist": V.activeSlave.sexualFlaw = "self hating"; } @@ -815,7 +806,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { r += `Lactation is nearly universal among them, sometimes in ludicrous quantities. They tend to have huge udders, as well. `; V.activeSlave.chem += jsRandom(10, 100); if (V.activeSlave.boobs < 5000) { - V.activeSlave.boobs += 100 * jsRandom(5, 50); + V.activeSlave.boobs += 100*jsRandom(5, 50); } if (V.activeSlave.lactation === 0) { V.activeSlave.lactation = jsEither([0, 1, 1, 1, 1, 2]); @@ -836,7 +827,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.activeSlave.balls < 20) { V.activeSlave.balls += jsRandom(5, 20); } - V.activeSlave.scrotum = V.activeSlave.balls - 5; + V.activeSlave.scrotum = V.activeSlave.balls-5; V.activeSlave.prostate = jsEither([1, 1, 1, 2, 2, 3]); if (V.activeSlave.muscles < 30) { V.activeSlave.muscles += jsRandom(0, 20); @@ -1025,35 +1016,25 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.skill.entertainment = jsRandom(50, 100); switch (V.activeSlave.career) { case "a lawyer": - V.activeSlave.slaveName = "WCPU-HG"; - break; + V.activeSlave.slaveName = "WCPU-HG"; break; case "a college scout": - V.activeSlave.slaveName = "WCPU-RC"; - break; + V.activeSlave.slaveName = "WCPU-RC"; break; case "a business owner": - V.activeSlave.slaveName = "WCPU-MD"; - break; + V.activeSlave.slaveName = "WCPU-MD"; break; case "a house DJ": - V.activeSlave.slaveName = "WCPU-DJ"; - break; + V.activeSlave.slaveName = "WCPU-DJ"; break; case "a soldier": - V.activeSlave.slaveName = "WCPU-BG"; - break; + V.activeSlave.slaveName = "WCPU-BG"; break; case "a prison guard": - V.activeSlave.slaveName = "WCPU-WD"; - break; + V.activeSlave.slaveName = "WCPU-WD"; break; case "a doctor": - V.activeSlave.slaveName = "WCPU-NS"; - break; + V.activeSlave.slaveName = "WCPU-NS"; break; case "a counselor": - V.activeSlave.slaveName = "WCPU-AT"; - break; + V.activeSlave.slaveName = "WCPU-AT"; break; case "a dairy worker": - V.activeSlave.slaveName = "WCPU-MK"; - break; + V.activeSlave.slaveName = "WCPU-MK"; break; case "a secretary": - V.activeSlave.slaveName = "WCPU-ST"; - break; + V.activeSlave.slaveName = "WCPU-ST"; break; case "a teacher": V.activeSlave.slaveName = "WCPU-TE"; } @@ -1151,7 +1132,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.behavioralFlaw = jsEither(["anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "odd"]); V.activeSlave.sexualFlaw = jsEither(["apathetic", "crude", "hates anal", "hates oral", "hates penetration", "idealistic", "judgemental", "repressed", "shamefast"]); if (jsRandom(1, 2) === 1) { - let slaveGen = jsRandom(2, 8) * 200; + let slaveGen = jsRandom(2, 8)*200; V.activeSlave.boobs += slaveGen; V.activeSlave.boobsImplant += slaveGen; slaveGen = jsRandom(1, 3); @@ -1162,8 +1143,8 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.lipsImplant += slaveGen; V.activeSlave.waist = Math.trunc(V.activeSlave.waist, -100, 15); if (V.activeSlave.face < 40) { - V.activeSlave.faceImplant = 20 * jsRandom(0, 1); - V.activeSlave.face = Math.clamp(V.activeSlave.face + V.activeSlave.faceImplant, -100, 100); + V.activeSlave.faceImplant = 20*jsRandom(0, 1); + V.activeSlave.face = Math.clamp(V.activeSlave.face+V.activeSlave.faceImplant, -100, 100); } if (V.activeSlave.physicalAge >= 30) { V.activeSlave.ageImplant += jsRandom(0, 1); @@ -1342,7 +1323,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.lactation = 2; V.activeSlave.lactationDuration = 2; } else { - V.activeSlave.boobs = 200 * jsRandom(4, 20); + V.activeSlave.boobs = 200*jsRandom(4, 20); } V.activeSlave.nipples = jsEither(["huge", "inverted"]); V.activeSlave.areolae = jsEither([0, 1, 2, 3, 4]); @@ -1391,17 +1372,17 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.health = 100; V.activeSlave.heightImplant = 1; V.activeSlave.height += 10; - V.activeSlave.buttImplant = (4 - V.activeSlave.butt); + V.activeSlave.buttImplant = (4-V.activeSlave.butt); V.activeSlave.butt += V.activeSlave.buttImplant; - V.activeSlave.boobsImplant = (2000 - V.activeSlave.boobs); + V.activeSlave.boobsImplant = (2000-V.activeSlave.boobs); V.activeSlave.boobs += V.activeSlave.boobsImplant; V.activeSlave.nipples = "tiny"; V.activeSlave.areolae = 0; V.activeSlave.clit = 0; - V.activeSlave.lipsImplant = (20 - V.activeSlave.lips); + V.activeSlave.lipsImplant = (20-V.activeSlave.lips); V.activeSlave.lips += V.activeSlave.lipsImplant; V.activeSlave.faceImplant = 40; - V.activeSlave.face = Math.clamp(V.activeSlave.face + V.activeSlave.faceImplant, -100, 100); + V.activeSlave.face = Math.clamp(V.activeSlave.face+V.activeSlave.faceImplant, -100, 100); V.activeSlave.faceShape = "normal"; V.activeSlave.anus = 0; V.activeSlave.vagina = 0; @@ -1573,7 +1554,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.slaveName = setup.cowSlaveNames.random(); V.activeSlave.slaveSurname = 0; V.activeSlave.butt = jsEither([2, 2, 3, 3, 3, 4, 4]); - V.activeSlave.boobs = ((V.activeSlave.physicalAge * 100) * 2) + jsEither([-100, -100, 0, 0, 100, 100, 200, 200, 300, 500]); + V.activeSlave.boobs = ((V.activeSlave.physicalAge*100)*2)+jsEither([-100, -100, 0, 0, 100, 100, 200, 200, 300, 500]); V.activeSlave.lactation = 0; V.activeSlave.lactationAdaptation = 0; V.activeSlave.lactationDuration = 0; @@ -1604,7 +1585,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.collar = "leather with cowbell"; V.activeSlave.custom.tattoo = "$He has the logo of the Cattle Ranch branded on $his thigh."; } else if (V.TCR.schoolUpgrade === 1 && jsRandom(1, 100) <= 20) { - V.activeSlaveOneTimeMinAge = V.potencyAge + 1; + V.activeSlaveOneTimeMinAge = V.potencyAge+1; V.activeSlaveOneTimeMaxAge = 24; V.one_time_age_overrides_pedo_mode = 1; V.oneTimeDisableDisability = 1; @@ -1711,7 +1692,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlaveOneTimeMaxAge = 29; V.one_time_age_overrides_pedo_mode = 1; V.oneTimeDisableDisability = 1; - if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek + 15 <= V.week) { + if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek+15 <= V.week) { V.activeSlave = GenerateNewSlave(); } else { V.activeSlave = GenerateNewSlave("XY"); @@ -1725,7 +1706,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = -60; V.activeSlave.hips = 0; V.activeSlave.face = jsEither([35, 35, 35, 75, 100]); - if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek + 15 <= V.week) { + if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek+15 <= V.week) { if (V.activeSlave.genes === "XY") { V.activeSlave.balls = 6; V.activeSlave.scrotum = V.activeSlave.balls; @@ -1757,7 +1738,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = -30; V.activeSlave.hips = 1; V.activeSlave.face = jsEither([35, 35, 35, 75, 100]); - if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek + 15 <= V.week) { + if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek+15 <= V.week) { if (V.activeSlave.genes === "XY") { V.activeSlave.balls = 7; V.activeSlave.scrotum = V.activeSlave.balls; @@ -1785,7 +1766,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = 0; V.activeSlave.hips = 2; V.activeSlave.face = jsEither([35, 35, 75, 75, 100]); - if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek + 15 <= V.week) { + if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek+15 <= V.week) { if (V.activeSlave.genes === "XY") { V.activeSlave.balls = 8; V.activeSlave.scrotum = V.activeSlave.balls; @@ -1849,7 +1830,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = 60; V.activeSlave.hips = 2; V.activeSlave.face = jsEither([35, 75, 100, 100, 100]); - if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek + 15 <= V.week) { + if (V.TFS.schoolUpgrade === 3 && V.TFS.compromiseWeek+15 <= V.week) { if (V.activeSlave.genes === "XY") { V.activeSlave.balls = 10; V.activeSlave.scrotum = V.activeSlave.balls; @@ -1912,7 +1893,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.TFS.schoolUpgrade === 2) { V.activeSlave.energy = 100; } else { - V.activeSlave.energy = V.activeSlave.physicalAge + jsRandom(20, 30); + V.activeSlave.energy = V.activeSlave.physicalAge+jsRandom(20, 30); } V.activeSlave.devotion = jsRandom(30, 40); V.activeSlave.trust = jsRandom(60, 75); @@ -2075,7 +2056,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.retirementAge > 56) { V.activeSlaveOneTimeMaxAge = 55; } else { - V.activeSlaveOneTimeMaxAge = V.retirementAge - 2; + V.activeSlaveOneTimeMaxAge = V.retirementAge-2; } } V.oneTimeDisableDisability = 1; @@ -2096,8 +2077,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.health = jsRandom(-80, 20); V.activeSlave.anus = 4; V.activeSlave.chem = 10 * jsRandom(1, 3); - V.activeSlave.addict = 100; - break; + V.activeSlave.addict = 100; break; case "arms smuggler": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for smuggling arms to forces antagonistic to the Free Cities."; V.prisonCrime = "is incarcerated for being an arms dealer."; @@ -2110,8 +2090,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.health = jsRandom(-20, 20); V.activeSlave.weight = jsRandom(-30, 10); V.activeSlave.waist = jsRandom(-10, 50); - V.activeSlave.muscles = jsRandom(10, 40); - break; + V.activeSlave.muscles = jsRandom(10, 40); break; case "drug smuggler": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for smuggling drugs into the Free City."; V.prisonCrime = "is incarcerated for smuggling drugs."; @@ -2121,8 +2100,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.hStyle = "buzzcut"; V.activeSlave.hLength = 0; V.activeSlave.intelligence = jsRandom(-60, 60); - V.activeSlave.health = jsRandom(-20, 20); - break; + V.activeSlave.health = jsRandom(-20, 20); break; case "smuggler": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for smuggling goods into the Free City."; V.prisonCrime = "is incarcerated for smuggling goods."; @@ -2133,8 +2111,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.hLength = 0; V.activeSlave.intelligence = jsRandom(0, 60); V.activeSlave.health = jsRandom(-20, 40); - V.activeSlave.muscles = jsRandom(10, 40); - break; + V.activeSlave.muscles = jsRandom(10, 40); break; case "fence": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for dealing in stolen goods."; V.prisonCrime = "is incarcerated for buying and selling stolen goods."; @@ -2144,8 +2121,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.hStyle = "buzzcut"; V.activeSlave.hLength = 0; V.activeSlave.intelligence = jsRandom(-60, 30); - V.activeSlave.health = jsRandom(-20, 60); - break; + V.activeSlave.health = jsRandom(-20, 60); break; case "gang murderer": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for gang related murder."; V.prisonCrime = "is incarcerated for gang related murders."; @@ -2160,8 +2136,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.muscles = jsRandom(20, 80); V.activeSlave.chem = 10 * jsRandom(1, 3); V.activeSlave.custom.tattoo = "The prominent emblem of a local gang spans the length of his shoulders."; - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "gang assaulter": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for gang related extortion of local businesses."; V.prisonCrime = "is incarcerated for gang related activities."; @@ -2178,8 +2153,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.waist = jsRandom(10, 50); V.activeSlave.chem = 10 * jsRandom(1, 3); V.activeSlave.custom.tattoo = "The prominent emblem of a local gang spans the length of his shoulders."; - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "gang bruiser": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for a gang related beating of a local businessman."; V.prisonCrime = "is incarcerated for gang related activities."; @@ -2241,8 +2215,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-30, 10); V.activeSlave.waist = jsRandom(-10, 50); V.activeSlave.muscles = jsRandom(20, 40); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "assassin": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for a high profile assassination."; V.prisonCrime = "is incarcerated for an assassination."; @@ -2256,8 +2229,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-30, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(20, 40); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "murder": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for repeat murder."; V.prisonCrime = "is incarcerated for murder."; @@ -2269,8 +2241,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = jsRandom(-40, 60); V.activeSlave.health = jsRandom(-20, 20); V.activeSlave.muscles = jsRandom(20, 80); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "manslaughter": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for manslaughter."; V.prisonCrime = "is incarcerated for manslaughter."; @@ -2280,8 +2251,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.hStyle = "buzzcut"; V.activeSlave.hLength = 0; V.activeSlave.intelligence = jsRandom(-40, 60); - V.activeSlave.health = jsRandom(-40, 0); - break; + V.activeSlave.health = jsRandom(-40, 0); break; case "attempted murder": V.activeSlave.origin = "You purchased her life at a prison sale. She was locked away for attempted murder of a prominent individual."; V.prisonCrime = "is incarcerated for an attempted murder."; @@ -2304,7 +2274,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.retirementAge > 56) { V.activeSlaveOneTimeMaxAge = 55; } else { - V.activeSlaveOneTimeMaxAge = V.retirementAge - 2; + V.activeSlaveOneTimeMaxAge = V.retirementAge-2; } } V.oneTimeDisableDisability = 1; @@ -2336,8 +2306,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-30, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(20, 40); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "terrorist": V.activeSlave.origin = "You purchased her life at a prison sale. She was a terrorist captured when her attempt to destroy a public building and the people within was foiled."; V.prisonCrime = "is incarcerated for terrorism."; @@ -2349,8 +2318,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = jsRandom(-100, 0); V.activeSlave.health = jsRandom(-60, 20); V.activeSlave.weight = jsRandom(-100, 10); - V.activeSlave.waist = jsRandom(-10, 10); - break; + V.activeSlave.waist = jsRandom(-10, 10); break; case "war criminal": V.activeSlave.origin = "You purchased her life at a prison sale. She was a soldier imprisoned for committing unspeakable atrocities, even by the standards of an apocalyptic slave trading society."; V.prisonCrime = "is incarcerated for a series of war crimes."; @@ -2366,8 +2334,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(20, 60); V.activeSlave.skill.combat = 1; - V.activeSlave.behavioralFlaw = "arrogant"; - break; + V.activeSlave.behavioralFlaw = "arrogant"; break; case "deserter": V.activeSlave.origin = "You purchased her life at a prison sale. She was a soldier that abandoned her post."; V.prisonCrime = "is incarcerated for going A.W.O.L."; @@ -2380,8 +2347,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.health = jsRandom(-40, 60); V.activeSlave.weight = jsRandom(-50, 10); V.activeSlave.waist = jsRandom(-10, 10); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "officer": V.activeSlave.origin = "You purchased her life at a prison sale. She was an officer that over-extended her forces and was overwhelmed."; V.prisonCrime = "is a captured enemy officer."; @@ -2396,8 +2362,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-10, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(20, 40); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "specOps": V.activeSlave.origin = "You purchased her life at a prison sale. She was a special operations officer that acted on bad intel and ended up captured."; V.prisonCrime = "is a captured enemy special operations officer."; @@ -2412,8 +2377,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-10, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(30, 60); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "sniper": V.activeSlave.origin = "You purchased her life at a prison sale. She was an enemy sniper that was captured after her company lost to your military might."; V.prisonCrime = "is a captured enemy sniper."; @@ -2447,8 +2411,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-10, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(50, 60); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "soldier": V.activeSlave.origin = "You purchased her life at a prison sale. She was an enemy soldier that was captured after her company lost to your military might."; V.prisonCrime = "is a captured enemy soldier."; @@ -2463,8 +2426,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.weight = jsRandom(-10, 10); V.activeSlave.waist = jsRandom(-10, 10); V.activeSlave.muscles = jsRandom(30, 60); - V.activeSlave.skill.combat = 1; - break; + V.activeSlave.skill.combat = 1; break; case "private": V.activeSlave.origin = "You purchased her life at a prison sale. She was an enemy grunt that was captured after her company lost to your military might."; V.prisonCrime = "is a captured enemy private."; @@ -2492,7 +2454,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.retirementAge > 66) { V.activeSlaveOneTimeMaxAge = 65; } else { - V.activeSlaveOneTimeMaxAge = V.retirementAge - 2; + V.activeSlaveOneTimeMaxAge = V.retirementAge-2; } } V.oneTimeDisableDisability = 1; @@ -2509,8 +2471,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.trust = jsRandom(-20, 20); V.activeSlave.intelligence = jsRandom(0, 99); V.activeSlave.intelligenceImplant = 15; - V.activeSlave.health = jsRandom(20, 60); - break; + V.activeSlave.health = jsRandom(20, 60); break; case "bribery": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} arrested and sentenced for bribing government officials. `; @@ -2520,8 +2481,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.intelligence = jsRandom(0, 99); V.activeSlave.intelligenceImplant = 15; V.activeSlave.health = jsRandom(20, 60); - V.activeSlave.behavioralFlaw = "arrogant"; - break; + V.activeSlave.behavioralFlaw = "arrogant"; break; case "blackmail": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} convicted of blackmail against a sorority of university students, forcing them to do sexual favors. `; @@ -2533,8 +2493,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.health = jsRandom(20, 60); V.activeSlave.behavioralFlaw = "arrogant"; V.activeSlave.fetish = "sadist"; - V.activeSlave.fetishStrength = 100; - break; + V.activeSlave.fetishStrength = 100; break; case "embezzlement": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} involved in a scandal and convicted of embezzlement. `; @@ -2543,8 +2502,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.trust = jsRandom(-10, 10); V.activeSlave.intelligence = jsRandom(0, 99); V.activeSlave.intelligenceImplant = 15; - V.activeSlave.health = jsRandom(20, 60); - break; + V.activeSlave.health = jsRandom(20, 60); break; case "fraud": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} convicted of fraud. `; @@ -2553,8 +2511,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.trust = jsRandom(20, 50); V.activeSlave.intelligence = jsRandom(0, 99); V.activeSlave.intelligenceImplant = 15; - V.activeSlave.health = jsRandom(20, 60); - break; + V.activeSlave.health = jsRandom(20, 60); break; case "tax evasion": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} convicted of tax evasion. `; @@ -2563,8 +2520,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.trust = jsRandom(20, 50); V.activeSlave.intelligence = jsRandom(0, 99); V.activeSlave.intelligenceImplant = 15; - V.activeSlave.health = jsRandom(20, 60); - break; + V.activeSlave.health = jsRandom(20, 60); break; case "malpractice": V.activeSlave.career = jsEither(["a doctor", "a nurse", "a physician"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} that took advantage of her position to molest and modify her patients. `; @@ -2573,8 +2529,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.trust = jsRandom(-100, -50); V.activeSlave.intelligence = jsRandom(55, 99); V.activeSlave.intelligenceImplant = 30; - V.activeSlave.health = jsRandom(-40, 20); - break; + V.activeSlave.health = jsRandom(-40, 20); break; case "abuse of power": V.activeSlave.career = jsEither(["a judge", "a lawyer", "a police officer"]); V.activeSlave.origin = `You purchased her life at a prison sale. She was ${V.activeSlave.career} that took advantage of her position for her own benefit. `; @@ -2597,7 +2552,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.retirementAge > 56) { V.activeSlaveOneTimeMaxAge = 55; } else { - V.activeSlaveOneTimeMaxAge = V.retirementAge - 2; + V.activeSlaveOneTimeMaxAge = V.retirementAge-2; } } V.oneTimeDisableDisability = 1; -- GitLab