diff --git a/readme.txt b/readme.txt index 59a1f1676a23d3690aa34e577cc51bf8032486ef..a732390ae40699f2933fef9eabe128ae609aa732 100644 --- a/readme.txt +++ b/readme.txt @@ -1,9 +1,9 @@ Common problems: How do I start the game? --Run the compile file, go to folder "bin", click the "FC_Pregmod" and play. (Reccomendation: Drag it into incongito mode) +-Run the compile file, go to folder "bin", click the "FC_Pregmod" and play. (Recommendation: Drag it into incognito mode) -I get a error on gamestart. +I get an error on gamestart. -clear cookies I can't save more than once or twice. @@ -44,7 +44,7 @@ How to mod (basic doc): meld FreeCities FreeCitiesPregmod or just select these folders in meld's GUI. -5. All modders will be wery grateful if any, who make some changes to game, with .html file also post his/her resulting src folder tree. +5. All modders will be very grateful if anyone who makes some changes to game with .html file also post his/her resulting src folder tree. 6. For contributors to pregmod: if you don't use git, then you need to post your version of src folder tree, not just produced FC_pregmod.html file!!! This html file can't be reverted to proper sources, and useless as contribution! @@ -56,7 +56,7 @@ How to mod (basic doc): Typical cycle with git: 1. Make account on gitgud if you don't have usable one. 2. Fork main repository through gitgud interface. (Or pull changes from main repo if you already have fork.) - 3. Clone your fork to local machine witn git client (Or pull changes if already cloned.) + 3. Clone your fork to local machine with git client (Or pull changes if already cloned.) 4. Make you changes as you like, commit, and push result into your forked repository (with git client). 5. Make merge request through gitgud interface. - + \ No newline at end of file diff --git a/src/js/clothingSelectionJS.tw b/src/js/clothingSelectionJS.tw index 24bef04793450abbb4f0589edcc542b7155afc2a..b31379abe36b3664bd96e4481b30cadb7e46d35e 100644 --- a/src/js/clothingSelectionJS.tw +++ b/src/js/clothingSelectionJS.tw @@ -409,6 +409,7 @@ window.todaysOutfit = function(slave) { wardrobeFS.push({text: "and decides to dress up like a young man's wet dream.", clothes: "a succubus outfit"}); wardrobeFS.push({text: "and decides to wear a skimpy bikini to make her assets look even larger.", clothes: "a string bikini"}); wardrobeFS.push({text: "and decides to throw together a slutty outfit that highlight her assets.", clothes: "a slutty outfit"}); + wardrobeFS.push ({text: "and decides to wear a monokini that clings to the assets it actually does conceal.", clothes: "a monokini"}); } else if(ArcologyZero.FSSlimnessEnthusiast > 0) { if(slave.boobs < 300) { wardrobeFS.push({text: "and wears a string bikini to show off just how flat she is.", clothes: "a string bikini"}); @@ -517,7 +518,8 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and wears a maternity dress in the hope someone fills out its middle.", clothes: "a maternity dress"}); } } else if(slave.fetish == "boobs") { - wardrobeAssignment.push({text: "and wears a cheerleader outfit, since she loves the way it hugs her tits as she moves.", clothes: "a cheerleader outfit"}); + wardrobeTastes.push({text: "and wears a cheerleader outfit, since she loves the way it hugs her tits as she moves.", clothes: "a cheerleader outfit"}); + wardrobeTastes.push({text: "and wears a monokini, since she loves how it leaves her breasts totally bare.", clothes: "a monokini"}); } } else { if(slave.fetish == "submissive") { @@ -546,7 +548,8 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and wears a maternity dress even though she isn't pregnant.", clothes: "a maternity dress"}); } } else if(slave.fetish == "boobs") { - wardrobeAssignment.push({text: "and wears a cheerleader outfit; she seems to enjoy jiggling her breasts in it.", clothes: "a cheerleader outfit"}); + wardrobeTastes.push({text: "and wears a cheerleader outfit; she seems to enjoy jiggling her breasts in it.", clothes: "a cheerleader outfit"}); + wardrobeTastes.push({text: "and strangely decides to wear a monokini, which leaves her breasts totally bare.", clothes: "a cheerleader outfit"}); } } diff --git a/src/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw index 001f18257b6f19f53ec5f86d272ee913496404d6..bb3f8911e2939e2cab471bcf271ef691c8e12d82 100644 --- a/src/js/eventSelectionJS.tw +++ b/src/js/eventSelectionJS.tw @@ -809,7 +809,7 @@ if(eventSlave.fetish != "mindbroken") { if(eventSlave.devotion > 20) { if(eventSlave.butt > 5) { - if(!["no clothing", "body oil", "a toga", "a kimono", "shibari ropes", "a slutty maid outfit", "a string bikini", "a scalemail bikini", "a chattel habit", "a slave gown", "a halter top dress", "a ball gown", "a mini dress", "harem gauze"].includes(eventSlave.clothes)) { + if(!["no clothing", "body oil", "a toga", "a kimono", "shibari ropes", "a slutty maid outfit", "a string bikini", "a scalemail bikini", "a chattel habit", "a slave gown", "a halter top dress", "a ball gown", "a mini dress", "harem gauze", "a monokini"].includes(eventSlave.clothes)) { State.variables.RESSevent.push("ass fitting"); } } diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index efbe9ad2bfc65fd5fb133f28f0d61010978611a3..6e50eb8f596e48c552c6395c0d42be92a4cd9edc 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -115,6 +115,8 @@ She gives herself a nasty pinch between the legs in her haste to get out of her string bottom. <<case "a scalemail bikini">> She gives herself a tiny cut on her breast in her haste to get out of her scalemail top. + <<case "a monokini">> + She nearly snaps the shoulder straps of her monokini in her haste to remove it. <<case "a fallen nuns habit">> She tugs desperately at the laces of her tight latex nun getup. <<case "a chattel habit">> diff --git a/src/pregmod/widgets/slaveSummaryWidgets.tw b/src/pregmod/widgets/slaveSummaryWidgets.tw index 0f07a72636c900ca8e470bbcd389b62816c54820..6cddf0e315327ea3445b6494d01676f9a8e0ec93 100644 --- a/src/pregmod/widgets/slaveSummaryWidgets.tw +++ b/src/pregmod/widgets/slaveSummaryWidgets.tw @@ -2918,6 +2918,8 @@ _Slave.faceShape face. String bikini. <<case "a scalemail bikini">> Scalemail bikini. +<<case "a monokini">> + Monokini. <<case "cutoffs and a t-shirt">> Cutoffs, t-shirt. <<case "a slutty outfit">> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index f63e16761f4bdcc0d56cdec2f97af2e2ebdf7dfc..47538abf04f24a71dee602fc27592d233761d167 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -130,9 +130,9 @@ The business is brief and inconsequential, but it's good to speak with her. When When you've finished your task, you raise your eyes to examine her. She's standing with her <<if $activeSlave.hips > 1>>broad<<elseif $activeSlave.hips < -1>>narrow<<else>>womanly<</if>> hips slightly cocked and her <<if $activeSlave.muscles > 95>>incredibly muscular<<elseif $activeSlave.weight > 10>>soft<<elseif $activeSlave.muscles > 10>>hard<<else>>trim<</if>> thighs bowed a bit wide. You immediately understand why: it's her job to impregnate fertile slaves, a duty she takes very seriously, and her dick must be very sore. <<if $activeSlave.clothes == "no clothing">> She's nude, making it obvious that her poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago. -<<elseif ["shibari ropes", "restrictive latex", "chains", "uncomfortable straps", "clubslut netting", "body oil"].indexOf($activeSlave.clothes) != -1>> +<<elseif ["body oil", "chains", "clubslut netting", "restrictive latex", "shibari ropes", "uncomfortable straps"].indexOf($activeSlave.clothes) != -1>> Her clothes don't cover her dick, making it obvious that her poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago. -<<elseif ["restrictive latex", "a string bikini", "a scalemail bikini", "a comfortable bodysuit", "a latex catsuit", "a leotard", "a fallen nuns habit", "slutty jewelry", "harem gauze", "attractive lingerie", "attractive lingerie for a pregnant woman", "stretch pants and a crop-top", "spats and a tank top"].indexOf($activeSlave.clothes) != -1>> +<<elseif ["a comfortable bodysuit", "a fallen nuns habit", "a latex catsuit", "a leotard", "a monokini", "a scalemail bikini", "a string bikini", "attractive lingerie for a pregnant woman", "attractive lingerie", "harem gauze", "restrictive latex", "slutty jewelry", "spats and a tank top", "stretch pants and a crop-top"].indexOf($activeSlave.clothes) != -1>> Her clothes cover her groin, but they're pretty tight, making it clear that her poor soft member has done its duty today. <<else>> Her clothes are relatively modest, so you can't see it, but it's clear that her poor soft member has done its duty today. diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index d780ba4909a30cc393a5ba64c15e5edbd8e5097f..04b7cec401ab8fc3e1156090321ab8a91a58e3d3 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -245,7 +245,7 @@ <<case "nationality">> <<switch $activeSlave.nationality>> <<case "Afghan">> - <<set $nickname = either("'Afghan'", "'Bactrian'", "'Chai Girl'", "'Kabul'", "'Kandahar'", "'Pashtun'", "'Poppy'", "'Taliban'")>> + <<set $nickname = either("'Afghan'", "'Afghani'", "'Bactrian'", "'Chai Girl'", "'Kabul'", "'Kandahar'", "'Pashtun'", "'Poppy'", "'Taliban'")>> <<case "Albanian">> <<set $nickname = either("'Albanian'", "'Durrës'", "'Hoxha'", "'Sejdia'", "'Shiptar'", "'Tirana'")>> <<case "Algerian">> @@ -319,7 +319,7 @@ <<case "Cape Verdean">> <<set $nickname = either("'Cabo Verde'", "'Cap-Vert'", "'Cape Verdean'", "'Praia'")>> <<case "Catalan">> - <<set $nickname = either("'Barcelona'", "'Castell'", "'Catalan'", "'Catalufo'", "'Senyera'", "'Spanish'")>> + <<set $nickname = either("'Barcelona'", "'Castell'", "'Catalan'", "'Catalonian'", "'Catalufo'", "'Senyera'", "'Spanish'")>> <<case "Central African">> <<set $nickname = either("'Abiras'", "'Bangui'", "'Bokassa'", "'Central African'", "'Ubangi-Shari'")>> <<case "Chadian">> @@ -347,7 +347,7 @@ <<case "Czech">> <<set $nickname = either("'Bohemian'", "'Bohunk'", "'Czech'", "'Czechnya'", "'Kunda'", "'Moravian'", "'Prague'", "'Silesian'", "'Velvet'")>> <<case "Danish">> - <<set $nickname = either("'Copenhagen'", "'Dane'", "'Danish'", "'Ludertæve'", "'Tøs'", "'Viking'")>> + <<set $nickname = either("'Copenhagen'", "'Dane'", "'Danish'", "'Danske'", "'Ludertæve'", "'Tøs'", "'Viking'")>> <<case "Djiboutian">> <<set $nickname = either("'Afar'", "'Djiboutian'", "'Ifat'", "'Obock'", "'Punt'", "'Tadjoura'")>> <<case "Dominican">> @@ -381,7 +381,7 @@ <<case "French">> <<set $nickname = either("'Belle'", "'Charlie Hebdo'", "'Crapaud'", "'Fille de Joie'", "'Français'", "'French'", "'Frenchie'", "'Frog'", "'Gabacha'", "'Gaul'", "'Mademoiselle'", "'Marianne'", "'Marseille'", "'Napoleon'", "'Paris'", "'Surrender Monkey'")>> <<case "French Guianan">> - <<set $nickname = either("'Cayenne'", "'French Guianan'", "'ÃŽle du Diable'", "'Kourou'")>> + <<set $nickname = either("'Cayenne'", "'French Guianan'", "'French Guianese'", "'ÃŽle du Diable'", "'Kourou'")>> <<case "French Polynesian">> <<set $nickname = either("'Faaa'", "'Fangataufa'", "'French Polynesian'", "'Moruroa'", "'Papeete'", "'Tahiti'")>> <<case "Gabonese">> @@ -391,7 +391,7 @@ <<case "Georgian">> <<set $nickname = either("'Georgian'", "'Kutaisi'", "'Mepe'", "'Tamar'", "'Tbilisi'")>> <<case "German">> - <<set $nickname = either("'Bavarian'", "'Berlin'", "'Bratwurst'", "'Cabbage Eater'", "'Dresden'", "'Fraulein'", "'German'", "'Jerry'", "'Hitler'", "'Hun'", "'Kraut'", "'Nazi'", "'Nuremberg'", "'Oktoberfest'", "'Piefke'", "'Prussian'", "'Saupreiß'", "'Teuton'", "'Valkyrie'")>> + <<set $nickname = either("'Bavarian'", "'Berlin'", "'Bratwurst'", "'Cabbage Eater'", "'Deutsche'", "'Dresden'", "'Fraulein'", "'German'", "'Jerry'", "'Hitler'", "'Hun'", "'Kraut'", "'Nazi'", "'Nuremberg'", "'Oktoberfest'", "'Piefke'", "'Prussian'", "'Saupreiß'", "'Teuton'", "'Valkyrie'")>> <<case "Ghanan">> <<set $nickname = either("'Accra'", "'Akan'", "'Ghanan'", "'Gold Coast'", "'Warrior Queen'", "'Shaman Queen'")>> <<case "Greek">> @@ -413,7 +413,7 @@ <<case "Hungarian">> <<set $nickname = either("'Bozgor'", "'Budapest'", "'Hungarian'", "'Kádár'", "'Magyar'", "'Szuka'")>> <<case "I-Kiribati">> - <<set $nickname = either("'Bairiki'", "'Butaritari'", "'Gilbert'", "'I-Kiribati'", "'Tarawa'", "'Tungaru'")>> + <<set $nickname = either("'Bairiki'", "'Butaritari'", "'Gilbert'", "'I-Kiribati'", "'Kiribatian'", "'Tarawa'", "'Tungaru'")>> <<case "Icelandic">> <<set $nickname = either("'Bessastaðir'", "'Icelander'", "'Icelandic'", "'Penis Museum'", "'ReykjavÃk'", "'Sagas'", "'Þingvellir'")>> <<case "Indian">> @@ -515,25 +515,25 @@ <<case "Nauruan">> <<set $nickname = either("'Meneng'", "'Nauruan'", "'Phosphate'", "'Pleasant Island'", "'Yaren'")>> <<case "Nepalese">> - <<set $nickname = either("'Katmandu'", "'Kumari'", "'Nep'", "'Nepalese'", "'Nepali'", "'Sherpa'")>> + <<set $nickname = either("'Kathmandu'", "'Kumari'", "'Nep'", "'Nepalese'", "'Nepali'", "'Sherpa'")>> <<case "a New Zealander">> <<set $nickname = either("'All-Black'", "'Auckland'", "'Kiwi'", "'New Zealander'", "'Sheep Shagger'", "'Wellington'")>> <<case "Ni-Vanuatu">> - <<set $nickname = either("'Bislama'", "'Cargo Cult'", "'Great Cyclade'", "'Jane Frum'", "'New Hebride'", "'Ni-Vanuatu'", "'Port Vila'")>> + <<set $nickname = either("'Bislama'", "'Cargo Cult'", "'Great Cyclade'", "'Jane Frum'", "'New Hebride'", "'Ni-Vanuatu'", "'Port Vila'", "'Vanuatuan'")>> <<case "Nicaraguan">> <<set $nickname = either("'Contra'", "'Granada'", "'Managua'", "'Nica'", "'Nicaraguan'", "'Pinolera'")>> <<case "Nigerian">> <<set $nickname = either("'Abuja'", "'Biafra'", "'Kwara'", "'Lagos'", "'Naija'", "'Nigerian'", "'Scammer'")>> <<case "Nigerien">> - <<set $nickname = either("'Kountché'", "'Niamey'", "'Nigerien'", "'Sarraounia'")>> + <<set $nickname = either("'Kountché'", "'Niamey'", "'Nigerien'", "'Sarraounia'", "'Songhai'")>> <<case "Niuean">> - <<set $nickname = either("'Alofi'", "'Niuean'", "'Patu-Iki'", "'Rock of Polynesia'")>> + <<set $nickname = either("'Alofi'", "'Niuean'", "'Patu-Iki'", "'Rock of Polynesia'", "'The Rock'")>> <<case "Norwegian">> <<set $nickname = either("'Black Metal'", "'Kuksuger'", "'Ludder'", "'Norse'", "'Norsk'", "'Norwegian'", "'Oil Hog'", "'Ola'", "'Oslo'")>> <<case "Omani">> <<set $nickname = either("'Dhofar'", "'Empty Quarter'", "'Ibadi'", "'Khanjar'", "'Muscat'", "'Omani'")>> <<case "Pakistani">> - <<set $nickname = either("'Indus'", "'Karachi'", "'Lahore'", "'Paki'", "'Pakistani'")>> + <<set $nickname = either("'Indus'", "'Islamabad'", "'Karachi'", "'Lahore'", "'Paki'", "'Pakistani'")>> <<case "Palauan">> <<set $nickname = either("'Koror'", "'Ngerulmud'", "'Palauan'", "'Peleliu'")>> <<case "Palestinian">> @@ -603,7 +603,7 @@ <<case "Sri Lankan">> <<set $nickname = either("'Ceylon'", "'Colombo'", "'Kotte'", "'Sri Lankan'", "'Tamil'")>> <<case "Sudanese">> - <<set $nickname = either("'Darfur'", "'Gordon's Revenge'", "'Khartoum'", "'Nubian'", "'Omdurman'")>> + <<set $nickname = either("'Darfur'", "'Gordon's Revenge'", "'Khartoum'", "'Nubian'", "'Omdurman'", "'Sudanese'")>> <<case "Surinamese">> <<set $nickname = either("'Bouterse'", "'Paramaribo'", "'Surinam'", "'Surinamese'")>> <<case "Swazi">> @@ -686,7 +686,7 @@ <<set $notApplyDesc = "may feel some gratitude due to your preference that she not be defined by her ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">> <<case "latina">> - <<set $nickname = either("'Adorada'", "'Banana Republic'", "'Brown'", "'Cafe'", "'Chica'", "'Chiquita'", "'Chola'", "'Cuzinho'", "'Facil'", "'Hispanic'", "'Latina'", "'Mestiza'", "'Mexicali'", "'One Peso'", "'Rio Grande'", "'Senora'", "'Senorita'", "'Shakira'", "'South of the Border'", "'Spic'", "'Spicy'", "'Wetback'", "'Yeyo'")>> + <<set $nickname = either("'Adorada'", "'Banana Republic'", "'Brown'", "'Cafe'", "'Chica'", "'Chiquita'", "'Chola'", "'Cuzinho'", "'Facil'", "'Hispanic'", "'Latin'", "'Latina'", "'Mestiza'", "'Mexicali'", "'One Peso'", "'Rio Grande'", "'Senora'", "'Senorita'", "'Shakira'", "'South of the Border'", "'Spic'", "'Spicy'", "'Wetback'", "'Yeyo'")>> <<set $situationDesc = "is latina, which is not uncommon given the poor state of many Central and South American countries and the long diaspora of poor natives of those areas. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">> <<set $applyDesc = "now has a constant reminder that as a sex slave she is judged on her appearance first.">> <<set $notApplyDesc = "may feel some gratitude due to your preference that she not be defined by her ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">> @@ -968,7 +968,7 @@ <<set $notApplyDesc = "accepts that her nipples are just another part of her, and that if she pokes those who fuck her in the missionary position a little, that's all right.">> <<case "areolae">> - <<set $nickname = either("'Areolae'", "'Broad Based'", "'Cans'", "'Dark Circles'", "'Headlights'", "'Highbeams'")>> + <<set $nickname = either("'Areolae'", "'Areolas'", "'Broad Based'", "'Cans'", "'Dark Circles'", "'Headlights'", "'Highbeams'")>> <<set $situationDesc = "has areolae broader than many slaves' entire breasts. Some slaves find them unattractive, making them an easy target for mockery; others like them, and playfully torment her by giving her a nickname based on them.">> <<set $applyDesc = "is proud of the nickname, almost amusingly so. She flaunts her lovely broad areolae happily, the nipples in their centers hard.">> <<set $notApplyDesc = "accepts that her broad areolae are just another part of her, just like her big tits.">> @@ -1155,7 +1155,7 @@ <<set $notApplyDesc = "accepts that having a massive ass does not make her special, since what's important is her holes, not her buttocks.">> <<case "virgin">> - <<set $nickname = either("'Chaste'", "'Chastity'", "'Doomed'", "'Flower'", "'Innocent'", "'Pristine'", "'Pure'", "'Unbroken'", "'Unspoilt'", "'Vestal'", "'Virgin'")>> + <<set $nickname = either("'Abstinent'", "'Chaste'", "'Chastity'", "'Doomed'", "'Flower'", "'Innocent'", "'Maiden'", "'Pristine'", "'Pure'", "'Unbroken'", "'Unspoilt'", "'Vestal'", "'Virgin'")>> <<set $situationDesc = "has never had vanilla sex. This is not unusual in the Free Cities, since many slaveowners value and preserve virginity. Virgins form a separate class of sorts among slaves. Some of them even dislike their status, as having a virgin pussy can often result in a tired tongue or a sore butt.">> <<set $applyDesc = "understands that it's her fate to remain unspoiled a while longer, and redoubles her efforts to do better with her other parts.">> <<set $notApplyDesc = "dreads and anticipates the day when she'll lose her pearl of great price and gain another way to please a man.">> diff --git a/src/uncategorized/rulesAssistant.tw b/src/uncategorized/rulesAssistant.tw index 668681351e664c31a547613ca0d136eb0967488f..8c98b63a7e43fd04cccfc278818355d268c8abfc 100644 --- a/src/uncategorized/rulesAssistant.tw +++ b/src/uncategorized/rulesAssistant.tw @@ -1,4 +1,4 @@ -:: Rules Assistant [nobr] +:: Rules Assistant [nobr] <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main">> <<set $showEncyclopedia = 1, $encyclopedia = "Personal Assistant">> @@ -553,6 +553,12 @@ Clothes: <<RARuleModified>> <</link>> | +<<link "Monokini">> + <<set $currentRule.clothes = "a monokini">> + <<RAChangeClothes>> + <<RARuleModified>> +<</link>> +| <<link "Nice lingerie">> <<set $currentRule.clothes = "attractive lingerie">> <<RAChangeClothes>> @@ -571,6 +577,12 @@ Clothes: <<RARuleModified>> <</link>> | +<<link "Scalemail bikini">> + <<set $currentRule.clothes = "a scalemail bikini">> + <<RAChangeClothes>> + <<RARuleModified>> +<</link>> +| <<link "Schoolgirl">> <<set $currentRule.clothes = "a schoolgirl outfit">> <<RAChangeClothes>> @@ -607,12 +619,6 @@ Clothes: <<RARuleModified>> <</link>> | -<<link "Scalemail bikini">> - <<set $currentRule.clothes = "a scalemail bikini">> - <<RAChangeClothes>> - <<RARuleModified>> -<</link>> -| <<link "Succubus costume">> <<set $currentRule.clothes = "a succubus outfit">> <<RAChangeClothes>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index e7037c8f540d4635abec90eab08e09cef45f1bf7..43a177013377b869e3472d8dd7f1fca9321cd6c4 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -1,4 +1,4 @@ -:: Slave Interact [nobr] +:: Slave Interact [nobr] <<if $cheatMode == 1>> <center>//[[Cheat Edit Slave|MOD_Edit Slave Cheat][$cheater = 1]] | [[Cheat Edit Slave Alternative|MOD_Edit Slave Cheat New][$cheater = 1]]//</center> @@ -642,6 +642,7 @@ | <<link "Maid (slutty)">><<set $activeSlave.clothes = "a slutty maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Military uniform">><<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Mini dress">><<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Monokini">><<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Nice lingerie">><<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Nurse (nice)">><<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Nurse (slutty)">><<set $activeSlave.clothes = "a slutty nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> diff --git a/src/uncategorized/toychest.tw b/src/uncategorized/toychest.tw index 2a706f59a263085b7f7198c14ec16ac4deba0ab1..b8a51e8f2e7c44af00e3784f7b5fe94985b3a6eb 100644 --- a/src/uncategorized/toychest.tw +++ b/src/uncategorized/toychest.tw @@ -137,6 +137,8 @@ The bodysuit she's wearing displays her every fuckable curve. <<case "a leotard">> The leotard she's wearing is tight enough to advertise every detail. + <<case "a monokini">> + Her topless swimsuit gives the office a perverted yet cultured aura. <<case "a bunny outfit">> The bunny outfit she's wearing makes her look ready to serve drinks and suck dick. <<case "a slutty maid outfit">> diff --git a/src/uncategorized/useGuard.tw b/src/uncategorized/useGuard.tw index 979a738ecfb3eaffc332d0d0718abeb1abfe106d..bf897e7d7da3d5c61c0bb0ba15a199f718e721af 100644 --- a/src/uncategorized/useGuard.tw +++ b/src/uncategorized/useGuard.tw @@ -22,6 +22,8 @@ $slaves[$i].slaveName is standing behind your left shoulder, guarding your perso Her military uniform is most befitting of an honor guard. <<case "a mini dress">> Her revealing mini dress and elegant weapons make her look sexy, yet deadly. +<<case "a monokini">> + Her monokini's unrepressed appearance clashes amusingly with her deadly weapons. <<case "clubslut netting">> Her club netting's slutty appearance clashes amusingly with her deadly weapons. <<case "a string bikini">> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 5e6c958680f633d5258d7ca2e04226960fb9e6dd..d2e146ef095efa2c8d0b982d056c26edc7f2ae3a 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -1098,6 +1098,8 @@ <<else>> Her maid outfit covers her breasts demurely, offering the diverting task of pulling it off her. <</if>> + <<case "a monokini">> + The straps of her monokini cross in the center of her chest, leaving the rest of her <<if $activeSlave.boobs < 300>>flat <</if>>breasts naked. <<case "a string bikini">> Her string bikini covers only her nipples, leaving the remainder of her <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> naked. <<case "a scalemail bikini">> @@ -1242,6 +1244,8 @@ Her maid's skirt is cut extremely short, so that the slightest movement reveals a glimpse of her ass. <<case "a nice maid outfit">> Her maid's skirt is cut conservatively, but it will lift easily enough. + <<case "a monokini">> + Her monokini contours to the size and shape of her bottom. <<case "a string bikini">> As she moves, her string lingerie leaves the entire line of her hips naked and enticing. <<case "a scalemail bikini">> @@ -1951,6 +1955,20 @@ <<else>> Her apron gives no hint of what's behind it. <</if>> + <<case "a monokini">> + <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> + Her hermaphroditic genitalia tents out the front of her monokini as she moves. + <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> + Her hermaphroditic genitalia sometimes bulges her monokini as she moves. + <<elseif ($activeSlave.dick > 4)>> + Her penis tents out the front of her monokini as she moves. + <<elseif ($activeSlave.dick != 0)>> + Her penis sometimes bulges her monokini as she moves. + <<elseif ($activeSlave.vagina != -1)>> + Her monokini clings to her pussylips as she moves. + <<else>> + Her monokini clings to her featureless groin as she moves. + <</if>> <<case "a string bikini">> <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> As she moves, her g-string totally fails to restrain her hermaphroditic genitalia. @@ -2171,6 +2189,8 @@ Her enormous belly lewdly fills her bodysuit. <<case "a schoolgirl outfit">> The school blimp is waddling by. + <<case "a monokini">> + Her monokini only covers the lower quarter of her enormous belly. <<case "a hijab and abaya">> Her enormous belly pushes out her abaya. <<case "a leotard">> @@ -2215,6 +2235,8 @@ Her giant belly lewdly fills her bodysuit. <<case "a schoolgirl outfit">> The school bicycle is waddling by. + <<case "a monokini">> + Her monokini only covers the lower half of her giant belly. <<case "a hijab and abaya">> Her giant belly fills her abaya. <<case "a leotard">> @@ -2247,6 +2269,8 @@ Her scrub top jiggles along with her massive gut as she moves. <<case "a mini dress">> Her tearing minidress shows every jiggle in her massive gut as she moves. + <<case "a monokini">> + Her massive gut spills out over the front of her monokini. <<case "a nice maid outfit">> As she moves, barely any jiggling can be seen within her straining maid's dress. <<case "a penitent nuns habit">> @@ -2331,6 +2355,8 @@ Her huge belly lewdly fills her bodysuit. <<case "a schoolgirl outfit">> Her huge belly is only partly covered by her blouse. + <<case "a monokini">> + Her monokini only covers the lower three quarters of her huge belly. <<case "a kimono">> Her kimono demurely covers the sides of her huge belly. <<case "a hijab and abaya">> @@ -2371,6 +2397,8 @@ Her scrub top jiggles along with her giant gut as she moves. <<case "a mini dress">> Her strained minidress shows every jiggle in her giant gut as she moves. + <<case "a monokini">> + Her monokini struggles to reign in her giant gut. <<case "a nice maid outfit">> As she moves, noticeable jiggling can be seen within her maid's dress. <<case "a penitent nuns habit">> @@ -2435,6 +2463,8 @@ Her scrub top jiggles along with her big gut as she moves. <<case "a mini dress">> Her stretched minidress shows every jiggle in her big gut as she moves. + <<case "a monokini">> + Her big gut stretches out the fabric of her monokini. <<case "a slutty maid outfit">> Her big gut is barely covered by a thin white blouse that happily jiggles along with every motion. <<case "a nice maid outfit">> @@ -2495,6 +2525,8 @@ Her large belly strains against her scrub top, making her resemble more a maternity ward patient than a nurse. <<case "a mini dress">> Her large belly strains against her mini dress. + <<case "a monokini">> + Her monokini is rounded out by her large belly . <<case "a slutty maid outfit">> Her big belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> @@ -2559,6 +2591,8 @@ Her scrub top jiggles along with her fat gut as she moves. <<case "a mini dress">> Her stretched minidress shows every jiggle in her fat gut as she moves. + <<case "a monokini">> + Her monokini clings to the size and shape of her fat gut. <<case "a slutty maid outfit">> Her fat gut is partially covered by a thin white blouse, that happily jiggles along with every motion. <<case "a nice maid outfit">> @@ -2623,6 +2657,8 @@ Her distended belly is clearly visible through her scrub top. <<case "a mini dress">> Her distended belly bulges her tight mini dress. + <<case "a monokini">> + Her monokini bulges from her distended belly. <<case "a slutty maid outfit">> Her distended belly bulges her thin white blouse. <<case "a nice maid outfit">> @@ -2692,6 +2728,8 @@ Her scrub top jiggles along with her massive gut as she moves. <<case "a mini dress">> Her tearing minidress shows every jiggle in her massive gut as she moves. + <<case "a monokini">> + Her massive gut spills out from the top of her monokini as she moves. <<case "a nice maid outfit">> As she moves, barely any jiggling can be seen within her straining maid's dress. <<case "a penitent nuns habit">> @@ -2780,6 +2818,8 @@ Her taut, sloshing belly is only partly covered by her blouse. <<case "a kimono">> Her kimono demurely covers the sides of her taut, sloshing belly. + <<case "a monokini">> + Her monokini fails to fully cover her taut, sloshing belly. <<case "a hijab and abaya">> Her taut, sloshing belly tents her abaya. <<case "a leotard">> @@ -2818,6 +2858,8 @@ Her scrub top jiggles along with her giant gut as she moves. <<case "a mini dress">> Her strained minidress shows every jiggle in her giant gut as she moves. + <<case "a monokini">> + Her giant gut causes her monokini to jiggle alongside it as she moves. <<case "a nice maid outfit">> As she moves, noticeable jiggling can be seen within her maid's dress. <<case "a penitent nuns habit">> @@ -2882,6 +2924,8 @@ Her scrub top jiggles along with her big gut as she moves. <<case "a mini dress">> Her stretched minidress shows every jiggle in her big gut as she moves. + <<case "a monokini">> + Her monokini struggles to stop her big gut from jiggling as she moves. <<case "a slutty maid outfit">> Her big gut is barely covered by a thin white blouse that happily jiggles along with every motion. <<case "a nice maid outfit">> @@ -2974,6 +3018,8 @@ Her rounded, sloshing belly is only partly covered by her blouse. <<case "a kimono">> Her kimono demurely covers her rounded, sloshing belly. + <<case "a monokini">> + Her monokini struggles to cover ger rounded, sloshing belly. <<case "a hijab and abaya">> Her rounded, sloshing belly tents her abaya. <<case "a leotard">> @@ -3012,6 +3058,8 @@ Her scrub top jiggles along with her fat gut as she moves. <<case "a mini dress">> Her stretched minidress shows every jiggle in her fat gut as she moves. + <<case "a monokini">> + Her fat gut bulges out her monokini, which stops her from jiggling as she moves. <<case "a slutty maid outfit">> Her fat gut is partially covered by a thin white blouse, that happily jiggles along with every motion. <<case "a nice maid outfit">> @@ -3106,6 +3154,8 @@ Her distended belly peeks out from under her blouse. <<case "a kimono">> Her kimono demurely covers her distended belly. + <<case "a monokini">> + Her monokini manages to cover her distended belly. <<case "a hijab and abaya">> Her distended belly gently tents her abaya. <<case "a leotard">> @@ -3189,6 +3239,8 @@ <</if>> <<case "battledress">> Her fatigue trousers are not particularly flattering to her butt. + <<case "a monokini">> + The bottom of her monokini is practically sculpted to fit her ass. <<case "a string bikini">> <<if ($activeSlave.anus > 1)>> As she moves, her big butthole is clearly visible behind her tiny g-string. @@ -3196,7 +3248,7 @@ As she moves, her tiny g-string draws your attention to her ass. <</if>> <<case "a scalemail bikini">> - Her scalemail bottom draws attention to her ass cheeks, while concealing her rear hole. + Her scalemail bottom draws attention to her ass cheeks, while concealing her rear hole. <<case "clubslut netting">> As she moves, the hole in her netting right over her butthole looks inviting. <<case "a cheerleader outfit">> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index 636d9c1a27f14c0ba88b88fd705aab5db0e524b8..3b66e07879b491ed8fd63148a7618813bf8c1370 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -104,6 +104,11 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> +| <<link "Monokini">> + <<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> +<</link>> | <<link "Nice lingerie">> <<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index fe252cc2d3a9f3da62a1bdaa23ba8bcd82f6e5af..27c72c3287d769afab34e5cb78b1a8407f67ca61 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -1225,7 +1225,7 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared <<set _undressed = 1>> <</if>> -<<case "cutoffs and a t-shirt" "a slutty outfit" "nice business attire" "battledress" "a nice maid outfit" "a leotard" "a comfortable bodysuit" "a bunny outfit" "conservative clothing" "a nice nurse outfit" "a latex catsuit">> /* getting hard to get out of quickly */ +<<case "cutoffs and a t-shirt" "a slutty outfit" "nice business attire" "battledress" "a nice maid outfit" "a leotard" "a monokini" "a comfortable bodysuit" "a bunny outfit" "conservative clothing" "a nice nurse outfit" "a latex catsuit">> /* getting hard to get out of quickly */ <<if _clothesSeed < 40>> <<set _undressed = 1>> <</if>> @@ -1439,6 +1439,22 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared Quickly she attempts to remove her leotard but fails to do so before having to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>her first<<else>>this week's<</if>> baby<<else>>her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>. She can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so she bears with it<</if>>. The tight material stretches as her child is born into it and with a little help she's freed to finish giving birth. <</if>> +<<case "a monokini">> + <<if $slaves[$i].fetish == "mindbroken">> + Instinctively, she begins to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>her first<<else>>this week's<</if>> baby<<else>>her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>, indifferent to who may be watching her <<if $slaves[$i].mpreg == 1>>crotch<<else>>ass<</if>>. + <<if $slaves[$i].pregType > 30 && $slaves[$i].broodmother == 0>> + Child after child is born into her monokini as the <<if $slaves[$i].mpreg == 1>>seat<<else>>front<</if>> distends more and more. Eventually the squirming mass pulls her to the floor, where she lies, still very much in labor. As the load of newborns reaches the leotard's limit, a loud rip sounds out as the overburdened garmit splits and frees her brood into the world. + <<elseif $slaves[$i].pregType > 10 && $slaves[$i].broodmother == 0>> + Child after child is born into her monokini as the <<if $slaves[$i].mpreg == 1>>seat<<else>>front<</if>> distends more and more. Eventually the squirming mass pulls her to the floor, where she lays until she finishes giving birth. She struggles to get to her feet and carry on with her task until someone helps free them from their nylon prison. + <<elseif $slaves[$i].pregType > 4 && $slaves[$i].broodmother == 0>> + Child after child is born into her monokini as the <<if $slaves[$i].mpreg == 1>>seat<<else>>front<</if>> distends more and more. She struggles to carry on with her task with the squirming mass between her legs until someone helps free them from their nylon prison. + <<else>> + She finishes giving birth and begins anew on her assigned task, ignoring the squirming bab<<if $slaves[$i].pregType > 1 && $slaves[$i].broodmother == 0>>ies<<else>>y<</if>> distending the <<if $slaves[$i].mpreg == 1>>seat<<else>>crotch<</if>> of her leotard until someone helps them from their nylon prison. + <</if>> + <<else>> + Quickly she attempts to remove her monokini but fails to do so before having to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>her first<<else>>this week's<</if>> baby<<else>>her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>. She can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so she bears with it<</if>>. The tight material stretches as her child is born into it and with a little help she's freed to finish giving birth. + <</if>> + <<case "a ball gown">> <<if $slaves[$i].fetish == "mindbroken">> Instinctively, she begins to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>her first<<else>>this week's<</if>> baby<<else>>her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>, indifferent to the obvious wetness forming <<if $slaves[$i].mpreg == 1>>under her rear<<else>>over her crotch<</if>>. @@ -1543,6 +1559,8 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared nice maid outfit <<case "a leotard">> leotard + <<case "a monokini">> + monokini <<case "a comfortable bodysuit">> comfortable bodysuit <<case "a bunny outfit">> @@ -1553,6 +1571,8 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared latex catsuit <<case "a leotard">> leotard + <<case "a monokini">> + monokini <<case "stretch pants and a crop-top">> stretch pants <<case "spats and a tank top">> @@ -1612,6 +1632,8 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared nice maid outfit <<case "a leotard">> leotard + <<case "a monokini">> + monokini <<case "a comfortable bodysuit">> comfortable bodysuit <<case "a bunny outfit">> @@ -1622,6 +1644,8 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to her prepared latex catsuit <<case "a leotard">> leotard + <<case "a monokini">> + monokini <<case "stretch pants and a crop-top">> stretch pants <<case "spats and a tank top">> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 6b8a154063aef67d31cb6cd8a947d7c6b98b428c..98e2e0dac03639c9fe78785d3094ab185ce7c53a 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -430,6 +430,17 @@ <<else>> chest is flattered by $possessive leotard. <</if>> + <<case "a monokini">> + The shoulder straps of $activeSlave.slaveName's monokini cross over in the center of $possessive chest, leaving the rest of $possessive + <<if $activeSlave.boobs > 12000>> + gigantic breasts totally bare. + <<elseif $activeSlave.boobs > 2000>> + large breasts totally bare. + <<elseif $activeSlave.boobs < 300>> + flat chest totally bare. + <<else>> + breasts totally bare. + <</if>> <<case "a bunny outfit">> $activeSlave.slaveName's <<if $activeSlave.boobs > 12000>> @@ -814,7 +825,7 @@ $possessiveCap <<elseif $activeSlave.boobs >= 20000>> Together they are nearly the same size as her torso, making her about half boob. <</if>> - <<if $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>> + <<if $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>> <<if $boobAccessibility == 1>> Fortunately for $object, the penthouse is adapted for daily life with a bosom <<else>> @@ -845,7 +856,7 @@ $possessiveCap <<elseif $activeSlave.boobs >= 40000>> Together they are nearly the same size as her torso, making her about half boob. <</if>> - <<if $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>> + <<if $activeSlave.boobs > 20000 && ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)>> <<if $boobAccessibility == 1>> Fortunately for $object, the penthouse is adapted for daily life with a bosom <<else>> @@ -1062,6 +1073,8 @@ $possessiveCap The upper half of each of them is visible. <<case "a leotard">> The material of $possessive leotard is so thin and tight that not only are $possessive nipples obvious, the outline of $possessive areolae can be made out, too. + <<case "a monokini">> + As $possessive monokini leaves $object topless, $possessive areolae are naturally on public display. <</switch>> <</if>> <</if>> @@ -1166,7 +1179,7 @@ $possessiveCap <<case "a maternity dress">> $possessiveCap <<if $activeSlave.butt > 10>> - massive buttocks strains the seams of $possessive dress considerably. + massive buttocks strains the seams of $possessive dress considerably. <<elseif $activeSlave.butt > 6>> huge buttocks stretches the fabric of $possessive dress considerably. <<elseif $activeSlave.butt > 3>> @@ -1177,7 +1190,7 @@ $possessiveCap <<case "stretch pants and a crop-top">> $possessiveCap <<if $activeSlave.butt > 10>> - massive buttocks strains the seams of $possessive stretch pants considerably; $pronoun can only manage to pull them halfway over it creating plenty of jiggly ass cleavage to spill out over the elastic waist. + massive buttocks strains the seams of $possessive stretch pants considerably; $pronoun can only manage to pull them halfway over it creating plenty of jiggly ass cleavage to spill out over the elastic waist. <<elseif $activeSlave.butt > 6>> huge buttocks stretch the fabric of $possessive stretch pants considerably, $pronoun can barely manage to pull them over it. <<elseif $activeSlave.butt > 3>> @@ -1548,6 +1561,17 @@ $possessiveCap <<else>> leaves $possessive buttocks bare. <</if>> +<<case "a monokini">> + $possessiveCap monokini covers $possessive buttocks fully, the fabric clinging to each + <<if $activeSlave.butt > 10>> + gargantuan cheek. + <<elseif $activeSlave.butt > 6>> + giant cheek. + <<elseif $activeSlave.butt > 3>> + substantial cheek. + <<else>> + cheek. + <</if>> <<case "a bunny outfit">> $possessiveCap teddy is actually quite modest in back, covering $possessive buttocks in tight satin with a fluffy white cottontail positioned over $possessive tailbone. <<case "harem gauze">> @@ -2016,7 +2040,7 @@ $pronounCap's got a <<elseif $activeSlave.dick > 0>> $activeSlave.slaveName's dick has been lovingly <<elseif $activeSlave.vagina == -1>> - $activeSlave.slaveName featureless groin has been lovingly + $activeSlave.slaveName's featureless groin has been lovingly <<else>> $activeSlave.slaveName's pussy has been lovingly <</if>> @@ -2024,6 +2048,12 @@ $pronounCap's got a <<case "a toga">> <<if $activeSlave.dick > 3>> Something is tenting the front of $activeSlave.slaveName's toga. + <<elseif $activeSlave.dick > 0>> + $activeSlave.slaveName's dick is hidden behnd $possessive toga. + <<elseif $activeSlave.vagina == -1>> + $activeSlave.slaveName's featureless groin is hidden by $possessive toga. + <<else>> + $activeSlave.slaveName's pussy is concealed by $possessive toga. <</if>> <<case "a huipil">> $activeSlave.slaveName's @@ -2042,7 +2072,7 @@ $pronounCap's got a <<elseif ($activeSlave.dick > 5) && canAchieveErection($activeSlave) && ($activeSlave.devotion > 20)>> $activeSlave.slaveName's erection is so big that $pronoun's restrained it by trapping its head under $possessive bra.<<if $activeSlave.boobs > 800>> Its head peeks out from $possessive cleavage.<</if>> <<elseif ($activeSlave.dick > 3) && ($activeSlave.vagina > -1)>> - $activeSlave.slaveName's silken panties cannot cover $possessive hermaphroditic genitalia due to the size of her cock. $pronounCap's simply pulled it to one side, leaving $possessive pussy bare as well. + $activeSlave.slaveName's silken panties cannot cover $possessive hermaphroditic genitalia due to the size of her cock. $pronounCap's simply pulled it to one side, leaving $possessive pussy bare as well. <<elseif ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>> $activeSlave.slaveName's silken panties demurely cover $possessive hermaphroditic genitalia as long as $pronoun doesn't move too much, but $possessive dick has a way of slipping out and uncovering $possessive pussy. <<elseif $activeSlave.dick > 3>> @@ -2141,6 +2171,19 @@ $pronounCap's got a <<else>> $possessive clit. <</if>> +<<case "a monokini">> + $activeSlave.slaveName's + <<if $activeSlave.dick > 3>> + dick creates a large bulge in the front of $possessive monokini. + <<elseif ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>> + hermaphroditic genitalia creates a small bulge in the front of $possessive monokini. + <<elseif $activeSlave.dick > 0>> + dick creates a small bulge in the front of $possessive monokini. + <<elseif $activeSlave.vagina == -1>> + monokini bottom has no bulges or ridges at the front or bottom. + <<else>> + pussy creates small ridges in the bottom of $possessive monokini. + <</if>> <<case "a string bikini">> $activeSlave.slaveName's <<if ($activeSlave.dick > 5) && canAchieveErection($activeSlave) && ($activeSlave.devotion > 20) && ($activeSlave.belly >= 5000)>> @@ -3354,7 +3397,7 @@ $pronounCap's got a $possessiveCap pussy is loose, <<elseif $activeSlave.vagina == 10>> $possessiveCap pussy is completely ruined from hundreds of births. One could fit their arm into it with minimal effort and $pronoun can barely get off from vaginal sex now. $possessiveCap pussy is abyssal, -<<elseif $activeSlave.vagina > 3>> +<<elseif $activeSlave.vagina > 3>> $possessiveCap pussy is utterly cavernous, <</if>> @@ -4258,7 +4301,7 @@ $pronounCap has <<if $activeSlave.weight > 190>> $possessiveCap massively fat belly is stretched to the limit, so much so $possessive folds are pulled flat and $possessive softness, firm. $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both $object and $possessive implant have managed to hold together this long. <<else>> - $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both $object and $possessive implant have managed to hold together this long. + $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents nor can one push their hand into it. It's a wonder that both $object and $possessive implant have managed to hold together this long. <</if>> <<if $activeSlave.bellyFluid >= 1500>> <<if $activeSlave.inflationMethod == 2>> @@ -4318,7 +4361,7 @@ $pronounCap has <<if $activeSlave.weight > 190>> $possessiveCap massively fat belly is stretched to the limit, so much so $possessive folds are pulled flat and $possessive softness, firm. $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents. Both $object and $possessive implant are at risk of rupturing should either be filled any more. <<else>> - $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents. Both $object and $possessive implant are at risk of rupturing should either be filled any more. + $pronounCap is so overfilled you can clearly make out the implant within $possessive body through $possessive skin. It is so full, not one motion can be seen in its contents. Both $object and $possessive implant are at risk of rupturing should either be filled any more. <</if>> <<if $activeSlave.bellyFluid >= 1500>> <<if $activeSlave.inflationMethod == 2>> @@ -7922,7 +7965,7 @@ $pronounCap has <</if>> <<case "a nice maid outfit">> <<if $activeSlave.bellyPreg >= 600000>> - $activeSlave.slaveName's maid dress was almost conservative, but it has burst open trying to contain $possessive titanic bulging pregnant belly $possessiveCap squirming belly hangs out the hole it made, its sides peeking out from behind $possessive apron. + $activeSlave.slaveName's maid dress was almost conservative, but it has burst open trying to contain $possessive titanic bulging pregnant belly $possessiveCap squirming belly hangs out the hole it made, its sides peeking out from behind $possessive apron. <<elseif $activeSlave.bellyPreg >= 300000>> $activeSlave.slaveName's maid dress is almost conservative, it barely contains $possessive massive pregnant belly. Its seams strain to hold back $possessive overfilled womb. <<elseif $activeSlave.weight > 190>> @@ -8426,6 +8469,28 @@ $pronounCap has <<elseif $activeSlave.weight > 30>> $activeSlave.slaveName's tight leotard clings to $possessive chubby belly, clearly displaying every fold and roll. <</if>> +<<case "a monokini">> + <<if $activeSlave.bellyPreg >= 600000>> + $activeSlave.slaveName's tight monokini shows off every kick and movement within $possessive titanic bulging pregnant belly. $possessiveCap squirming belly protrudes from over the top of the swimsuit, which has been pushed down by the mass. + <<elseif $activeSlave.bellyPreg >= 300000>> + $activeSlave.slaveName's tight monokini shows off every kick and movement within $possessive massive pregnant belly. The swimsuit has been pushed down to well below $possessive popped navel. + <<elseif $activeSlave.weight > 190>> + $activeSlave.slaveName's tight monokini shows off every wiggle and jiggle within $possessive massively fat belly. The material tightly clings to $possessive deep folds and rolls, which are spilling out over the top of the outfit. + <<elseif $activeSlave.bellyPreg >= 10000 || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>> + $activeSlave.slaveName's tight monokini shows off <<if !["a huge empathy belly", "a large empathy belly"].includes($activeSlave.bellyAccessory)>>every kick and movement within<<else>>the curvature of<</if>> $possessive big pregnant belly. The swimsuit has been pushed down to just above $possessive popped navel. + <<elseif $activeSlave.weight > 160>> + $activeSlave.slaveName's tight monokini tightly clings to $possessive hugely fat belly, clearly displaying every fold, roll and motion in its mass. + <<elseif $activeSlave.weight > 130>> + $activeSlave.slaveName's tight monokini tightly clings to $possessive big fat belly, clearly displaying every fold and roll. + <<elseif $activeSlave.bellyPreg >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> + $activeSlave.slaveName's tight monokini shows off <<if !["a medium empathy belly"].includes($activeSlave.bellyAccessory)>>every kick and movement within<<else>>the curvature of<</if>> $possessive pregnant belly. The material tightly clings to $possessive popped navel. + <<elseif $activeSlave.weight > 95>> + $activeSlave.slaveName's tight monokini tightly clings to $possessive fat belly, clearly displaying every fold and roll. + <<elseif (($activeSlave.bellyPreg >= 1500) || ($activeSlave.bellyAccessory == "a small empathy belly"))>> + $activeSlave.slaveName's tight monokini shows off $possessive growing belly. + <<elseif $activeSlave.weight > 30>> + $activeSlave.slaveName's tight monokini clings to $possessive chubby belly, clearly displaying every fold and roll. + <</if>> <<case "a chattel habit">> <<if $activeSlave.bellyPreg >= 600000>> The strip of cloth running down $possessive front is forced to one side by $possessive titanic bulging pregnant belly. @@ -9698,7 +9763,7 @@ $pronounCap has Ethnically, she's <<elseif $activeSlave.nationality == "slave">> She's been chattel long enough that slavery is effectively her nationality; ethnically, she's - <<elseif $activeSlave.nationality == "Stateless">> + <<elseif $activeSlave.nationality == "Stateless">> She has spent so much time in the Free Cities that their statelessness is effectively her nationality; ethnically, she's <<elseif $activeSlave.nationality == "Zimbabwean" && $activeSlave.race == "white">> She's originally @@.tan;Rhodesian@@; ethnically, she's @@ -10419,7 +10484,7 @@ she's <<case "shibari ropes">> $activeSlave.slaveName's titanic bulging implant-filled is tightly bound with rope; they can barely sink into the overfilled implant <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's titanic bulging implant-filled greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's titanic bulging implant-filled greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's titanic implant-filled belly hangs out $possessive open tunic and shirt @@ -10441,7 +10506,7 @@ she's <<case "attractive lingerie">> $activeSlave.slaveName's titanic implant-filled belly completely hides $possessive lacy g-string. <<case "attractive lingerie for a pregnant woman">> - $activeSlave.slaveName's titanic implant-filled belly completely hides $possessive silken panties. $possessiveCap silken vest sensually frames $possessive overfilled middle. + $activeSlave.slaveName's titanic implant-filled belly completely hides $possessive silken panties. $possessiveCap silken vest sensually frames $possessive overfilled middle. <<case "a maternity dress">> $activeSlave.slaveName's titanic implant-filled belly strains $possessive dress. $possessiveCap dress is specially tailored to be modest yet draw attention to $possessive abnormal midriff. <<case "stretch pants and a crop-top">> @@ -10449,11 +10514,11 @@ she's <<case "a slutty maid outfit">> $activeSlave.slaveName's maid dress fails to cover $possessive titanic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop $possessive immense stomach. <<case "a nice maid outfit">> - $activeSlave.slaveName's maid dress was almost conservative, but it has burst open trying to contain $possessive titanic implant-filled belly. $possessiveCap immense stomach hangs out the hole it made, its sides peeking out from behind $possessive apron. + $activeSlave.slaveName's maid dress was almost conservative, but it has burst open trying to contain $possessive titanic implant-filled belly. $possessiveCap immense stomach hangs out the hole it made, its sides peeking out from behind $possessive apron. <<case "a fallen nun's habit">> $activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $possessive titanic implant-filled belly. <<case "a penitent nun's habit">> - $activeSlave.slaveName's titanic implant-filled belly stretches $possessive habit. The coarse cloth aggravates $possessive sensitive stretched skin, even more so, given the amount of skin it has to torment. + $activeSlave.slaveName's titanic implant-filled belly stretches $possessive habit. The coarse cloth aggravates $possessive sensitive stretched skin, even more so, given the amount of skin it has to torment. <<case "a string bikini">> $activeSlave.slaveName's titanic implant-filled belly hides most of $possessive string bikini. <<case "a scalemail bikini">> @@ -10499,7 +10564,9 @@ she's <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that looks ready to snap as in encircles $possessive titanic implant-filled belly. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every inch of $possessive titanic implant-filled belly. $possessiveCap immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric. + $activeSlave.slaveName's tight leotard shows off every inch of $possessive titanic implant-filled belly. $possessiveCap immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric. +<<case "a monokini">> + $activeSlave.slaveName's titanic implant-filled belly has pushed down the front of $possessive monokini, leaving $possessive mostly bare. <<case "a chattel habit">> The strip of cloth running down $possessive front is forced to one side by $possessive titanic implant-filled belly. <<case "a bunny outfit">> @@ -10556,11 +10623,11 @@ she's <<case "a slutty qipao">> $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive gigantic implant-filled belly. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straining straps press into $possessive gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling $possessive popped navel. + $activeSlave.slaveName's slave outfit's straining straps press into $possessive gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<case "shibari ropes">> $activeSlave.slaveName's gigantic implant-filled belly is tightly bound with rope, flesh angrily bulges from between them. <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's gigantic implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's gigantic implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's gigantic implant-filled belly hangs out $possessive open tunic and shirt @@ -10590,11 +10657,11 @@ she's <<case "a slutty maid outfit">> $activeSlave.slaveName's maid dress fails to cover $possessive gigantic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop $possessive stomach. <<case "a nice maid outfit">> - $activeSlave.slaveName's maid dress is almost conservative, it barely contains $possessive gigantic implant-filled belly. Its seams strain to hold back $possessive overfilled middle. + $activeSlave.slaveName's maid dress is almost conservative, it barely contains $possessive gigantic implant-filled belly. Its seams strain to hold back $possessive overfilled middle. <<case "a fallen nun's habit">> $activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $possessive gigantic implant-filled belly. <<case "a penitent nun's habit">> - $activeSlave.slaveName's gigantic implant-filled belly completely fills $possessive habit. The coarse cloth aggravates $possessive sensitive stretched skin. + $activeSlave.slaveName's gigantic implant-filled belly completely fills $possessive habit. The coarse cloth aggravates $possessive sensitive stretched skin. <<case "a string bikini">> $activeSlave.slaveName's gigantic implant-filled belly parts $possessive string bikini to either side. <<case "a scalemail bikini">> @@ -10634,13 +10701,15 @@ she's <<case "battledress">> $activeSlave.slaveName's tank top rests atop $possessive gigantic implant-filled belly leaving $object looking like someone who fucked all the locals. <<case "a halter top dress">> - $activeSlave.slaveName's beautiful halter top dress is strained by $possessive gigantic implant-filled belly. $possessiveCap popped navel prominently pokes through the front of $possessive dress as its seams strain to hold together. + $activeSlave.slaveName's beautiful halter top dress is strained by $possessive gigantic implant-filled belly. $possessiveCap popped navel prominently pokes through the front of $possessive dress as its seams strain to hold together. <<case "a ball gown">> $activeSlave.slaveName's fabulous silken ball gown, while tailored, strains to contain $possessive gigantic implant-filled belly. <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that rests above $possessive popped navel. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive gigantic implant-filled belly. The material tightly clings to $possessive popped navel and strains to hold together. + $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive gigantic implant-filled belly. The material tightly clings to $possessive popped navel and strains to hold together. +<<case "a monokini">> + $activeSlave.slaveName's gigantic implant-filled belly pushes the fabric of $possessive monokini to below $possessive popped navel. <<case "a chattel habit">> The strip of cloth running down $possessive front is parted to one side by $possessive gigantic implant-filled belly. <<case "a bunny outfit">> @@ -10676,9 +10745,9 @@ she's <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive huge implant-filled belly. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's sweater is pulled taut by $possessive huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in the material. + $activeSlave.slaveName's sweater is pulled taut by $possessive huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in the material. <<else>> - $activeSlave.slaveName's blouse is pulled taut by $possessive huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in $possessive shirt. + $activeSlave.slaveName's blouse is pulled taut by $possessive huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in $possessive shirt. <</if>> <<case "attractive lingerie for a pregnant woman">> $activeSlave.slaveName's huge implant-filled belly completely hides $possessive silken panties. $possessiveCap silken vest sensually frames $possessive heavy stomach. @@ -10697,13 +10766,13 @@ she's <<case "a huipil">> $activeSlave.slaveName's huge implant-filled belly lifts $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive huge implant-filled belly. + $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive huge implant-filled belly. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straining straps press into $possessive huge implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. + $activeSlave.slaveName's slave outfit's straining straps press into $possessive huge implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<case "shibari ropes">> $activeSlave.slaveName's huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them. <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's huge implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's huge implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's huge implant-filled belly is obscured by $possessive massive tits. @@ -10733,7 +10802,7 @@ she's <<case "a fallen nuns habit">> $activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $possessive huge implant-filled belly. <<case "a penitent nuns habit">> - $pronounCap looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. + $pronounCap looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. <<case "a string bikini">> $activeSlave.slaveName's huge implant-filled belly parts $possessive string bikini to either side. <<case "a scalemail bikini">> @@ -10773,17 +10842,19 @@ she's <<case "battledress">> $activeSlave.slaveName's tank top barely even covers the top of $possessive huge implant-filled belly, leaving $object looking like someone who had too much fun on shore leave. <<case "a halter top dress">> - $activeSlave.slaveName's beautiful halter top dress is filled by $possessive huge implant-filled belly. $possessiveCap popped navel prominently pokes through its front. + $activeSlave.slaveName's beautiful halter top dress is filled by $possessive huge implant-filled belly. $possessiveCap popped navel prominently pokes through its front. <<case "a ball gown">> $activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $possessive huge implant-filled belly, but draw attention to it. <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that rests above $possessive popped navel. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive huge implant-filled belly. The material tightly clings to $possessive popped navel. + $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive huge implant-filled belly. The material tightly clings to $possessive popped navel. +<<case "a monokini">> + $activeSlave.slaveName's huge implant-filled belly pushes the fabric of $possessive monokini to rest just above $possessive popped navel. <<case "a chattel habit">> The strip of cloth running down $possessive front is parted to one side by $possessive huge implant-filled belly. <<case "a bunny outfit">> - $activeSlave.slaveName's teddy is stretched to tearing by $possessive huge implant-filled belly. $possessiveCap popped navel prominently pokes through the material. + $activeSlave.slaveName's teddy is stretched to tearing by $possessive huge implant-filled belly. $possessiveCap popped navel prominently pokes through the material. <<case "spats and a tank top">> <<if ($activeSlave.boobs > 4000)>> $activeSlave.slaveName's huge implant-filled belly is obscured by $possessive huge tits. @@ -10838,13 +10909,13 @@ she's <<case "a huipil">> $activeSlave.slaveName's implant-filled belly lifts $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. However, it only covers the top of $possessive implant-filled belly. + $possessiveCap qipao is slit up the side. However, it only covers the top of $possessive implant-filled belly. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straining straps press into $possessive implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. + $activeSlave.slaveName's slave outfit's straining straps press into $possessive implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<case "shibari ropes">> $activeSlave.slaveName's implant-filled belly is tightly bound with rope; flesh bulges angrily from between them. <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's implant-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's implant-filled belly is obscured by $possessive massive tits. @@ -10870,11 +10941,11 @@ she's <<case "a slutty maid outfit">> $activeSlave.slaveName's maid dress fails to cover $possessive implant-filled belly, but the outfit includes a thin white blouse that conceals only the top half of $possessive stomach. <<case "a nice maid outfit">> - $activeSlave.slaveName's maid dress is almost conservative, it covers $possessive implant-filled belly completely. Though it cannot hide $possessive popped navel poking through the front. + $activeSlave.slaveName's maid dress is almost conservative, it covers $possessive implant-filled belly completely. Though it cannot hide $possessive popped navel poking through the front. <<case "a fallen nuns habit">> $activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $possessive implant-filled belly. <<case "a penitent nuns habit">> - $pronounCap looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. + $pronounCap looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. <<case "a string bikini">> $activeSlave.slaveName's implant-filled belly parts $possessive string bikini to either side. <<case "a scalemail bikini">> @@ -10914,17 +10985,19 @@ she's <<case "battledress">> $activeSlave.slaveName's tank top rides up $possessive implant-filled belly leaving $object looking like someone who had too much fun on shore-leave. <<case "a halter top dress">> - $activeSlave.slaveName's beautiful halter top dress is filled by $possessive implant-filled belly. $possessiveCap popped navel prominently pokes through the front of $possessive dress. + $activeSlave.slaveName's beautiful halter top dress is filled by $possessive implant-filled belly. $possessiveCap popped navel prominently pokes through the front of $possessive dress. <<case "a ball gown">> $activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $possessive implant-filled belly but draw attention to it. <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that rests above $possessive popped navel. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive implant-filled belly. The material tightly clings to $possessive popped navel. + $activeSlave.slaveName's tight leotard shows off every kick and movement within $possessive implant-filled belly. The material tightly clings to $possessive popped navel. +<<case "a monokini">> + $activeSlave.slaveName's implant-filled belly pushes down the fabroc if $possessive monokini down somewhat. <<case "a chattel habit">> The strip of cloth running down $possessive front is parted to one side by $possessive implant-filled belly. <<case "a bunny outfit">> - $activeSlave.slaveName's teddy is stretched out by $possessive implant-filled belly. $possessiveCap popped navel prominently pokes through the material. + $activeSlave.slaveName's teddy is stretched out by $possessive implant-filled belly. $possessiveCap popped navel prominently pokes through the material. <<case "spats and a tank top">> <<if ($activeSlave.boobs > 4000)>> $activeSlave.slaveName's implant-filled belly is obscured by $possessive huge tits. @@ -10964,7 +11037,7 @@ she's $activeSlave.slaveName's blouse is pulled tight over $possessive fat belly. The bottom of which peeks out from under it. <</if>> <<case "attractive lingerie for a pregnant woman">> - $activeSlave.slaveName's fat belly is large enough to hide $possessive panties. $possessiveCap silken vest sensually frames $possessive heavy, jiggly gut. + $activeSlave.slaveName's fat belly is large enough to hide $possessive panties. $possessiveCap silken vest sensually frames $possessive heavy, jiggly gut. <<case "a maternity dress">> $activeSlave.slaveName's fat belly fills out $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same. <<case "stretch pants and a crop-top">> @@ -10982,7 +11055,7 @@ she's <<case "a slutty qipao">> $possessiveCap qipao is slit up the side. However, it only covers the top of $possessive fat belly, allowing it to hang free. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straps sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. The straps connect to a steel ring that parts the fold concealing $possessive navel, allowing it to be seen once again. + $activeSlave.slaveName's slave outfit's straps sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. The straps connect to a steel ring that parts the fold concealing $possessive navel, allowing it to be seen once again. <<case "shibari ropes">> $activeSlave.slaveName's binding ropes sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. <<case "restrictive latex" "a latex catsuit">> @@ -11063,6 +11136,8 @@ she's $activeSlave.slaveName's bangles include long, thin chains running along $possessive fat folds. <<case "a leotard">> $activeSlave.slaveName's tight leotard tightly clings to $possessive fat belly, clearly displaying every fold and roll. +<<case "a monokini">> + $activeSlave.slaveName's monokini tightly clings to $possessive fat belly, clearly displaying every fold and roll. <<case "a chattel habit">> The strip of cloth running down $possessive front is gently sinks into $possessive fat belly. <<case "a bunny outfit">> @@ -11078,7 +11153,7 @@ she's <<default>> <</switch>> <<if $arcologies[0].FSSlimnessEnthusiast != "unset">> - Your sleek, slim society finds $possessive bloated body unsightly. + Your sleek, slim society finds $possessive bloated body unsightly. <</if>> <<elseif $activeSlave.bellyImplant >= 2000>> @@ -11105,9 +11180,9 @@ she's $activeSlave.slaveName's blouse bulges with $possessive implant-rounded belly. <</if>> <<case "attractive lingerie for a pregnant woman">> - $activeSlave.slaveName's implant-rounded belly rests above $possessive silken panties. $possessiveCap silken vest sensually frames $possessive swollen belly. + $activeSlave.slaveName's implant-rounded belly rests above $possessive silken panties. $possessiveCap silken vest sensually frames $possessive swollen belly. <<case "a maternity dress">> - $activeSlave.slaveName's implant-rounded belly is noticeable under $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to $possessive swollen middle. + $activeSlave.slaveName's implant-rounded belly is noticeable under $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to $possessive swollen middle. <<case "stretch pants and a crop-top">> $activeSlave.slaveName's implant-rounded belly takes full advantage of $possessive exposed midriff to bulge freely. <<case "chains">> @@ -11121,7 +11196,7 @@ she's <<case "a huipil">> $activeSlave.slaveName's implant-rounded belly slightly bulges under $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. The front is pushed out by $possessive implant-rounded belly. + $possessiveCap qipao is slit up the side. The front is pushed out by $possessive implant-rounded belly. <<case "uncomfortable straps">> $activeSlave.slaveName's slave outfit's straining straps press into $possessive implant-rounded belly. <<case "shibari ropes">> @@ -11204,6 +11279,8 @@ she's $activeSlave.slaveName's bangles include a long thin chain that rests across $possessive implant-rounded belly. <<case "a leotard">> $activeSlave.slaveName's tight leotard shows off $possessive implant-rounded belly. +<<case "a monokini">> + $activeSlave.slaveName's monokini is filled out by $possessive implant-rounded belly. <<case "a chattel habit">> The strip of cloth running down $possessive front is pushed out by $possessive implant-rounded belly. <<case "a bunny outfit">> @@ -11473,14 +11550,14 @@ she's <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive hugely swollen belly. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's sweater is pulled taut by $possessive hugely swollen belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in the material. + $activeSlave.slaveName's sweater is pulled taut by $possessive hugely swollen belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in the material. <<else>> $activeSlave.slaveName's blouse is pulled taut by $possessive hugely swollen belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in $possessive shirt. <</if>> <<case "attractive lingerie for a pregnant woman">> - $activeSlave.slaveName's hugely swollen belly completely hides $possessive silken panties. $possessiveCap silken vest sensually frames $possessive heavy belly. + $activeSlave.slaveName's hugely swollen belly completely hides $possessive silken panties. $possessiveCap silken vest sensually frames $possessive heavy belly. <<case "a maternity dress">> - $activeSlave.slaveName's hugely swollen belly fills out $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to $possessive rounded stomach. + $activeSlave.slaveName's hugely swollen belly fills out $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to $possessive rounded stomach. <<case "stretch pants and a crop-top">> $activeSlave.slaveName's hugely swollen belly takes full advantage of $possessive exposed midriff to bulge freely and obscure $possessive stretch pants. <<case "chains">> @@ -11494,13 +11571,13 @@ she's <<case "a huipil">> $activeSlave.slaveName's hugely swollen belly lifts $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive hugely swollen belly. + $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive hugely swollen belly. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straining straps press into $possessive hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. + $activeSlave.slaveName's slave outfit's straining straps press into $possessive hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<case "shibari ropes">> - $activeSlave.slaveName's hugely swollen belly is tightly bound with ropes; flesh bulges angrily from between them. + $activeSlave.slaveName's hugely swollen belly is tightly bound with ropes; flesh bulges angrily from between them. <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's hugely swollen belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's hugely swollen belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's hugely swollen belly is obscured by $possessive massive tits. @@ -11576,11 +11653,13 @@ she's <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that rests above $possessive popped navel. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every slosh and jiggle within $possessive hugely swollen belly. The material tightly clings to $possessive popped navel. + $activeSlave.slaveName's tight leotard shows off every slosh and jiggle within $possessive hugely swollen belly. The material tightly clings to $possessive popped navel. +<<case "a monokini">> + $activeSlave.slaveName's monokini covers far less than half of $possessive hugely swollen belly. <<case "a chattel habit">> The strip of cloth running down $possessive front is parted to one side by $possessive hugely swollen belly. <<case "a bunny outfit">> - $activeSlave.slaveName's teddy is stretched to tearing by $possessive hugely swollen belly. $possessiveCap popped navel prominently pokes through the material. + $activeSlave.slaveName's teddy is stretched to tearing by $possessive hugely swollen belly. $possessiveCap popped navel prominently pokes through the material. <<case "spats and a tank top">> <<if ($activeSlave.boobs > 4000)>> $activeSlave.slaveName's hugely swollen belly is obscured by $possessive huge tits. @@ -11629,13 +11708,13 @@ she's <<case "a huipil">> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly lifts $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. However, it only covers the top of $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. + $possessiveCap qipao is slit up the side. However, it only covers the top of $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "uncomfortable straps">> - $activeSlave.slaveName's slave outfit's straining straps press into $possessive jiggling <<print $activeSlave.inflationType>>-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. + $activeSlave.slaveName's slave outfit's straining straps press into $possessive jiggling <<print $activeSlave.inflationType>>-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<case "shibari ropes">> - $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly bound with rope; flesh bulges angrily from between them. + $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly bound with rope; flesh bulges angrily from between them. <<case "restrictive latex" "a latex catsuit">> - $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly greatly distends $possessive latex suit. $pronounCap looks like an over inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<case "a military uniform">> <<if ($activeSlave.boobs > 6000)>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $possessive massive tits. @@ -11665,7 +11744,7 @@ she's <<case "a fallen nuns habit">> $activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "a penitent nuns habit">> - $pronounCap looks absolutely blasphemous in a habit with a jiggling <<print $activeSlave.inflationType>>-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. + $pronounCap looks absolutely blasphemous in a habit with a jiggling <<print $activeSlave.inflationType>>-filled belly. The coarse cloth aggravates $possessive sensitive stretched skin. <<case "a string bikini">> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly parts $possessive string bikini to either side. <<case "a scalemail bikini">> @@ -11711,7 +11790,9 @@ she's <<case "slutty jewelry">> $activeSlave.slaveName's bangles include a long thin chain that rests above $possessive popped navel. <<case "a leotard">> - $activeSlave.slaveName's tight leotard shows off every movement within $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. The material tightly clings to $possessive popped navel. + $activeSlave.slaveName's tight leotard shows off every movement within $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. The material tightly clings to $possessive popped navel. +<<case "a monokini">> + $activeSlave.slaveName's monokini overs only half of $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "a chattel habit">> The strip of cloth running down $possessive front is parted to one side by $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. <<case "a bunny outfit">> @@ -11750,7 +11831,7 @@ she's $activeSlave.slaveName's blouse is pulled tight over $possessive fat belly. The bottom of which peeks out from under it. <</if>> <<case "attractive lingerie for a pregnant woman">> - $activeSlave.slaveName's fat belly is large enough to hide $possessive panties. $possessiveCap silken vest sensually frames $possessive heavy, jiggly gut. + $activeSlave.slaveName's fat belly is large enough to hide $possessive panties. $possessiveCap silken vest sensually frames $possessive heavy, jiggly gut. <<case "a maternity dress">> $activeSlave.slaveName's fat belly fills out $possessive loose dress. $possessiveCap dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same. <<case "stretch pants and a crop-top">> @@ -11849,6 +11930,8 @@ she's $activeSlave.slaveName's bangles include long, thin chains running along $possessive fat folds. <<case "a leotard">> $activeSlave.slaveName's tight leotard tightly clings to $possessive fat belly, clearly displaying every fold and roll. +<<case "a monokini">> + $activeSlave.slaveName's monokini tightly clings to $possessive fat belly, clearly displaying every fold and roll. <<case "a chattel habit">> The strip of cloth running down $possessive front is gently sinks into $possessive fat belly. <<case "a bunny outfit">> @@ -11864,7 +11947,7 @@ she's <<default>> <</switch>> <<if $arcologies[0].FSSlimnessEnthusiast != "unset">> - Your sleek, slim society finds $possessive bloated body unsightly. + Your sleek, slim society finds $possessive bloated body unsightly. <</if>> <<elseif $activeSlave.inflation == 1>> @@ -11904,7 +11987,7 @@ she's <<case "a huipil">> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly slightly bulges under $possessive huipil. <<case "a slutty qipao">> - $possessiveCap qipao is slit up the side. The front is pushed out by $possessive <<print $activeSlave.inflationType>>-swollen belly. + $possessiveCap qipao is slit up the side. The front is pushed out by $possessive <<print $activeSlave.inflationType>>-swollen belly. <<case "uncomfortable straps">> $activeSlave.slaveName's slave outfit's straining straps press into $possessive <<print $activeSlave.inflationType>>-swollen belly. <<case "shibari ropes">> @@ -11987,6 +12070,8 @@ she's $activeSlave.slaveName's bangles include a long thin chain that rests across $possessive <<print $activeSlave.inflationType>>-swollen belly. <<case "a leotard">> $activeSlave.slaveName's tight leotard shows off $possessive <<print $activeSlave.inflationType>>-swollen belly. +<<case "a monokini">> + $activeSlave.slaveName's monokini covers most of $possessive <<print $activeSlave.inflationType>>-swollen belly. <<case "a chattel habit">> The strip of cloth running down $possessive front is pushed out by $possessive <<print $activeSlave.inflationType>>-swollen belly. <<case "a bunny outfit">> diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw index e16a33ff146fa9f93bc96b30356452d8fe8650e1..c8f030dc33054ca433e554b0637bf74f09bf6a0c 100644 --- a/src/utility/descriptionWidgetsPiercings.tw +++ b/src/utility/descriptionWidgetsPiercings.tw @@ -27,6 +27,8 @@ She's wearing girly earrings. <<case "a schoolgirl outfit">> She's wearing girlish earrings. + <<case "a monokini">> + She's wearing unobtrusive little stud earrings. <<case "a kimono">> She's wearing gorgeous enameled earrings made to look like tiny koi. <<case "a slave gown" "a halter top dress" "a ball gown" "a maternity dress">> @@ -138,6 +140,8 @@ A tiny ebon cross on a short chain dangles from each piercing. <<case "a chattel habit">> A tiny golden cock and balls dangles from each piercing. + <<case "a monokini">> + Due to $possessive toplessness, the piercings are plainly visible. <<case "a string bikini">> The piercings are a pastel color, to complement $possessive bikini. <<case "a scalemail bikini">> diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw index 2aa586f9a8dc982ceda378d84e0d69bafbeae07b..0096c233fcaad915e161e482e960baa01043f692 100644 --- a/src/utility/descriptionWidgetsStyle.tw +++ b/src/utility/descriptionWidgetsStyle.tw @@ -408,6 +408,15 @@ $activeSlave.slaveName is <<footwearDescription>> <</if>> +<<case "a monokini">> + a one-piece swimsuit that stops halfway up $possessive + <<if ($activeSlave.amp == 1)>> + limbless torso. + <<else>> + torso, and + <<footwearDescription>> + <</if>> + <<case "a bunny outfit">> a strapless satin teddy with a beribboned rosette over $possessive left hip, printed with $possessive name. <<if ($activeSlave.amp != 1)>> @@ -1860,8 +1869,8 @@ $possessiveCap <<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit">> is permed and secured by hair ties with plastic buttons, bearing the garish inscription <<InscripDesc>> - <<case "a string bikini">> - is permed and topped by a gold headband. + <<case "a scalemail bikini">> + is permed and topped by a gold headband. <<case "battledress">> is permed and secured by paracord. <<case "harem gauze">> @@ -2959,7 +2968,7 @@ $possessiveCap <<case "flats">> a pair of athletic shoes. <<case "boots">> - a pair high-topped athletic boots. + a pair of high-topped athletic boots. <<case "heels">> a pair of high-heeled athletic shoes. <<case "pumps">> @@ -2970,6 +2979,22 @@ $possessiveCap nothing on her feet, which are covered by the leotard. <</switch>> +<<case "a monokini">> + <<switch $activeSlave.shoes>> + <<case "flats">> + a pair of open-toed sandals. + <<case "boots">> + a pair of go-go boots. + <<case "heels">> + a pair of platform heels. + <<case "pumps">> + a pair of colorful pumps. + <<case "extreme heels">> + a pair dangerously tall platform heels. + <<default>> + leaves $possessive feet bare. + <</switch>> + <<case "a bunny outfit">> <<switch $activeSlave.shoes>> <<case "flats">> @@ -3407,6 +3432,13 @@ $possessiveCap The leotard's middle is strongly reinforced to act as a merciless corset. <</if>> +<<case "a monokini">> + <<if $activeSlave.bellyAccessory == "a corset">> + A corset peaks out from the top the swimsuit. + <<elseif $activeSlave.bellyAccessory == "an extreme corset">> + An extreme corset peaks out from the top of the swimsuit. + <</if>> + <<case "a bunny outfit">> <<if $activeSlave.bellyAccessory == "a corset">> $possessiveCap bunny outfit has an integral corset. @@ -3662,6 +3694,17 @@ $possessiveCap <</if>> asshole. <</if>> + <<case "a monokini">> + <<if ($activeSlave.vaginalAccessory == "anal chastity") || ($activeSlave.vaginalAccessory == "combined chastity") || ($activeSlave.dickAccessory == "anal chastity") || ($activeSlave.dickAccessory == "combined chastity")>> + $possessiveCap anal chastity device is integrated into $possessive swimsuit. + <<else>> + $possessiveCap swimsuit fully conceals $possessive + <<if $activeSlave.anus > 1>> + well-fucked asshole. + <<else>> + tight butthole. + <</if>> + <</if>> <<case "a string bikini">> <<if ($activeSlave.vaginalAccessory == "anal chastity") || ($activeSlave.vaginalAccessory == "combined chastity") || ($activeSlave.dickAccessory == "anal chastity") || ($activeSlave.dickAccessory == "combined chastity")>> $possessiveCap anal chastity belt is integrated into $possessive bikini.