diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 31c41983d239dc69c949c7f53d00c0d728a055c4..019a5b053e223417d3da01df8ed40c8dc5b51241 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -287,7 +287,7 @@ App.SlaveAssignment.clothes = (function() { r.push(`${He} pretends to be embarrassed by ${his} clearly exposed breasts but <span class="hotpink">secretly gets off on it.</span>`); slave.devotion += 1; } - } else if (slave.fetish === "humiliation" && isThisHumiliating(slave.clothes)) { + } else if (slave.fetish === "humiliation" && isHumiliating(slave.clothes)) { if (slave.fetishKnown === 0) { r.push(`${He} pretends to be embarrassed by ${his} extremely revealing clothing but seems to get off on it. <span class="lightcoral">${He}'s into humiliation.</span>`); slave.fetishKnown = 1; @@ -324,7 +324,7 @@ App.SlaveAssignment.clothes = (function() { // humiliating clothing effects if (slave.fetishKnown === 0 || slave.fetish === "none") { - if (isThisHumiliating(slave.clothes)) { + if (isHumiliating(slave.clothes)) { if (fetishChangeChance(slave) > jsRandom(0, 100)) { r.push(`Surprisingly, ${he} takes to ${his} extremely revealing clothing, and gets an obvious thrill from it. <span class="lightcoral">${He}'s become a humiliation fetishist!</span>`); slave.fetish = "humiliation"; diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js index 682e044bed6f12d973b78933234dcdff00b189fe..0fcb96a81017fca80c4662254497ad40db04989d 100644 --- a/src/interaction/siWardrobe.js +++ b/src/interaction/siWardrobe.js @@ -955,10 +955,10 @@ App.UI.SlaveInteract.wardrobe = function(slave) { /* assuming nice clothes, could actually add some sort of check to make sure. */ /* which clothes have these is decided in miscData.js */ let clothTooltip = Cloth + ""; - if (isThisHumiliating(cloth)) { + if (isHumiliating(cloth)) { clothTooltip += ", it's humiliating"; } - if (isThisSlutty(cloth)) { + if (isSlutty(cloth)) { clothTooltip += ", it's slutty"; } else { clothTooltip += ", it's modest"; diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js index 5da8ff226b4775bd951a1af88a1144933e2d35ba..a3fda2b849126b98a806cf10e94e7a6017ce6654 100644 --- a/src/js/eventSelectionJS.js +++ b/src/js/eventSelectionJS.js @@ -618,7 +618,7 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.trust > 20) { if (eventSlave.rules.speech !== "restrictive") { if (eventSlave.choosesOwnClothes !== 1) { - if (!isThisSlutty(eventSlave.clothes)) { + if (!isSlutty(eventSlave.clothes)) { V.RESSevent.push("modest clothes"); } } diff --git a/src/js/statsChecker/statsChecker.js b/src/js/statsChecker/statsChecker.js index 513a8f869f9b3856831a64e6565d2b5d496608a7..696d8161f66d2be00dc6be3868b49839ff97a8b9 100644 --- a/src/js/statsChecker/statsChecker.js +++ b/src/js/statsChecker/statsChecker.js @@ -472,7 +472,7 @@ globalThis.bimboScore = function(slave) { if (slave.skin === "sun tanned" || slave.skin === "spray tanned") { degree++; } - if (isThisSlutty(slave.clothes)) { + if (isSlutty(slave.clothes)) { degree++; } diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js index f1c7e1ed04f6b8da64dac7ed9d23267d6db564c9..2ba7543b93f03045332e48b3670b5c48677a46a3 100644 --- a/src/js/utilsFC.js +++ b/src/js/utilsFC.js @@ -3085,14 +3085,12 @@ App.Utils.alphabetizeIterable = function(iterable) { return clonedArray.sort(compare); }; -globalThis.isThisSlutty = function(clothing) { - const nice = App.Data.clothes.nice.find(c => c.value === clothing); - const harsh = App.Data.clothes.nice.find(c => c.value === clothing); - return (_.get(nice, "slutty") || _.get(harsh, "slutty")); +globalThis.isSlutty = function(clothing) { + const clothingArray = App.Data.clothes.nice.concat(App.Data.clothes.harsh); + return clothingArray.find(c => c.value === clothing).slutty; }; -globalThis.isThisHumiliating = function(clothing) { - const nice = App.Data.clothes.nice.find(c => c.value === clothing); - const harsh = App.Data.clothes.nice.find(c => c.value === clothing); - return (_.get(nice, "humiliating") || _.get(harsh, "humiliating")); -}; \ No newline at end of file +globalThis.isHumiliating = function(clothing) { + const clothingArray = App.Data.clothes.nice.concat(App.Data.clothes.harsh); + return clothingArray.find(c => c.value === clothing).humiliating; +};