From 7196c07e4b2ba07cea0f1dce868de06aeed86c28 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 20 Dec 2020 20:05:26 -0500 Subject: [PATCH] defiance tweaks --- src/endWeek/saClothes.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index a797a014f5e..914f95a5d11 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -274,9 +274,17 @@ App.SlaveAssignment.clothes = (function() { break; default: if (slave.devotion <= 20) { - r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing, <span class="mediumaquamarine">building ${his} confidence.</span>`); + if (App.Data.clothes.get(slave.clothes).exposure === 0) { + r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the modest clothes ${he}'s wearing; their decency <span class="mediumaquamarine">rapidly building ${his} confidence.</span>`); + slave.trust += 7; + } else if (App.Data.clothes.get(slave.clothes).exposure === 1) { + r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing; their relative decency <span class="mediumaquamarine">building ${his} confidence.</span>`); + slave.trust += 5; + } else if (App.Data.clothes.get(slave.clothes).exposure <= 3) { + r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing, <span class="mediumaquamarine">building ${his} confidence.</span>`); + slave.trust += 3; + } slave.devotion -= 5; - slave.trust += 3; } else if (slave.fetish === "boobs" && slave.clothes === "a monokini") { if (slave.fetishKnown === 0) { r.push(`${He} pretends to be embarrassed by how ${his} monokini draws attention to ${his} breasts but <span class="hotpink">seems to get off on it.</span>`); -- GitLab