diff --git a/devNotes/clothing hair and accessory passages.txt b/devNotes/clothing hair and accessory passages.txt index 1855d58e5ae1a97b4f571ad534e95518e5a66604..b44269a74e7bd055f5f2a3c9f802f67acf0f9a01 100644 --- a/devNotes/clothing hair and accessory passages.txt +++ b/devNotes/clothing hair and accessory passages.txt @@ -120,8 +120,8 @@ SEXUAL/EROTIC Nice Lingerie Latex Catsuit Bodysuit - Skimpy Loincloth [Not in-game yet] - BDSM Pony outfit [Not in-game yet] + Skimpy Loincloth + BDSM Pony outfit FESTIVE/ENTERTAINMENT/TRADITIONAL/CULTURAL ================================= @@ -142,8 +142,9 @@ FESTIVE/ENTERTAINMENT/TRADITIONAL/CULTURAL Minidress Haltertop Dress Clubslut Netting - Hanbok [Not in-game yet] - Gothic Lolita [Not in-game yet] + Santa Dress + Hanbok + Gothic Lolita EXERCISE/ATHLETICS ================== diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index c62aa478cb9adc7322e2d2fee33e6806f5c72bb6..6342d7156ed1bfea385c7a974b1f733a4b1a8c6f 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -848,6 +848,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $clothesBoughtCultural = 0>> <<set $clothesBoughtMiddleEastern = 0>> <<set $clothesBoughtPol = 0>> +<<set $clothesBoughtCostume = 0>> <<set $clothesBoughtPantsu = 0>> <<set $clothesBoughtCareer = 0>> <<set $clothesBoughtDresses = 0>> diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js index 987e6e92040221fb91f39e1ffe8c901c6ba7ea31..db2265899c8342a82aee3df589365b1cedffb212 100644 --- a/src/js/SlaveState.js +++ b/src/js/SlaveState.js @@ -1428,6 +1428,7 @@ App.Entity.SlaveState = class SlaveState { * * "a penitent nuns habit" * * "a police uniform" * * "a red army uniform" + * * "a Santa dress" * * "a scalemail bikini" * * "a schoolgirl outfit" * * "a schutzstaffel uniform" diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js index 77b5c003f266839e3bae3e0858ddf21f99a23b1e..4f06d45d4718beb412310765b99b1bd500b888d7 100644 --- a/src/js/itemAvailability.js +++ b/src/js/itemAvailability.js @@ -49,9 +49,12 @@ window.isItemAccessible = function(string) { return (V.clothesBoughtCultural === 1); case 'a burqa': case 'a burkini': - case 'a blouse and hijab': case 'a niqab and abaya': return (V.clothesBoughtMiddleEastern === 1 || V.continent === 'the Middle East'); + case 'a hijab and blouse': + return (V.clothesBoughtMiddleEastern === 1 || V.clothesBoughtConservative === 1 || V.continent === 'the Middle East'); + case 'a Santa dress': + return (V.clothesBoughtCostume); case 'a klan robe': case 'a slutty klan robe': case 'a schutzstaffel uniform': diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index 9cc82b0159556831bd83224bcc09f3d2d4a35c5f..c8026405ac1d2cd8268c1cb35de2257226acd8e2 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -1161,13 +1161,14 @@ window.rulesAssistantOptions = (function() { ["Pony outfit (nice)", "a nice pony outfit"], ["Pony outfit (slutty)", "a slutty pony outfit"], ["Red Army uniform", "a red army uniform"], + ["Santa dress", "a Santa dress"], + ["Schutzstaffel uniform (nice)", "a schutzstaffel uniform"], + ["Schutzstaffel uniform (slutty)", "a slutty schutzstaffel uniform"], ["Striped Bra", "a striped bra"], ["Striped Panties", "striped panties"], ["Striped Underwear", "striped underwear"], ["Skimpy battledress", "battledress"], ["Skimpy loincloth", "a skimpy loincloth"], - ["Schutzstaffel uniform (nice)", "a schutzstaffel uniform"], - ["Schutzstaffel uniform (slutty)", "a slutty schutzstaffel uniform"], ]; const fsnclothes = [ ["Body oil (FS)", "body oil"], diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index 52c56232b3672a534921705beb98d1a66b056bf7..ed303e41b8837600d264825f1d73571afa0e482c 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -271,6 +271,8 @@ $He almost tears $his decorative lingerie in $his haste to avoid punishment. <<case "harem gauze">> $He's desperately torn between hurry to avoid punishment and fear $he'll tear $his flimsy gauze. + <<case "a Santa dress">> + $He tears off some of $his dress's white fur trim in $his struggle to remove it. <<case "slutty jewelry">> $He hurriedly strips fine jewelry from $his neck, wrists, and ankles. <<case "a corset">> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 5ef87321b13a1f5a309ca4d822bc11308f06e950..75ec95e016bb71ec370a602461f14e64dafe6a13 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -1843,6 +1843,9 @@ Setting missing global variables: <<if ndef $clothesBoughtPol>> <<set $clothesBoughtPol = 0>> <</if>> +<<if ndef $clothesBoughtCostume>> + <<set $clothesBoughtCostume = 0>> +<</if>> <<if ndef $clothesBoughtPantsu>> <<set $clothesBoughtPantsu = 0>> <</if>> diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw index cd1d75eb2c9d1ffffff4c13b501285b7332046c2..af9071e3678e3ce35c3f42b94781f7b75854c671 100644 --- a/src/uncategorized/peConcubineInterview.tw +++ b/src/uncategorized/peConcubineInterview.tw @@ -200,7 +200,7 @@ You receive an official communication from a popular talk show e-hosted in one o maid outfit. <<case "a slutty maid outfit">> skimpy maid outfit. - <<case "a halter top dress" "a mini dress" "a maternity dress">> + <<case "a gothic lolita dress" "a halter top dress" "a long qipao" "a maternity dress" "a mini dress" "a Santa dress">> dress. <<case "a latex catsuit">> latex catsuit. @@ -218,11 +218,9 @@ You receive an official communication from a popular talk show e-hosted in one o monokini. <<case "a cybersuit">> cybersuit. - <<case "a long qipao" "a gothic lolita dress">> - dress. <<case "battlearmor">> armor. - <<case "a dirndl">> + <<case "a skirt">> dress. <<case "a mounty outfit" "a police uniform">> uniform. diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 143d11c7164750154d7acbb6f3a7335b7c447e52..d6e05002bd8a8ffaee632aa01ff73cf5f47f8179 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -809,6 +809,9 @@ <<if isItemAccessible("a red army uniform")>> | <<link "Red Army uniform">><<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> + <<if isItemAccessible("a Santa dress")>> + | <<link "Santa dress">><<set $activeSlave.clothes = "a Santa dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Scalemail bikini">><<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Schoolgirl">><<set $activeSlave.clothes = "a schoolgirl outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a schutzstaffel uniform")>> diff --git a/src/uncategorized/toychest.tw b/src/uncategorized/toychest.tw index 57b49480c45427eaddfb68904927f07ba8de32cb..069ae927a1454168fee62f195a98ac603145ab5b 100644 --- a/src/uncategorized/toychest.tw +++ b/src/uncategorized/toychest.tw @@ -214,6 +214,8 @@ $His athletic clothing gives the office a more youthful vibe. <<case "a skimpy loincloth">> $His skimpy loincloth gives the office a more barbaric and raw atmosphere. + <<case "a Santa dress">> + $His skimpy dress somehow makes you seem more charitable and jovial than you really are. <<default>> <<if ($slaves[$i].vaginalAccessory == "chastity belt")>> $His chastity belt covers and protects $his pussy, but leaves $his breasts naked, $his mouth available, and $his asshole vulnerable. diff --git a/src/uncategorized/wardrobe.tw b/src/uncategorized/wardrobe.tw index 6832539ae089f688c323e167d1580d8a8488250f..3fa1244f011f541ab4920bcc561755c6be3c0a15 100644 --- a/src/uncategorized/wardrobe.tw +++ b/src/uncategorized/wardrobe.tw @@ -240,7 +240,15 @@ The room containing all the clothes and accessories you have available to dress [[Order a shipment of politically incorrect clothing|Wardrobe][cashX(-15000, "capEx"), $clothesBoughtPol = 1]] //Costs <<print cashFormat(15000)>>// <<else>> - You are well stocked with selection of outfits once considered distasteful. + You are well stocked with a selection of outfits once considered distasteful. +<</if>> + +<br> +<<if !isItemAccessible("a Santa dress")>> + [[Order a shipment of colorful and revealing costumes|Wardrobe][cashX(-15000, "capEx"), $clothesBoughtCostume = 1]] + //Costs <<print cashFormat(15000)>>// +<<else>> + You are well stocked with a variety of costume party supplies. <</if>> <br> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index 9529e182a5e0fa4208fb5cb76fbaf2ed280308ea..5da39ef6b5ca99e56e39f6ce0b7a9238b4b118f5 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -392,6 +392,13 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> <</if>> +<<if isItemAccessible("a Santa dress")>> + | <<link "Santa dress">> + <<set $activeSlave.clothes = "a Santa dress",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Scalemail bikini">> <<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index eb9b2941ebb748e0c793e903fc541776ecfcd7fb..d5b13efdb9577b9098c57cb56789c4a9198b7f40 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -13983,63 +13983,63 @@ $He has //WIP// <<elseif $activeSlave.belly >= 750000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - The bottom of $activeSlave.slaveName's dress's tunic lies taut across $his monolithic <<print $activeSlave.inflationType>>-filled belly. + $activeSlave.slaveName's dress's belt can no longer cross all of $his monolithic <<print $activeSlave.inflationType>>-filled belly, let alone $his whole body. <<elseif $activeSlave.bellyImplant > 0>> - The bottom of $activeSlave.slaveName's dress's tunic lies taut across $his monolithic implant-filled belly. + $activeSlave.slaveName's dress's belt can no longer cross all of $his monolithic implant-filled belly, let alone $his whole body. <<else>> - The bottom of $activeSlave.slaveName's dress's tunic lies taut across $his monolithic pregnant belly. + $activeSlave.slaveName's dress's belt can no longer cross all of $his monolithic pregnant belly, let alone $his whole body. <</if>> <<elseif $activeSlave.belly >= 600000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - $activeSlave.slaveName's dress's tunic has been lengthened a great deal just to cover most of $his titanic <<print $activeSlave.inflationType>>-filled belly. + The bottom of $activeSlave.slaveName's dress is turning taut due to $his titanic <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's dress's tunic has been lengthened a great deal just to cover most of $his titanic implant-filled belly. + The bottom of $activeSlave.slaveName's dress is turning taut due to $his titanic implant-filled belly. <<else>> - $activeSlave.slaveName's dress's tunic has been lengthened a great deal just to cover most of $his titanic pregnant belly. + The bottom of $activeSlave.slaveName's dress is turning taut due to $his titanic pregnant belly. <</if>> <<elseif $activeSlave.belly >= 450000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - The tunic $activeSlave.slaveName's dress can't possibly cover the underside of $his gigantic <<print $activeSlave.inflationType>>-filled belly, so $his pants have been widened to pick up the slack. + The fur trim on $activeSlave.slaveName's dress appears ragged from being stretched by $his gigantic <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> - The tunic $activeSlave.slaveName's dress can't possibly cover the underside of $his gigantic implant-filled belly, so $his pants have been widened to pick up the slack. + The fur trim on $activeSlave.slaveName's dress appears ragged from being stretched by $his gigantic implant-filled belly. <<else>> - The tunic $activeSlave.slaveName's dress can't possibly cover the underside of $his gigantic pregnant belly, so $his pants have been widened to pick up the slack. + The fur trim on $activeSlave.slaveName's dress appears ragged from being stretched by $his gigantic pregnant belly. <</if>> <<elseif $activeSlave.belly >= 300000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - $activeSlave.slaveName dress's tunic has been let out a great deal to cover $his massive <<print $activeSlave.inflationType>>-filled belly. + The thick fabric of $activeSlave.slaveName's dress is stretched thin over $his massive <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName dress's tunic has been let out a great deal to cover $his massive implant-filled belly. + The thick fabric of $activeSlave.slaveName's dress is stretched thin over $his massive implant-filled belly. <<else>> - $activeSlave.slaveName dress's tunic has been let out a great deal to cover $his massive pregnant belly. + The thick fabric of $activeSlave.slaveName's dress is stretched thin over $his massive pregnant belly. <</if>> <<elseif $activeSlave.belly >= 120000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - $activeSlave.slaveName's dress's pants have been extended to reach $his popped navel to ensure that $his giant <<print $activeSlave.inflationType>>-filled belly is fully covered. + $activeSlave.slaveName's dress's belt has been glued to it, rather than try to actually encircle $his giant <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's dress's pants have been extended to reach $his popped navel to ensure that $his giant implant-filled belly is fully covered. + $activeSlave.slaveName's dress's belt has been glued to it, rather than try to actually encircle $his $his giant implant-filled belly. <<else>> - $activeSlave.slaveName's dress's pants have been extended to reach $his popped navel to ensure that $his giant pregnant belly is fully covered. + $activeSlave.slaveName's dress's belt has been glued to it, rather than try to actually encircle $his $his giant pregnant belly. <</if>> <<elseif $activeSlave.belly >= 30000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - The bottom of $activeSlave.slaveName's dress's tunic lies at crotch-level due to $his titanic <<print $activeSlave.inflationType>>-filled belly. + The bottom of $activeSlave.slaveName's titanic <<print $activeSlave.inflationType>>-filled belly is stretching $his dress's belt to its breaking point. <<elseif $activeSlave.bellyImplant > 0>> - The bottom of $activeSlave.slaveName's dress's tunic lies at crotch-level due to $his titanic implant-filled belly. + The bottom of $activeSlave.slaveName's titanic implant-filled belly is stretching $his dress's belt to its breaking point. <<else>> - The bottom of $activeSlave.slaveName's dress's tunic lies at crotch-level due to $his titanic pregnant belly. + The bottom of $activeSlave.slaveName's titanic pregnant belly is stretching $his dress's belt to its breaking point. <</if>> <<elseif $activeSlave.weight > 190>> - $activeSlave.slaveName's massively fat belly emphasizes the design of and nearly starts tearing $his festive dress. + $activeSlave.slaveName's massively fat belly emphasizes the design of and strains $his festive dress. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> <<if $activeSlave.bellyAccessory == "a huge empathy belly">> - $activeSlave.slaveName's huge pregnant belly is pushing $his leather belt to its breaking point. + $activeSlave.slaveName's leather belt can only just barely fit around $his huge pregnant belly. <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - $activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is pushing $his leather belt to its breaking point. + $activeSlave.slaveName's leather belt can only just barely fit around $his huge <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's huge implant-filled belly is pushing $his leather belt to its breaking point. + $activeSlave.slaveName's leather belt can only just barely fit around $his huge implant-filled belly. <<else>> - $activeSlave.slaveName's huge pregnant belly is pushing $his leather belt to its breaking point. + $activeSlave.slaveName's leather belt can only just barely fit around $his huge pregnant belly. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> <<if $activeSlave.bellyAccessory == "a large empathy belly">> @@ -17655,6 +17655,8 @@ $He has $activeSlave.slaveName's tank-top lies completely taut on $his titanic implant-filled belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt lies completely taut on $his titanic implant-filled belly. + <<case "a Santa dress>> + The bottom of $activeSlave.slaveName's titanic implant-filled belly is stretching $his dress's belt to its breaking point. <<case "a burkini">> The bottom of $activeSlave.slaveName's burkini's tunic lies at crotch-level due to $his titanic implant-filled belly. <<case "a hijab and blouse">> @@ -17867,6 +17869,8 @@ $He has $activeSlave.slaveName's tank-top lies completely taut on $his huge implant-filled belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt lies completely taut on $his huge implant-filled belly. + <<case "a Santa dress">> + $activeSlave.slaveName's leather belt can only just barely fit around $his huge implant-filled belly. <<case "a burkini">> The fabric of $activeSlave.slaveName's burkini is pushed up to just below $his crotch due to $his huge implant-filled belly. <<case "a hijab and blouse">> @@ -18078,6 +18082,8 @@ $He has $activeSlave.slaveName's tank-top is noticeably rounded out by $his huge implant-filled belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt is noticeably rounded out by $his huge implant-filled belly. + <<case "a Santa dress">> + $activeSlave.slaveName's belt is struggling to fully encircle $$his huge implant-filled belly. <<case "a burkini">> The fabric of $activeSlave.slaveName's burkini is slightly pushed up thanks to $his huge implant-filled belly. <<case "a hijab and blouse">> @@ -18290,6 +18296,7 @@ $He has There is a slight roundness to the middle of $activeSlave.slaveName's tank-top, thanks to $his implant-filled belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> There is a slight roundness to the middle of $activeSlave.slaveName's shirt, thanks to $his implant-filled belly. + <<case "a Santa dress">> <<case "a burkini">> $activeSlave.slaveName's burkini bulges significantly from $his implant-filled belly. <<case "a hijab and blouse">> @@ -18504,6 +18511,8 @@ $He has $activeSlave.slaveName's fat belly just manages to brush up against $his tank-top. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's fat belly just manages to brush up against $his shirt. + <<case "a Santa dress">> + <<case "a burkini">> $activeSlave.slaveName's burkini bulges from $his fat belly. <<case "a hijab and blouse">> @@ -18716,6 +18725,8 @@ $He has $activeSlave.slaveName's tank-top gently bulges from $his <<print $activeSlave.inflationType>>-swollen belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt covers most of $his <<print $activeSlave.inflationType>>-swollen belly. + <<case "a Santa dress">> + <<case "a burkini">> $activeSlave.slaveName's burkini gently bulges from $his <<print $activeSlave.inflationType>>-swollen belly. <<case "a hijab and blouse">> @@ -19174,6 +19185,8 @@ $He has $activeSlave.slaveName's tank-top is noticeably rounded out by $his hugely swollen belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt is noticeably rounded out by $his hugely swollen belly. + <<case "a Santa dress">> + <<case "a burkini">> The fabric of $activeSlave.slaveName's burkini is slightly pushed up thanks to $his hugely <<print $activeSlave.inflationType>>-swollen belly. <<case "a hijab and blouse">> @@ -19381,6 +19394,8 @@ $He has There is a slight roundness to the middle of $activeSlave.slaveName's tank-top, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> There is a slight roundness to the middle of $activeSlave.slaveName's shirt, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly. + <<case "a Santa dress">> + <<case "a burkini">> $activeSlave.slaveName's burkini bulges significantly from $his jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "a hijab and blouse">> @@ -19590,6 +19605,8 @@ $He has $activeSlave.slaveName's fat belly just manages to brush up against $his tank-top. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's fat belly just manages to brush up against $his shirt. + <<case "a Santa dress">> + <<case "a burkini">> $activeSlave.slaveName's burkini bulges from $his fat belly. <<case "a hijab and blouse">> @@ -19800,6 +19817,8 @@ $He has $activeSlave.slaveName's tank-top bulges from $his <<print $activeSlave.inflationType>>-swollen belly. <<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">> $activeSlave.slaveName's shirt covers most of $his <<print $activeSlave.inflationType>>-swollen belly. + <<case "a Santa dress">> + <<case "a burkini">> $activeSlave.slaveName's burkini bulges from $his <<print $activeSlave.inflationType>>-swollen belly. <<case "a hijab and blouse">>