From ea8386675ce5a2c99fd18399d7336d53f2d2eaf7 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Mon, 10 Jul 2023 19:51:10 -0400 Subject: [PATCH] Add unique effect text for body oil instead of saying things about the slave's "nice clothing". Also, shamefast slaves will no longer appreciate being forced to wear only body oil. --- src/endWeek/saClothes.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 5269ecd6507..dd3f6677b95 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -315,6 +315,19 @@ App.SlaveAssignment.clothes = function saClothes(slave) { slave.trust += 1; } break; + case "body oil": + if (slave.sexualFlaw === "shamefast") { + r.push(`${He} is <span class="mediumorchid">mortified</span> that ${he} has nothing but oil to cover up ${his} body, and is incapable of taking pleasure in getting all oiled up.`); + slave.devotion -= 3; + } else if (slave.devotion < -20) { + r.push(`${He} is <span class="mediumorchid">inappropriately pleased</span> by the sensual process of oiling up ${his} body.`); + slave.devotion -= 3; + } else { + r.push(`${His} <span class="mediumaquamarine">confidence</span> and <span class="hotpink">devotion</span> are reinforced by the sensual process of oiling up ${his} body every morning.`); + slave.devotion += 1; + slave.trust += 1; + } + break; default: if (slave.devotion <= 20) { if (App.Data.clothes.get(slave.clothes).exposure === 0) { -- GitLab