From cf9b81217d120a0fab90119a70952182b77a89e7 Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Wed, 22 Jun 2022 00:34:08 -0700 Subject: [PATCH] Corsets cause deflation --- src/endWeek/saClothes.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index a68558cd20e..48331e8692e 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -664,6 +664,10 @@ App.SlaveAssignment.clothes = function saClothes(slave) { */ function bellyAccessories(slave) { if (slave.bellyAccessory === "an extreme corset") { + if (slave.inflation > 0) { + r.push(`The pressure of ${his} corsetage <span class="change negative">renders ${him} unable to keep filling ${his} guts with ${slave.inflationType}.</span>`); + deflate(slave); + } if (slave.belly >= 100000) { r.push(`${His} straining corset finally gives in to ${his} giant stomach and bursts, freeing ${his} belly.`); slave.bellyAccessory = "none"; @@ -743,6 +747,10 @@ App.SlaveAssignment.clothes = function saClothes(slave) { } } } else if (slave.bellyAccessory === "a corset") { + if (slave.inflation > 0) { + r.push(`The pressure of ${his} corsetage <span class="change negative">renders ${him} unable to keep filling ${his} guts with ${slave.inflationType}.</span>`); + deflate(slave); + } if (slave.bellyPreg >= 1500) { r.push(`${His} corset lets ${his} growing belly protrude comfortably, preventing any danger to ${his} pregnancy but preventing any effect on ${his} waist.`); } else if (slave.belly >= 1500) { -- GitLab