From c18895a630a5ef6de87793fe1d5ce1caa2a31654 Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Thu, 2 Mar 2023 04:26:03 +0000 Subject: [PATCH] cleanupBatch --- src/descriptions/arcologyDescription.js | 2 +- src/events/RE/reNickname.js | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/descriptions/arcologyDescription.js b/src/descriptions/arcologyDescription.js index 210a76153e5..79a1a82591a 100644 --- a/src/descriptions/arcologyDescription.js +++ b/src/descriptions/arcologyDescription.js @@ -213,7 +213,7 @@ App.Desc.playerArcology = function(lastElement) { } else { buffer.push(`The main sculpture holds a little marble infant in its arms,`); } - buffer.push(`declaring the arcology's dedication to repopulating the emerging world all the way up to the highest member.`); + buffer.push(`declaring the arcology's dedication to repopulating the emerging world all the way up to the highest member.`); } } else { buffer.push(`The slaves are heavily pregnant.`); diff --git a/src/events/RE/reNickname.js b/src/events/RE/reNickname.js index e87c92ad578..f4df5a6a071 100644 --- a/src/events/RE/reNickname.js +++ b/src/events/RE/reNickname.js @@ -130,6 +130,7 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { * @param {App.Entity.SlaveState} slave */ getQualifiedNicknames(slave) { + const implanted = (slave.boobsImplant / slave.boobs) >= 0.60 || (slave.buttImplant / slave.butt) > 0.60; /** @type {Map<string, {nicknameArray: Array<string>, situationDesc: string, applyDesc: string, notApplyDesc: string}>} */ const nickMap = new Map([]); const { @@ -1076,7 +1077,7 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { notApplyDesc: `realizes that ${he} isn't special just because ${he}'s been fucked so much, and understands that ${he}'ll have to do ${his} best to fuck like a fresh teenager no matter how loose ${he} gets.`, }); } - if ((slave.boobsImplant / slave.boobs) >= 0.6 || (slave.buttImplant / slave.butt) > 0.6) { + if (implanted) { nickMap.set("implants", { nicknameArray: ["Balloons", "Blown Up", "Blowup Doll", "Bolted-On", "Enhanced", "Expanded", "Fake", "Implanted", "Implants", "Plastic", "Plastique", "Silicone"], situationDesc: `is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: ${He}'s a plastic slut, and the other slaves never tire of letting ${him} know it.`, @@ -1087,7 +1088,7 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { if (bimboScore(slave) >= 6) { nickMap.set("bimbo", { nicknameArray: ["Airhead", "Barbie", "Bimbette", "Bimbo", "Bimboesque", "Bimbofied", "Blown Up", "Blowup Doll", "Brain Dead", "Broad", "Doxy", "Fake", "Floozie", "Fuck Toy", "Fuckmeat", "Plastic", "Plastique", "Sex Doll", "Silicone", "Tootsie"], - situationDesc: `is full of implants, and stupid beyond stupid. It's obvious ${he}'s fake, and ${his} idiocy only confirms it: ${He}'s a bimbo slut, and the other slaves never tire of mocking ${him} for it, not caring that ${he} doesn't notice.`, + situationDesc: `is ${implanted ? `full of implants, and ` : ``}stupid beyond stupid. ${implanted ? `It's obvious ${he}'s fake, and ${his} idiocy only confirms it: ${He}'s a bimbo slut, and the` : `The`} other slaves never tire of mocking ${him} for it, not caring that ${he} doesn't notice.`, applyDesc: `doesn't notice the mockery, only that ${he} now has a cute little nickname.`, notApplyDesc: `would be thankful for this protection from the other slaves' mockery if ${he} saw it as such, or was smart enough to notice it.`, }); -- GitLab