diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 6110e5117a0973399f0a4b2082a077d7a9dcf2a6..0077d6b8a4dda454f6fbdcbf8a9004a35656ecff 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,8 +2,17 @@ 0.10.7.1-0.10.x +11/06/2018 + + 46 + -fixes + -migrated a bunch of clothing to wardrobe purchases + 11/05/2018 + 45.1 + -fixed slaves not dying in the pit + 45 -fixes -more pronoun work diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index c80520cf7ba9ae6961ba34d0cdc29c03f8e0ccc6..4e53c27a4bd732b2226bb9c66157751c4c6e8d84 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -1113,6 +1113,7 @@ window.isItemAccessible = function(string) { case 'a dirndl': case 'lederhosen': case 'a mounty outfit': + case 'a hanbok': if (V.clothesBoughtCultural === 1) { return true; } else { @@ -1132,6 +1133,7 @@ window.isItemAccessible = function(string) { break; case 'a klan robe': + case 'a slutty klan robe': case 'a schutzstaffel uniform': case 'a slutty schutzstaffel uniform': if (V.clothesBoughtPol === 1) { @@ -1141,7 +1143,132 @@ window.isItemAccessible = function(string) { } break; + case 'a nice nurse outfit': + case 'a police uniform': + case 'nice business attire': + if (V.clothesBoughtCareer === 1) { + return true; + } else { + return false; + } + break; + + case 'a nice maid outfit': + if (V.clothesBoughtCareer === 1 || V.PC.career === 'servant') { + return true; + } else { + return false; + } + break; + + case 'a ball gown': + case 'a gothic lolita dress': + case 'a halter top dress': + case 'a mini dress': + case 'a slave gown': + if (V.clothesBoughtDresses === 1) { + return true; + } else { + return false; + } + break; + + case 'a cybersuit': + case 'a latex catsuit': + if (V.clothesBoughtBodysuits === 1) { + return true; + } else { + return false; + } + break; + + case 'a button-up shirt and panties': + case 'a button-up shirt': + case 'cutoffs': + case 'jeans': + case 'leather pants and a tube top': + case 'leather pants': + case 'an oversized t-shirt': + case 'a sweater and cutoffs': + case 'a sweater and panties': + case 'a sweater': + case 'a t-shirt and jeans': + case 'a t-shirt and panties': + case 'a t-shirt': + case 'a tank-top and panties': + case 'a tank-top': + case 'a tube top': + if (V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'boyshorts': + case 'a bra': + case 'kitty lingerie': + case 'panties and pasties': + case 'a skimpy loincloth': + case 'a thong': + if (V.clothesBoughtUnderwear === 1) { + return true; + } else { + return false; + } + break; + + case 'leather pants and pasties': + case 'a t-shirt and thong': + case 'a tube top and thong': + case 'an oversized t-shirt and boyshorts': + if (V.clothesBoughtUnderwear === 1 && V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'sport shorts and a sports bra': + case 'sport shorts': + case 'a sports bra': + if (V.clothesBoughtSports === 1) { + return true; + } else { + return false; + } + break; + + case 'sport shorts and a t-shirt': + if (V.clothesBoughtSports === 1 && V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'a nice pony outfit': + case 'a slutty pony outfit': + if (V.clothesBoughtPony === 1) { + return true; + } else { + return false; + } + break; + + case 'a monokini': + case 'a one-piece swimsuit': + if (V.clothesBoughtSwimwear === 1) { + return true; + } else { + return false; + } + break; + case 'shimapan panties': + case 'a striped bra': + case 'striped panties': + case 'striped underwear': if (V.clothesBoughtPantsu === 1 || V.continent === 'Japan') { return true; } else { @@ -10212,7 +10339,7 @@ window.saChoosesOwnClothes = (function() { selection = {text: `${he} commonly sees others wearing tight, form-fitting clothes and is drawn to doing so ${himself}.`, clothes: jsEither(['a leotard', 'a string bikini', 'a slave gown', 'a comfortable bodysuit', 'restrictive latex', 'clubslut netting', 'a leotard', 'a halter top dress'])}; break; default: - selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: "attractive lingerie"}; + selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: jsEither(['attractive lingerie', 'panties'])}; break; } } @@ -10241,21 +10368,29 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and wears a slutty nurse outfit to make it clear just how much this nurse needs ${his} daily lay.`, clothes: "a slutty nurse outfit"}); } else if(slave.energy > 80) { wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show off ${his} body and arouse ${his} patients.`, clothes: "a slutty nurse outfit"}); - wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + if(isItemAccessible("a nice nurse outfit")) { + wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + } wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show to a little skin as ${he} cares for ${his} patients.`, clothes: "a slutty nurse outfit"}); } else { - wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + if(isItemAccessible("a nice nurse outfit")) { + wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + } wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show to a little skin as ${he} cares for ${his} patients.`, clothes: "a slutty nurse outfit"}); } } else if(slave.assignment == "be the Madam") { if(slave.energy > 95 || slave.need > 100) { wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${him} from getting the sex ${he} needs.`, clothes: "slutty business attire"}); } else if(slave.energy > 80) { - wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); } else { - wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); } } else if(slave.assignment == "be the Milkmaid") { @@ -10265,7 +10400,9 @@ window.saChoosesOwnClothes = (function() { } wardrobeAssignment.push({text: `but goes nude to not be slowed down while moving between ${his} charges.`, clothes: "no clothing"}); } else { - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work with the cows.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work with the cows.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and decides to call it Casual Friday and wear nothing but cutoffs and a t-shirt. Not like the cows will mind.`, clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: `and opts to don a cheerleader outfit to help cheer the cows on.`, clothes: "a cheerleader outfit"}); wardrobeAssignment.push({text: `and dresses up as a succubus since ${he}'ll be drawing plenty of fluids.`, clothes: "a succubus outfit"}); @@ -10299,12 +10436,17 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("a mounty outfit")) { wardrobeAssignment.push({text: `and wears a mounty outfit to give ${him} that extra touch of authority.`, clothes: "a mounty outfit"}); } - wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"}); + } if(canPenetrate(slave)){ wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"}); } + wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"}); } else if(slave.assignment == "be the Schoolteacher") { - wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to give ${him} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"}); wardrobeAssignment.push({text: `and wears a schoolgirl outfit to help keep ${his} charges focused on ${him}.`, clothes: "a schoolgirl outfit"}); wardrobeAssignment.push({text: `and dresses up as a succubus to give ${his} sex lessons an extra kick.`, clothes: "a succubus outfit"}); @@ -10338,7 +10480,12 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.assignment == "be the Attendant") { wardrobeAssignment.push({text: `and wears a string bikini, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a string bikini"}); - wardrobeAssignment.push({text: `and wears an immodest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeAssignment.push({text: `and wears an one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"}); + } + if(isItemAccessible("one-piece swimsuit")) { + wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"}); + } if(isItemAccessible("a burkini")) { wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"}); } @@ -10346,6 +10493,7 @@ window.saChoosesOwnClothes = (function() { } else if(slave.assignment == "rest") { wardrobeAssignment.push({text: `and wears a comfortable t-shirt and cutoffs to relax.`, clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: `and slips into some attractive lingerie to enjoy ${himself} as ${he} unwinds.`, clothes: "attractive lingerie"}); + wardrobeAssignment.push({text: `and slips into nothing more than a pair of panties.`, clothes: "panties"}); wardrobeAssignment.push({text: `but decides that clothing takes too much work and would rather sleep nude.`, clothes: "no clothing"}); if(isItemAccessible("stretch pants and a crop-top")) { wardrobeAssignment.push({text: `and slips into some comfy stretch pants to relax.`, clothes: "stretch pants and a crop-top"}); @@ -10381,7 +10529,9 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("a red army uniform")) { wardrobeAssignment.push({text: `and wears a red army uniform to look the part of the honor guard.`, clothes: "a red army uniform"}); } - wardrobeAssignment.push({text: `and wears a nice suit to make it clear you mean business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to make it clear you mean business.`, clothes: "nice business attire"}); + } if(isItemAccessible("a mounty outfit")) { wardrobeAssignment.push({text: `and wears a mounty outfit to make it clear you mean business.`, clothes: "a mounty outfit"}); } @@ -10392,11 +10542,17 @@ window.saChoosesOwnClothes = (function() { } else { /*Chooses clothes according to assignment (exceptions allowed)*/ if(slave.assignment == "recruit girls") { - wardrobeAssignment.push({text: `and wears a flattering mini dress to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a mini dress"}); + if(isItemAccessible("a mini dress")) { + wardrobeAssignment.push({text: `and wears a flattering mini dress to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a mini dress"}); + } wardrobeAssignment.push({text: `and wears a cutoffs and a t-shirt to appear sexy and carefree before those desperately seeking a better life.`, clothes: "cutoffs and a t-shirt"}); - wardrobeAssignment.push({text: `and wears a nice suit to appear trustworthy before those desperately seeking a better life.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to appear trustworthy before those desperately seeking a better life.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a schoolgirl outfit to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a schoolgirl outfit"}); - wardrobeAssignment.push({text: `and wears an opulent gown to showcase your wealth before those desperately seeking a better life.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeAssignment.push({text: `and wears an opulent gown to showcase your wealth before those desperately seeking a better life.`, clothes: "a ball gown"}); + } wardrobeAssignment.push({text: `and dresses as a succubus to attempt to lure any potential catches.`, clothes: "a succubus outfit"}); if(isItemAccessible("harem gauze")) { wardrobeAssignment.push({text: `and dons ${his} finest silks to showcase the luxuries waiting would-be slaves.`, clothes: "harem gauze"}); @@ -10457,16 +10613,22 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and accentuate ${his} pregnancy while still looking a little classy.`, clothes: "attractive lingerie for a pregnant woman"}); } wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little classy.`, clothes: "attractive lingerie"}); - wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little cute.`, clothes: "kitty lingerie"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little cute.`, clothes: "kitty lingerie"}); + } if(isItemAccessible("harem gauze")) { wardrobeAssignment.push({text: `and dresses ${himself} with harem gauze to add an exotic charm to ${his} display.`, clothes: "harem gauze"}); } if(isItemAccessible("a kimono")) { wardrobeAssignment.push({text: `and wraps ${himself} in a kimono to add some elegance to ${his} display.`, clothes: "a kimono"}); } - wardrobeAssignment.push({text: `and adorns ${himself} in fine dress to show off how much of a high class whore ${he} is.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeAssignment.push({text: `and adorns ${himself} in fine dress to show off how much of a high class whore ${he} is.`, clothes: "a slave gown"}); + } wardrobeAssignment.push({text: `and dresses ${himself} in a slutty suit to show ${he}'s in it for the ¤.`, clothes: "slutty business attire"}); - wardrobeAssignment.push({text: `and wears a flattering mini dress to really strut ${his} stuff.`, clothes: "a mini dress"}); + if(isItemAccessible("a mini dress")) { + wardrobeAssignment.push({text: `and wears a flattering mini dress to really strut ${his} stuff.`, clothes: "a mini dress"}); + } } else if(slave.assignment == "serve the public" || slave.assignment == "serve in the club") { wardrobeAssignment.push({text: `and wears string lingerie to look fun and fuckable.`, clothes: "a string bikini"}); wardrobeAssignment.push({text: `and throws together the sluttiest outfit since if you're going to slut you might as well go all out.`, clothes: "a slutty outfit"}); @@ -10483,13 +10645,20 @@ window.saChoosesOwnClothes = (function() { } else if(slave.assignment == "be a servant" || slave.assignment == "work as a servant") { if(slave.energy > 95 || slave.need > 100) { wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apron in the hopes that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "an apron"}); } else if(slave.energy > 80) { wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); } else { - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); } } @@ -10536,11 +10705,16 @@ window.saChoosesOwnClothes = (function() { } if(V.arcologies[0].FSMaturityPreferentialist > 0) { if(slave.visualAge >= 30) { - wardrobeFS.push({text: `and wears a formal suit to look like the ideal older woman.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeFS.push({text: `and wears a formal suit to look like the ideal older woman.`, clothes: "nice business attire"}); + } wardrobeFS.push({text: `and wears a slutty suit to look like the ideal horny older woman.`, clothes: "slutty business attire"}); wardrobeFS.push({text: `and wears only an apron to make ${himself} seem more matronly.`, clothes: "an apron"}); } else { - wardrobeFS.push({text: `and wears a formal suit to look more mature.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeFS.push({text: `and wears a formal suit to look more mature.`, clothes: "nice business attire"}); + } + wardrobeFS.push({text: `and wears only an apron in an attempt to make ${himself} seem more matronly.`, clothes: "an apron"}); } } else if(V.arcologies[0].FSYouthPreferentialist > 0) { wardrobeFS.push({text: `and wears a schoolgirl outfit to look younger.`, clothes: "a schoolgirl outfit"}); @@ -10558,7 +10732,12 @@ window.saChoosesOwnClothes = (function() { } if(V.arcologies[0].FSPastoralist > 0) { wardrobeFS.push({text: `and wears Western clothing, since ${he} thinks it fits with pastoralism.`, clothes: "Western clothing"}); - wardrobeFS.push({text: `and wears a swimsuit that leaves ${his} breasts uncovered.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push({text: `and wears a swimsuit that leaves ${his} breasts uncovered.`, clothes: "a monokini"}); + } + if(isItemAccessible("pasties")) { + wardrobeFS.push({text: `and wears nothing more than a pair of pasties over ${his} nipples.`, clothes: "pasties"}); + } if(slave.lactation > 0) { wardrobeFS.push({text: `and dresses up as a slutty wet nurse.`, clothes: "a slutty nurse outfit"}); } @@ -10581,11 +10760,16 @@ window.saChoosesOwnClothes = (function() { 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 ${his} assets look even larger.`, clothes: "a string bikini"}); wardrobeFS.push({text: `and decides to throw together a slutty outfit that highlight ${his} 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"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push ({text: `and decides to wear a monokini that clings to the assets it actually does conceal.`, clothes: "a monokini"}); + } } else if(V.arcologies[0].FSSlimnessEnthusiast > 0) { if(slave.boobs < 300) { wardrobeFS.push({text: `and wears a string bikini to show off just how flat ${he} is.`, clothes: "a string bikini"}); - wardrobeFS.push({text: `and wears a monokini that leaves ${his} flat chest bare.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push({text: `and wears a monokini that leaves ${his} flat chest bare.`, clothes: "a monokini"}); + } + wardrobeFS.push({text: `and wears only panties, leaving ${his} flat chest bare.`, clothes: "panties"}); } if(slave.boobs < 600 && slave.butt < 3) { wardrobeFS.push({text: `and wears a leotard to show off ${his} lithe body.`, clothes: "a leotard"}); @@ -10649,13 +10833,21 @@ window.saChoosesOwnClothes = (function() { } if(slave.attrXX > 70) { if(slave.attrKnown == 1) { - wardrobeTastes.push({text: `and wears a fashionable gown, since girls appreciate nice clothes.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears a fashionable gown, since girls appreciate nice clothes.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears nothing but pretty lingerie to give the girls a show.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears a nice suit, since girls appreciate nice clothes.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a nice suit, since girls appreciate nice clothes.`, clothes: "nice business attire"}); + } } else { - wardrobeTastes.push({text: `and wears a fashionable gown.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears a fashionable gown.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears pretty lingerie that shows off ${his} body.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears a nice suit, the reasons not entirely clear to you.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a nice suit, the reasons not entirely clear to you.`, clothes: "nice business attire"}); + } } } @@ -10670,7 +10862,9 @@ window.saChoosesOwnClothes = (function() { /* quirks n flaws */ if(slave.behavioralFlaw == "arrogant") { - wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"}); + } } else if(slave.behavioralQuirk == "devout") { wardrobeTastes.push({text: `and wears something more appropriate for a monastery than a whorehouse.`, clothes: "a penitent nuns habit"}); } @@ -10695,14 +10889,23 @@ window.saChoosesOwnClothes = (function() { } if(slave.sexualQuirk == "romantic") { - wardrobeTastes.push({text: `and dresses up like ${he}'s about to go on a date.`, clothes: "a halter top dress"}); + if(isItemAccessible("a halter top dress")) { + wardrobeTastes.push({text: `and dresses up like ${he}'s about to go on a date.`, clothes: "a halter top dress"}); + } } else if(slave.sexualQuirk == "tease") { - wardrobeTastes.push({text: `and wears a set of provocatively designed lingerie.`, clothes: "kitty lingerie"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and wears a set of provocatively designed lingerie.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("panties and pasties")) { + wardrobeTastes.push({text: `and wears the skimpiest outfit ${he} can find.`, clothes: "panties and pasties"}); + } } /* age stuff */ if(slave.actualAge < 10) { - wardrobeTastes.push({text: `and puts on a pretty dress so ${he} can be a princess.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeTastes.push({text: `and puts on a pretty dress so ${he} can be a princess.`, clothes: "a ball gown"}); + } wardrobeTastes.push({text: `and dresses up like a cheerleader since ${he} thinks it looks cute.`, clothes: "a cheerleader outfit"}); if(isItemAccessible("a kimono")) { wardrobeTastes.push({text: `and wraps ${himself} in a kimono, since it feels so good on ${his} skin.`, clothes: "a kimono"}); @@ -10717,15 +10920,22 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `and wears restrictive latex to encourage others to dominate ${him}.`, clothes: "restrictive latex"}); wardrobeTastes.push({text: `and wears shibari ropes to encourage others to dominate ${him}.`, clothes: "shibari ropes"}); } else if(slave.fetish == "dom") { - wardrobeTastes.push({text: `and wears a handsome suit, since ${he} likes other slaves to look up to ${him}.`, clothes: "nice business attire"}); - wardrobeTastes.push({text: `and wears a full body latex catsuit to look the part of the whip cracking dom.`, clothes: "a latex catsuit"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a handsome suit, since ${he} likes other slaves to look up to ${him}.`, clothes: "nice business attire"}); + } + if(isItemAccessible("a latex catsuit")) { + wardrobeTastes.push({text: `and wears a full body latex catsuit to look the part of the whip cracking dom.`, clothes: "a latex catsuit"}); + } + wardrobeTastes.push({text: `and wears a scalemail bikini to make ${himself} look tough.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "masochist") { wardrobeTastes.push({text: `and wears painfully restrictive bondage gear, since ${he} likes the torment.`, clothes: "uncomfortable straps"}); if(isItemAccessible("chains")) { wardrobeTastes.push({text: `and wears painfully tight chains, since ${he} likes the torment.`, clothes: "chains"}); } } else if(slave.fetish == "sadist") { - wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${him} look fierce.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "cumslut") { wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${him} for blowjobs.`, clothes: "cutoffs and a t-shirt"}); @@ -10741,23 +10951,41 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.fetish == "boobs") { wardrobeTastes.push({text: `and wears a cheerleader outfit, since ${he} loves the way it hugs ${his} tits as ${he} moves.`, clothes: "a cheerleader outfit"}); - wardrobeTastes.push({text: `and wears a monokini, since ${he} loves how it leaves ${his} breasts totally bare.`, clothes: "a monokini"}); - wardrobeTastes.push({text: `and chooses a lingerie set that leaves ${his} cleavage on public display.`, clothes: "kitty lingerie"}); + if(isItemAccessible("a monokini")) { + wardrobeTastes.push({text: `and wears a monokini, since ${he} loves how it leaves ${his} breasts totally bare.`, clothes: "a monokini"}); + } + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and chooses a lingerie set that leaves ${his} cleavage on public display.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("pasties")) { + wardrobeTastes.push({text: `and wears nothing but a pair of pasties to draw eyes straight to ${his} nipples.`, clothes: "pasties"}); + } + if(isItemAccessible("a bra")) { + wardrobeTastes.push({text: `and wears nothing but a bra in the hopes that the outlandish get up fixes eyes on ${his} chest.`, clothes: "a bra"}); + } + wardrobeTastes.push({text: `and wears nothing but a pair of panties so ${his} tits can bounce freely.`, clothes: "panties"}); } } else { if(slave.fetish == "submissive") { wardrobeTastes.push({text: `and strangely opts for restrictive latex.`, clothes: "restrictive latex"}); wardrobeTastes.push({text: `and strangely opts for shibari ropes.`, clothes: "shibari ropes"}); } else if(slave.fetish == "dom") { - wardrobeTastes.push({text: `and wears a handsome suit; ${he} seems to think highly of ${himself} in it.`, clothes: "nice business attire"}); - wardrobeTastes.push({text: `and wears a full body latex catsuit; there is a strange look on ${his} face as ${he} wears it.`, clothes: "a latex catsuit"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a handsome suit; ${he} seems to think highly of ${himself} in it.`, clothes: "nice business attire"}); + } + if(isItemAccessible("a latex catsuit")) { + wardrobeTastes.push({text: `and wears a full body latex catsuit; there is a strange look on ${his} face as ${he} wears it.`, clothes: "a latex catsuit"}); + } + wardrobeTastes.push({text: `and wears a scalemail bikini; ${he} keeps flexing and acting tough to ${himself}.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "masochist") { wardrobeTastes.push({text: `and strangely opts for painfully restrictive bondage gear.`, clothes: "uncomfortable straps"}); if(isItemAccessible("chains")) { wardrobeTastes.push({text: `and strangely opts for painfully tight chains.`, clothes: "chains"}); } } else if(slave.fetish == "sadist") { - wardrobeTastes.push({text: `and wears an elegant gown for some reason.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears an elegant gown for some reason.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears a scalemail bikini; an odd choice.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "cumslut") { wardrobeTastes.push({text: `and wears cutoffs and a t-shirt; ${he} can't stop licking ${his} lips.`, clothes: "cutoffs and a t-shirt"}); @@ -10773,8 +11001,19 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.fetish == "boobs") { wardrobeTastes.push({text: `and wears a cheerleader outfit; ${he} seems to enjoy jiggling ${his} breasts in it.`, clothes: "a cheerleader outfit"}); - wardrobeTastes.push({text: `and strangely decides to wear a monokini, which leaves ${his} breasts totally bare.`, clothes: "a monokini"}); - wardrobeTastes.push({text: `and oddly chooses a lingerie set with a cleavage cutout in the bra.`, clothes: "kitty lingerie"}); + if(isItemAccessible("a monokini")) { + wardrobeTastes.push({text: `and strangely decides to wear a monokini, which leaves ${his} breasts totally bare.`, clothes: "a monokini"}); + } + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and oddly chooses a lingerie set with a cleavage cutout in the bra.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("pasties")) { + wardrobeTastes.push({text: `and oddly opts for just a pair of pasties attached to ${his} nipples.`, clothes: "pasties"}); + } + if(isItemAccessible("a bra")) { + wardrobeTastes.push({text: `and oddly opts for nothing more than a bra.`, clothes: "a bra"}); + } + wardrobeTastes.push({text: `and wears nothing but a pair of panties; ${he} seems to enjoy the way ${his} breasts bounce freely.`, clothes: "panties"}); } } @@ -10783,13 +11022,19 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `but goes nude, since as a nympho ${he} gets plenty of attention anyway, and considers clothes an unnecessary hindrance.`, clothes: "no clothing"}); } else if(slave.energy > 60) { wardrobeTastes.push({text: `and puts on some daring lingerie to draw attention to ${himself}.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and puts on some decorative lingerie to draw attention to ${himself}.`, clothes: "kitty lingerie"}); + wardrobeTastes.push({text: `and goes toplesss to draw attention to ${himself}.`, clothes: "panties"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and puts on some decorative lingerie to draw attention to ${himself}.`, clothes: "kitty lingerie"}); + } } /* pregnancy */ if(slave.belly >= 5000) { wardrobeTastes.push({text: `and wears pretty lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears cute lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "kitty lingerie"}); + wardrobeTastes.push({text: `and wears only panties. Something so easy to slit on is appreciable with such a big belly in the way.`, clothes: "panties"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and wears cute lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "kitty lingerie"}); + } if(isItemAccessible("attractive lingerie for a pregnant woman") && slave.energy > 70) { wardrobeTastes.push({text: `and wears pretty lingerie to show off ${his} merchandise and accentuate ${his} pregnancy while giving it plenty of room to hang free.`, clothes: "attractive lingerie for a pregnant woman"}); } else if(isItemAccessible("a maternity dress")) { diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index bcc25a9850c37ca2307ab82c1e172d39f64ba52b..04a9e8970b88e6d05de0ba3c168cc9fc59c84da4 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -2348,9 +2348,12 @@ clothes: may accept strings, use at own risk "a ball gown" "a biyelgee costume" +"a bra" "a bunny outfit" "a burkini" "a burqa" +"a button-up shirt" +"a button-up shirt and panties" "a chattel habit" "a cheerleader outfit" "a comfortable bodysuit" @@ -2358,11 +2361,14 @@ may accept strings, use at own risk "a dirndl" "a fallen nuns habit" "a Fuckdoll suit" +"a gothic lolita dress" "a halter top dress" +"a hanbok" "a hijab and abaya" "a hijab and blouse" "a huipil" "a kimono" +"a klan robe" "a latex catsuit" "a leotard" "a long qipao" @@ -2373,42 +2379,76 @@ may accept strings, use at own risk "a mounty outfit" "a nice maid outfit" "a nice nurse outfit" +"a nice pony outfit" "a niqab and abaya" +"a one-piece swimsuit" "a penitent nuns habit" "a red army uniform" "a scalemail bikini" "a schoolgirl outfit" "a schutzstaffel uniform" +"a skimpy loincloth" "a slave gown" +"a slutty klan robe" "a slutty maid outfit" "a slutty nurse outfit" "a slutty outfit" +"a slutty pony outfit" "a slutty qipao" "a slutty schutzstaffel uniform" +"a sports bra" "a string bikini" +"a striped bra" "a succubus outfit" +"a sweater" +"a sweater and cutoffs" +"a sweater and panties" +"a tank-top" +"a tank-top and panties" +"a thong" "a toga" +"a tube top" +"a tube top and thong" +"a t-shirt" +"a t-shirt and jeans" +"a t-shirt and panties" +"a t-shirt and thong" "an apron" +"an oversized t-shirt" +"an oversized t-shirt and boyshorts" "attractive lingerie" "attractive lingerie for a pregnant woman" "battlearmor" "battledress" "body oil" +"boyshorts" "chains" "clubslut netting" "conservative clothing" +"cutoffs" "cutoffs and a t-shirt" "harem gauze" +"jeans" "kitty lingerie" +"leather pants" +"leather pants and a tube top" +"leather pants and pasties" "lederhosen" "nice business attire" "no clothing" +"panties" +"panties and pasties" "restrictive latex" "shibari ropes" "slutty business attire" "slutty jewelry" "spats and a tank top" +"sport shorts" +"sport shorts and a sports bra" +"sport shorts and a t-shirt" "stretch pants and a crop-top" +"striped panties" +"striped underwear" "uncomfortable straps" "Western clothing" diff --git a/src/Mods/DinnerParty/dinnerPartyExecution.tw b/src/Mods/DinnerParty/dinnerPartyExecution.tw index c5ac000f98b891f9121c08510d362d5552feeeda..3babad84576de1df681256ae81d29ad78cbeb7b6 100644 --- a/src/Mods/DinnerParty/dinnerPartyExecution.tw +++ b/src/Mods/DinnerParty/dinnerPartyExecution.tw @@ -1,7 +1,7 @@ :: Dinner Party Execution [nobr] /% To MOD: insert the following code into the passage PC Name and Title %/ -/% <<if $MOD_DinnerPartyTitleAchievement is 1>><<if $PC.title gt 0>><<set $titles.push("Master of the Culinary Arts")>><<else>><<set $titles.push("Mistress of the Culinary Arts")>><</if>><</if>> %/ +/% <<if $MOD_DinnerPartyTitleAchievement == 1>><<if $PC.title > 0>><<set $titles.push("Master of the Culinary Arts")>><<else>><<set $titles.push("Mistress of the Culinary Arts")>><</if>><</if>> %/ <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main", $showEncyclopedia = 1, $encyclopedia = "Personal Assistant">> diff --git a/src/endWeek/saChoosesOwnClothes.tw b/src/endWeek/saChoosesOwnClothes.tw index 09988d25446b1db166ad8e7c15c27198ca91e33b..834934d48c87d17a74348ef7495d9d0a5d86c777 100644 --- a/src/endWeek/saChoosesOwnClothes.tw +++ b/src/endWeek/saChoosesOwnClothes.tw @@ -189,7 +189,7 @@ window.saChoosesOwnClothes = (function() { selection = {text: `${he} commonly sees others wearing tight, form-fitting clothes and is drawn to doing so ${himself}.`, clothes: jsEither(['a leotard', 'a string bikini', 'a slave gown', 'a comfortable bodysuit', 'restrictive latex', 'clubslut netting', 'a leotard', 'a halter top dress'])}; break; default: - selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: "attractive lingerie"}; + selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: jsEither(['attractive lingerie', 'panties'])}; break; } } @@ -218,21 +218,29 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and wears a slutty nurse outfit to make it clear just how much this nurse needs ${his} daily lay.`, clothes: "a slutty nurse outfit"}); } else if(slave.energy > 80) { wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show off ${his} body and arouse ${his} patients.`, clothes: "a slutty nurse outfit"}); - wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + if(isItemAccessible("a nice nurse outfit")) { + wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + } wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show to a little skin as ${he} cares for ${his} patients.`, clothes: "a slutty nurse outfit"}); } else { - wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + if(isItemAccessible("a nice nurse outfit")) { + wardrobeAssignment.push({text: `and wears a nice nurse outfit to look professional before ${his} patients.`, clothes: "a nice nurse outfit"}); + } wardrobeAssignment.push({text: `and wears a slutty nurse outfit to show to a little skin as ${he} cares for ${his} patients.`, clothes: "a slutty nurse outfit"}); } } else if(slave.assignment == "be the Madam") { if(slave.energy > 95 || slave.need > 100) { wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${him} from getting the sex ${he} needs.`, clothes: "slutty business attire"}); } else if(slave.energy > 80) { - wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); } else { - wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to entice and arouse while still looking managerial.`, clothes: "slutty business attire"}); } } else if(slave.assignment == "be the Milkmaid") { @@ -242,7 +250,9 @@ window.saChoosesOwnClothes = (function() { } wardrobeAssignment.push({text: `but goes nude to not be slowed down while moving between ${his} charges.`, clothes: "no clothing"}); } else { - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work with the cows.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work with the cows.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and decides to call it Casual Friday and wear nothing but cutoffs and a t-shirt. Not like the cows will mind.`, clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: `and opts to don a cheerleader outfit to help cheer the cows on.`, clothes: "a cheerleader outfit"}); wardrobeAssignment.push({text: `and dresses up as a succubus since ${he}'ll be drawing plenty of fluids.`, clothes: "a succubus outfit"}); @@ -276,12 +286,17 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("a mounty outfit")) { wardrobeAssignment.push({text: `and wears a mounty outfit to give ${him} that extra touch of authority.`, clothes: "a mounty outfit"}); } - wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"}); + } if(canPenetrate(slave)){ wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"}); } + wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"}); } else if(slave.assignment == "be the Schoolteacher") { - wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a slutty suit to give ${him} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"}); wardrobeAssignment.push({text: `and wears a schoolgirl outfit to help keep ${his} charges focused on ${him}.`, clothes: "a schoolgirl outfit"}); wardrobeAssignment.push({text: `and dresses up as a succubus to give ${his} sex lessons an extra kick.`, clothes: "a succubus outfit"}); @@ -315,7 +330,12 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.assignment == "be the Attendant") { wardrobeAssignment.push({text: `and wears a string bikini, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a string bikini"}); - wardrobeAssignment.push({text: `and wears an immodest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeAssignment.push({text: `and wears an one-piece swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"}); + } + if(isItemAccessible("one-piece swimsuit")) { + wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "one-piece swimsuit"}); + } if(isItemAccessible("a burkini")) { wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"}); } @@ -323,6 +343,7 @@ window.saChoosesOwnClothes = (function() { } else if(slave.assignment == "rest") { wardrobeAssignment.push({text: `and wears a comfortable t-shirt and cutoffs to relax.`, clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: `and slips into some attractive lingerie to enjoy ${himself} as ${he} unwinds.`, clothes: "attractive lingerie"}); + wardrobeAssignment.push({text: `and slips into nothing more than a pair of panties.`, clothes: "panties"}); wardrobeAssignment.push({text: `but decides that clothing takes too much work and would rather sleep nude.`, clothes: "no clothing"}); if(isItemAccessible("stretch pants and a crop-top")) { wardrobeAssignment.push({text: `and slips into some comfy stretch pants to relax.`, clothes: "stretch pants and a crop-top"}); @@ -358,7 +379,9 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("a red army uniform")) { wardrobeAssignment.push({text: `and wears a red army uniform to look the part of the honor guard.`, clothes: "a red army uniform"}); } - wardrobeAssignment.push({text: `and wears a nice suit to make it clear you mean business.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to make it clear you mean business.`, clothes: "nice business attire"}); + } if(isItemAccessible("a mounty outfit")) { wardrobeAssignment.push({text: `and wears a mounty outfit to make it clear you mean business.`, clothes: "a mounty outfit"}); } @@ -369,11 +392,17 @@ window.saChoosesOwnClothes = (function() { } else { /*Chooses clothes according to assignment (exceptions allowed)*/ if(slave.assignment == "recruit girls") { - wardrobeAssignment.push({text: `and wears a flattering mini dress to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a mini dress"}); + if(isItemAccessible("a mini dress")) { + wardrobeAssignment.push({text: `and wears a flattering mini dress to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a mini dress"}); + } wardrobeAssignment.push({text: `and wears a cutoffs and a t-shirt to appear sexy and carefree before those desperately seeking a better life.`, clothes: "cutoffs and a t-shirt"}); - wardrobeAssignment.push({text: `and wears a nice suit to appear trustworthy before those desperately seeking a better life.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeAssignment.push({text: `and wears a nice suit to appear trustworthy before those desperately seeking a better life.`, clothes: "nice business attire"}); + } wardrobeAssignment.push({text: `and wears a schoolgirl outfit to appear sexy and carefree before those desperately seeking a better life.`, clothes: "a schoolgirl outfit"}); - wardrobeAssignment.push({text: `and wears an opulent gown to showcase your wealth before those desperately seeking a better life.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeAssignment.push({text: `and wears an opulent gown to showcase your wealth before those desperately seeking a better life.`, clothes: "a ball gown"}); + } wardrobeAssignment.push({text: `and dresses as a succubus to attempt to lure any potential catches.`, clothes: "a succubus outfit"}); if(isItemAccessible("harem gauze")) { wardrobeAssignment.push({text: `and dons ${his} finest silks to showcase the luxuries waiting would-be slaves.`, clothes: "harem gauze"}); @@ -434,16 +463,22 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and accentuate ${his} pregnancy while still looking a little classy.`, clothes: "attractive lingerie for a pregnant woman"}); } wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little classy.`, clothes: "attractive lingerie"}); - wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little cute.`, clothes: "kitty lingerie"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeAssignment.push({text: `and wears pretty lingerie to show off ${his} merchandise and still look a little cute.`, clothes: "kitty lingerie"}); + } if(isItemAccessible("harem gauze")) { wardrobeAssignment.push({text: `and dresses ${himself} with harem gauze to add an exotic charm to ${his} display.`, clothes: "harem gauze"}); } if(isItemAccessible("a kimono")) { wardrobeAssignment.push({text: `and wraps ${himself} in a kimono to add some elegance to ${his} display.`, clothes: "a kimono"}); } - wardrobeAssignment.push({text: `and adorns ${himself} in fine dress to show off how much of a high class whore ${he} is.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeAssignment.push({text: `and adorns ${himself} in fine dress to show off how much of a high class whore ${he} is.`, clothes: "a slave gown"}); + } wardrobeAssignment.push({text: `and dresses ${himself} in a slutty suit to show ${he}'s in it for the ¤.`, clothes: "slutty business attire"}); - wardrobeAssignment.push({text: `and wears a flattering mini dress to really strut ${his} stuff.`, clothes: "a mini dress"}); + if(isItemAccessible("a mini dress")) { + wardrobeAssignment.push({text: `and wears a flattering mini dress to really strut ${his} stuff.`, clothes: "a mini dress"}); + } } else if(slave.assignment == "serve the public" || slave.assignment == "serve in the club") { wardrobeAssignment.push({text: `and wears string lingerie to look fun and fuckable.`, clothes: "a string bikini"}); wardrobeAssignment.push({text: `and throws together the sluttiest outfit since if you're going to slut you might as well go all out.`, clothes: "a slutty outfit"}); @@ -460,13 +495,20 @@ window.saChoosesOwnClothes = (function() { } else if(slave.assignment == "be a servant" || slave.assignment == "work as a servant") { if(slave.energy > 95 || slave.need > 100) { wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apron in the hopes that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "an apron"}); } else if(slave.energy > 80) { wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); } else { - wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + if(isItemAccessible("a nice maid outfit")) { + wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); + } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); + wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); } } @@ -513,11 +555,16 @@ window.saChoosesOwnClothes = (function() { } if(V.arcologies[0].FSMaturityPreferentialist > 0) { if(slave.visualAge >= 30) { - wardrobeFS.push({text: `and wears a formal suit to look like the ideal older woman.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeFS.push({text: `and wears a formal suit to look like the ideal older woman.`, clothes: "nice business attire"}); + } wardrobeFS.push({text: `and wears a slutty suit to look like the ideal horny older woman.`, clothes: "slutty business attire"}); wardrobeFS.push({text: `and wears only an apron to make ${himself} seem more matronly.`, clothes: "an apron"}); } else { - wardrobeFS.push({text: `and wears a formal suit to look more mature.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeFS.push({text: `and wears a formal suit to look more mature.`, clothes: "nice business attire"}); + } + wardrobeFS.push({text: `and wears only an apron in an attempt to make ${himself} seem more matronly.`, clothes: "an apron"}); } } else if(V.arcologies[0].FSYouthPreferentialist > 0) { wardrobeFS.push({text: `and wears a schoolgirl outfit to look younger.`, clothes: "a schoolgirl outfit"}); @@ -535,7 +582,12 @@ window.saChoosesOwnClothes = (function() { } if(V.arcologies[0].FSPastoralist > 0) { wardrobeFS.push({text: `and wears Western clothing, since ${he} thinks it fits with pastoralism.`, clothes: "Western clothing"}); - wardrobeFS.push({text: `and wears a swimsuit that leaves ${his} breasts uncovered.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push({text: `and wears a swimsuit that leaves ${his} breasts uncovered.`, clothes: "a monokini"}); + } + if(isItemAccessible("pasties")) { + wardrobeFS.push({text: `and wears nothing more than a pair of pasties over ${his} nipples.`, clothes: "pasties"}); + } if(slave.lactation > 0) { wardrobeFS.push({text: `and dresses up as a slutty wet nurse.`, clothes: "a slutty nurse outfit"}); } @@ -558,11 +610,16 @@ window.saChoosesOwnClothes = (function() { 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 ${his} assets look even larger.`, clothes: "a string bikini"}); wardrobeFS.push({text: `and decides to throw together a slutty outfit that highlight ${his} 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"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push ({text: `and decides to wear a monokini that clings to the assets it actually does conceal.`, clothes: "a monokini"}); + } } else if(V.arcologies[0].FSSlimnessEnthusiast > 0) { if(slave.boobs < 300) { wardrobeFS.push({text: `and wears a string bikini to show off just how flat ${he} is.`, clothes: "a string bikini"}); - wardrobeFS.push({text: `and wears a monokini that leaves ${his} flat chest bare.`, clothes: "a monokini"}); + if(isItemAccessible("a monokini")) { + wardrobeFS.push({text: `and wears a monokini that leaves ${his} flat chest bare.`, clothes: "a monokini"}); + } + wardrobeFS.push({text: `and wears only panties, leaving ${his} flat chest bare.`, clothes: "panties"}); } if(slave.boobs < 600 && slave.butt < 3) { wardrobeFS.push({text: `and wears a leotard to show off ${his} lithe body.`, clothes: "a leotard"}); @@ -626,13 +683,21 @@ window.saChoosesOwnClothes = (function() { } if(slave.attrXX > 70) { if(slave.attrKnown == 1) { - wardrobeTastes.push({text: `and wears a fashionable gown, since girls appreciate nice clothes.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears a fashionable gown, since girls appreciate nice clothes.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears nothing but pretty lingerie to give the girls a show.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears a nice suit, since girls appreciate nice clothes.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a nice suit, since girls appreciate nice clothes.`, clothes: "nice business attire"}); + } } else { - wardrobeTastes.push({text: `and wears a fashionable gown.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears a fashionable gown.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears pretty lingerie that shows off ${his} body.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears a nice suit, the reasons not entirely clear to you.`, clothes: "nice business attire"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a nice suit, the reasons not entirely clear to you.`, clothes: "nice business attire"}); + } } } @@ -647,7 +712,9 @@ window.saChoosesOwnClothes = (function() { /* quirks n flaws */ if(slave.behavioralFlaw == "arrogant") { - wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeTastes.push({text: `and chooses a formal dress that makes ${him} feel like royalty.`, clothes: "a ball gown"}); + } } else if(slave.behavioralQuirk == "devout") { wardrobeTastes.push({text: `and wears something more appropriate for a monastery than a whorehouse.`, clothes: "a penitent nuns habit"}); } @@ -672,14 +739,23 @@ window.saChoosesOwnClothes = (function() { } if(slave.sexualQuirk == "romantic") { - wardrobeTastes.push({text: `and dresses up like ${he}'s about to go on a date.`, clothes: "a halter top dress"}); + if(isItemAccessible("a halter top dress")) { + wardrobeTastes.push({text: `and dresses up like ${he}'s about to go on a date.`, clothes: "a halter top dress"}); + } } else if(slave.sexualQuirk == "tease") { - wardrobeTastes.push({text: `and wears a set of provocatively designed lingerie.`, clothes: "kitty lingerie"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and wears a set of provocatively designed lingerie.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("panties and pasties")) { + wardrobeTastes.push({text: `and wears the skimpiest outfit ${he} can find.`, clothes: "panties and pasties"}); + } } /* age stuff */ if(slave.actualAge < 10) { - wardrobeTastes.push({text: `and puts on a pretty dress so ${he} can be a princess.`, clothes: "a ball gown"}); + if(isItemAccessible("a ball gown")) { + wardrobeTastes.push({text: `and puts on a pretty dress so ${he} can be a princess.`, clothes: "a ball gown"}); + } wardrobeTastes.push({text: `and dresses up like a cheerleader since ${he} thinks it looks cute.`, clothes: "a cheerleader outfit"}); if(isItemAccessible("a kimono")) { wardrobeTastes.push({text: `and wraps ${himself} in a kimono, since it feels so good on ${his} skin.`, clothes: "a kimono"}); @@ -694,15 +770,22 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `and wears restrictive latex to encourage others to dominate ${him}.`, clothes: "restrictive latex"}); wardrobeTastes.push({text: `and wears shibari ropes to encourage others to dominate ${him}.`, clothes: "shibari ropes"}); } else if(slave.fetish == "dom") { - wardrobeTastes.push({text: `and wears a handsome suit, since ${he} likes other slaves to look up to ${him}.`, clothes: "nice business attire"}); - wardrobeTastes.push({text: `and wears a full body latex catsuit to look the part of the whip cracking dom.`, clothes: "a latex catsuit"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a handsome suit, since ${he} likes other slaves to look up to ${him}.`, clothes: "nice business attire"}); + } + if(isItemAccessible("a latex catsuit")) { + wardrobeTastes.push({text: `and wears a full body latex catsuit to look the part of the whip cracking dom.`, clothes: "a latex catsuit"}); + } + wardrobeTastes.push({text: `and wears a scalemail bikini to make ${himself} look tough.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "masochist") { wardrobeTastes.push({text: `and wears painfully restrictive bondage gear, since ${he} likes the torment.`, clothes: "uncomfortable straps"}); if(isItemAccessible("chains")) { wardrobeTastes.push({text: `and wears painfully tight chains, since ${he} likes the torment.`, clothes: "chains"}); } } else if(slave.fetish == "sadist") { - wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${him} look fierce.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "cumslut") { wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${him} for blowjobs.`, clothes: "cutoffs and a t-shirt"}); @@ -718,23 +801,41 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.fetish == "boobs") { wardrobeTastes.push({text: `and wears a cheerleader outfit, since ${he} loves the way it hugs ${his} tits as ${he} moves.`, clothes: "a cheerleader outfit"}); - wardrobeTastes.push({text: `and wears a monokini, since ${he} loves how it leaves ${his} breasts totally bare.`, clothes: "a monokini"}); - wardrobeTastes.push({text: `and chooses a lingerie set that leaves ${his} cleavage on public display.`, clothes: "kitty lingerie"}); + if(isItemAccessible("a monokini")) { + wardrobeTastes.push({text: `and wears a monokini, since ${he} loves how it leaves ${his} breasts totally bare.`, clothes: "a monokini"}); + } + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and chooses a lingerie set that leaves ${his} cleavage on public display.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("pasties")) { + wardrobeTastes.push({text: `and wears nothing but a pair of pasties to draw eyes straight to ${his} nipples.`, clothes: "pasties"}); + } + if(isItemAccessible("a bra")) { + wardrobeTastes.push({text: `and wears nothing but a bra in the hopes that the outlandish get up fixes eyes on ${his} chest.`, clothes: "a bra"}); + } + wardrobeTastes.push({text: `and wears nothing but a pair of panties so ${his} tits can bounce freely.`, clothes: "panties"}); } } else { if(slave.fetish == "submissive") { wardrobeTastes.push({text: `and strangely opts for restrictive latex.`, clothes: "restrictive latex"}); wardrobeTastes.push({text: `and strangely opts for shibari ropes.`, clothes: "shibari ropes"}); } else if(slave.fetish == "dom") { - wardrobeTastes.push({text: `and wears a handsome suit; ${he} seems to think highly of ${himself} in it.`, clothes: "nice business attire"}); - wardrobeTastes.push({text: `and wears a full body latex catsuit; there is a strange look on ${his} face as ${he} wears it.`, clothes: "a latex catsuit"}); + if(isItemAccessible("nice business attire")) { + wardrobeTastes.push({text: `and wears a handsome suit; ${he} seems to think highly of ${himself} in it.`, clothes: "nice business attire"}); + } + if(isItemAccessible("a latex catsuit")) { + wardrobeTastes.push({text: `and wears a full body latex catsuit; there is a strange look on ${his} face as ${he} wears it.`, clothes: "a latex catsuit"}); + } + wardrobeTastes.push({text: `and wears a scalemail bikini; ${he} keeps flexing and acting tough to ${himself}.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "masochist") { wardrobeTastes.push({text: `and strangely opts for painfully restrictive bondage gear.`, clothes: "uncomfortable straps"}); if(isItemAccessible("chains")) { wardrobeTastes.push({text: `and strangely opts for painfully tight chains.`, clothes: "chains"}); } } else if(slave.fetish == "sadist") { - wardrobeTastes.push({text: `and wears an elegant gown for some reason.`, clothes: "a slave gown"}); + if(isItemAccessible("a slave gown")) { + wardrobeTastes.push({text: `and wears an elegant gown for some reason.`, clothes: "a slave gown"}); + } wardrobeTastes.push({text: `and wears a scalemail bikini; an odd choice.`, clothes: "a scalemail bikini"}); } else if(slave.fetish == "cumslut") { wardrobeTastes.push({text: `and wears cutoffs and a t-shirt; ${he} can't stop licking ${his} lips.`, clothes: "cutoffs and a t-shirt"}); @@ -750,8 +851,19 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.fetish == "boobs") { wardrobeTastes.push({text: `and wears a cheerleader outfit; ${he} seems to enjoy jiggling ${his} breasts in it.`, clothes: "a cheerleader outfit"}); - wardrobeTastes.push({text: `and strangely decides to wear a monokini, which leaves ${his} breasts totally bare.`, clothes: "a monokini"}); - wardrobeTastes.push({text: `and oddly chooses a lingerie set with a cleavage cutout in the bra.`, clothes: "kitty lingerie"}); + if(isItemAccessible("a monokini")) { + wardrobeTastes.push({text: `and strangely decides to wear a monokini, which leaves ${his} breasts totally bare.`, clothes: "a monokini"}); + } + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and oddly chooses a lingerie set with a cleavage cutout in the bra.`, clothes: "kitty lingerie"}); + } + if(isItemAccessible("pasties")) { + wardrobeTastes.push({text: `and oddly opts for just a pair of pasties attached to ${his} nipples.`, clothes: "pasties"}); + } + if(isItemAccessible("a bra")) { + wardrobeTastes.push({text: `and oddly opts for nothing more than a bra.`, clothes: "a bra"}); + } + wardrobeTastes.push({text: `and wears nothing but a pair of panties; ${he} seems to enjoy the way ${his} breasts bounce freely.`, clothes: "panties"}); } } @@ -760,13 +872,19 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `but goes nude, since as a nympho ${he} gets plenty of attention anyway, and considers clothes an unnecessary hindrance.`, clothes: "no clothing"}); } else if(slave.energy > 60) { wardrobeTastes.push({text: `and puts on some daring lingerie to draw attention to ${himself}.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and puts on some decorative lingerie to draw attention to ${himself}.`, clothes: "kitty lingerie"}); + wardrobeTastes.push({text: `and goes toplesss to draw attention to ${himself}.`, clothes: "panties"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and puts on some decorative lingerie to draw attention to ${himself}.`, clothes: "kitty lingerie"}); + } } /* pregnancy */ if(slave.belly >= 5000) { wardrobeTastes.push({text: `and wears pretty lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and wears cute lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "kitty lingerie"}); + wardrobeTastes.push({text: `and wears only panties. Something so easy to slit on is appreciable with such a big belly in the way.`, clothes: "panties"}); + if(isItemAccessible("kitty lingerie")) { + wardrobeTastes.push({text: `and wears cute lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "kitty lingerie"}); + } if(isItemAccessible("attractive lingerie for a pregnant woman") && slave.energy > 70) { wardrobeTastes.push({text: `and wears pretty lingerie to show off ${his} merchandise and accentuate ${his} pregnancy while giving it plenty of room to hang free.`, clothes: "attractive lingerie for a pregnant woman"}); } else if(isItemAccessible("a maternity dress")) { diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 4aeab96bde9f794ff791e345449a3f351f1aa8ed..4a08a1aa3889e4b0c98a9d3cc7b8e21eface1944 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -853,6 +853,14 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $clothesBoughtMiddleEastern = 0>> <<set $clothesBoughtPol = 0>> <<set $clothesBoughtPantsu = 0>> +<<set $clothesBoughtCareer = 0>> +<<set $clothesBoughtDresses = 0>> +<<set $clothesBoughtBodysuits = 0>> +<<set $clothesBoughtCasual = 0>> +<<set $clothesBoughtUnderwear = 0>> +<<set $clothesBoughtSports = 0>> +<<set $clothesBoughtPony = 0>> +<<set $clothesBoughtSwimwear = 0>> <<set $toysBoughtDildos = 0>> <<set $toysBoughtGags = 0>> <<set $toysBoughtButtPlugs = 0>> diff --git a/src/js/itemAvailability.tw b/src/js/itemAvailability.tw index 60faf150472e61187b9b937aa574bb97a6dec2c3..26ebde910dbf4bc7ae6dd6d08a872e3f4ec07810 100644 --- a/src/js/itemAvailability.tw +++ b/src/js/itemAvailability.tw @@ -130,6 +130,7 @@ window.isItemAccessible = function(string) { case 'a dirndl': case 'lederhosen': case 'a mounty outfit': + case 'a hanbok': if (V.clothesBoughtCultural === 1) { return true; } else { @@ -149,6 +150,7 @@ window.isItemAccessible = function(string) { break; case 'a klan robe': + case 'a slutty klan robe': case 'a schutzstaffel uniform': case 'a slutty schutzstaffel uniform': if (V.clothesBoughtPol === 1) { @@ -158,7 +160,132 @@ window.isItemAccessible = function(string) { } break; + case 'a nice nurse outfit': + case 'a police uniform': + case 'nice business attire': + if (V.clothesBoughtCareer === 1) { + return true; + } else { + return false; + } + break; + + case 'a nice maid outfit': + if (V.clothesBoughtCareer === 1 || V.PC.career === 'servant') { + return true; + } else { + return false; + } + break; + + case 'a ball gown': + case 'a gothic lolita dress': + case 'a halter top dress': + case 'a mini dress': + case 'a slave gown': + if (V.clothesBoughtDresses === 1) { + return true; + } else { + return false; + } + break; + + case 'a cybersuit': + case 'a latex catsuit': + if (V.clothesBoughtBodysuits === 1) { + return true; + } else { + return false; + } + break; + + case 'a button-up shirt and panties': + case 'a button-up shirt': + case 'cutoffs': + case 'jeans': + case 'leather pants and a tube top': + case 'leather pants': + case 'an oversized t-shirt': + case 'a sweater and cutoffs': + case 'a sweater and panties': + case 'a sweater': + case 'a t-shirt and jeans': + case 'a t-shirt and panties': + case 'a t-shirt': + case 'a tank-top and panties': + case 'a tank-top': + case 'a tube top': + if (V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'boyshorts': + case 'a bra': + case 'kitty lingerie': + case 'panties and pasties': + case 'a skimpy loincloth': + case 'a thong': + if (V.clothesBoughtUnderwear === 1) { + return true; + } else { + return false; + } + break; + + case 'leather pants and pasties': + case 'a t-shirt and thong': + case 'a tube top and thong': + case 'an oversized t-shirt and boyshorts': + if (V.clothesBoughtUnderwear === 1 && V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'sport shorts and a sports bra': + case 'sport shorts': + case 'a sports bra': + if (V.clothesBoughtSports === 1) { + return true; + } else { + return false; + } + break; + + case 'sport shorts and a t-shirt': + if (V.clothesBoughtSports === 1 && V.clothesBoughtCasual === 1) { + return true; + } else { + return false; + } + break; + + case 'a nice pony outfit': + case 'a slutty pony outfit': + if (V.clothesBoughtPony === 1) { + return true; + } else { + return false; + } + break; + + case 'a monokini': + case 'a one-piece swimsuit': + if (V.clothesBoughtSwimwear === 1) { + return true; + } else { + return false; + } + break; + case 'shimapan panties': + case 'a striped bra': + case 'striped panties': + case 'striped underwear': if (V.clothesBoughtPantsu === 1 || V.continent === 'Japan') { return true; } else { diff --git a/src/pregmod/pAssociatesPublicSlut.tw b/src/pregmod/pAssociatesPublicSlut.tw index 24fa22ceba702784fbcf9f2598597959746dd2df..2751543f33fc82bf1c3d2b61631e93a6e73481b0 100644 --- a/src/pregmod/pAssociatesPublicSlut.tw +++ b/src/pregmod/pAssociatesPublicSlut.tw @@ -17,11 +17,11 @@ You take a detour down one of the minor byways that feed into the Promenade prop <br><br> <<if _num < $seeDicks>> - The one restraining him is a business associate of yours. She's a beautiful woman who cuts a gorgeous figure in her expensive, tasteful business attire. You have some rapport with one another and she greets you cheerily and you make small talk as she finishes up shackling her newly minted slave. He was, she explains, her boyfriend, who had accrued significant debt due to his severe lack of business sense and tact. She had bought out his debt in order to save him from enslavement, only to find out not long after that he had been cheating on her with another free woman. Since she owned his debt, it took only a few formalities to turn him into her property as revenge. "Since he likes sluts so much, I'm going to turn him into one!" She giggles, while stroking the struggling traps luxurious bleach blond hair. Her eyes light up as her gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to her. She reaches around her slave and spreads his ass cheeks. "<<if $dick>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked him!" + The one restraining him is a business associate of yours. She's a beautiful woman who cuts a gorgeous figure in her expensive, tasteful business attire. You have some rapport with one another and she greets you cheerily and you make small talk as she finishes up shackling her newly minted slave. He was, she explains, her boyfriend, who had accrued significant debt due to his severe lack of business sense and tact. She had bought out his debt in order to save him from enslavement, only to find out not long after that he had been cheating on her with another free woman. Since she owned his debt, it took only a few formalities to turn him into her property as revenge. "Since he likes sluts so much, I'm going to turn him into one!" She giggles, while stroking the struggling traps luxurious bleach blond hair. Her eyes light up as her gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to her. She reaches around her slave and spreads his ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked him!" You consider the slave's anus. Your associate has clearly spent all day customising her new toy, it looks freshly bleached and is smooth and inviting. It effectively has been transformed into a sex organ. <<else>> - The one restraining her is a business associate of yours. He's a well built man who cuts a handsome figure in his expensive, tasteful business attire. You have some rapport with one another and he greets you cheerily and you make small talk as he finishes up shackling his newly minted slave. She was, he explains, his girlfriend, who had accrued significant debt due to her severe lack of business sense and tact. He had bought out her debt in order to save her from enslavement, only to find out not long after that she had been cheating on him with another free woman. Since he owned her debt, it took only a few formalities to turn her into his property as revenge. "She was already a slut, Ive simply made her look the part, and play it more honestly!" he chuckles, while fondling the struggling bimbo's ample ass. He favors you with a rueful smile as his gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to him. He reaches around his slave and spreads her ass cheeks. "<<if $dick>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked her! Ive had her hymen restored just a few hours ago, first time is all yours if you want it." + The one restraining her is a business associate of yours. He's a well built man who cuts a handsome figure in his expensive, tasteful business attire. You have some rapport with one another and he greets you cheerily and you make small talk as he finishes up shackling his newly minted slave. She was, he explains, his girlfriend, who had accrued significant debt due to her severe lack of business sense and tact. He had bought out her debt in order to save her from enslavement, only to find out not long after that she had been cheating on him with another free woman. Since he owned her debt, it took only a few formalities to turn her into his property as revenge. "She was already a slut, Ive simply made her look the part, and play it more honestly!" he chuckles, while fondling the struggling bimbo's ample ass. He favors you with a rueful smile as his gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to him. He reaches around his slave and spreads her ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked her! Ive had her hymen restored just a few hours ago, first time is all yours if you want it." You consider the slave's pussy. Your associate has clearly spent all day customising his new toy, it looks tight and inviting. Surprisingly, she's quite moist, indicating that in spite of her struggling, she's actually rather aroused, seems she has a bit of a fetish for humiliation. She'll assuredly make an excellent slave if thats the case. <</if>> @@ -32,9 +32,9 @@ You take a detour down one of the minor byways that feed into the Promenade prop <<link "Give <<if _num < $seeDicks>>him his<<else>>her the<</if>> first taste of slave life">> <<replace "#result">> <<if _num < $seeDicks>> - Taking a slaves anal virginity is hardly novel for you, yet somehow it never stops being fun. You grab the bottle of lubricant your associate has left out for use and begin to generously lubricate his asshole <<if $dick == 0>>. You also reach for one of the brand new strapons she has left out for ladies who wish to avail of her slut, tearing it eagerly from its box.<<else>>.<</if>> He begins to moan as you gently probe his anus with the tip of <<if $dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to his petite, feminine waist as you work, occasionally using one hand to hold him roughly by the hair, neck or shoulder, or to smack his butt. Your business associate makes no attempt to hide her obvious arousal at the sight of <<if $dick == 0>>the formidable dildo<<else>>your formidable cock<</if>> pounding some obedience into her slave, and flirts shamelessly with you as you work. <<if $dick == 0>>The slave climaxes, and while you dont quite join him, watching him squirm helplessly underneath you as you used his ass has left you instensely aroused.<<else>>The slaves tight anal muscles massage your cock as he orgasms, bringing you to climax as well.<</if>> Your associate's faced is flushed after the spectacle, though considering the disappointing size of her new slaves penis its hardly surprising that she's so thirsty for male attention. She offers to "serve you some refreshments" back at her apartment, an offer you happily take her up on. As you depart with her, a mass of curious socialites converge on the helpless sissy, eager to try his asshole out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made him very very fashionable. + Taking a slaves anal virginity is hardly novel for you, yet somehow it never stops being fun. You grab the bottle of lubricant your associate has left out for use and begin to generously lubricate his asshole <<if $PC.dick == 0>>. You also reach for one of the brand new strapons she has left out for ladies who wish to avail of her slut, tearing it eagerly from its box.<<else>>.<</if>> He begins to moan as you gently probe his anus with the tip of <<if $PC.dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to his petite, feminine waist as you work, occasionally using one hand to hold him roughly by the hair, neck or shoulder, or to smack his butt. Your business associate makes no attempt to hide her obvious arousal at the sight of <<if $PC.dick == 0>>the formidable dildo<<else>>your formidable cock<</if>> pounding some obedience into her slave, and flirts shamelessly with you as you work. <<if $PC.dick == 0>>The slave climaxes, and while you dont quite join him, watching him squirm helplessly underneath you as you used his ass has left you instensely aroused.<<else>>The slaves tight anal muscles massage your cock as he orgasms, bringing you to climax as well.<</if>> Your associate's faced is flushed after the spectacle, though considering the disappointing size of her new slaves penis its hardly surprising that she's so thirsty for male attention. She offers to "serve you some refreshments" back at her apartment, an offer you happily take her up on. As you depart with her, a mass of curious socialites converge on the helpless sissy, eager to try his asshole out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made him very very fashionable. <<else>> - Taking a slaves virginity is hardly novel for you, yet somehow it never stops being fun. You consider the bottle of lubricant your associate has left out for use and then decide it's unnecessary, since the slutty bitch is already quite wet.<<if $dick == 0>>. You do however reach for one of the brand new strapons he has left out for ladies who wish to avail of his slut, tearing it eagerly from its box.<<else>>.<</if>> She begins to moan as you gently probe her pussy with the tip of <<if $dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to her petite, feminine waist as you work, occasionally using one hand to hold her roughly by the hair, neck or shoulder, or to smack her butt. Your business associate can't keep the smug smile off his face as he watches you pound some obedience into his slave. You know nothing puts a bitch in her place harder than discovering the secret rapture of being fucked just the way she didn't even know she likes it, and focus on exploiting her apparent humiliation fetish.<<if $dick == 0>> She climaxes indecently hard from your expert, hard, but just tender enough loving.<<else>> Her tight pussy brings you to climax after a hard fucking and the sensation of being filled with your semen is enough to bring about her orgasm as well.<</if>> Your associate is extremely impressed with your performance and eager to ask for some slave-breaking tips. You're more than happy to offer a little advice, considering hes new to the game, and the two of you walk off together to find somewhere where you can get refreshments as you discuss. As you depart, a mass of curious socialites converge on the helpless slut, eager to try her holes out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made her very very fashionable. + Taking a slaves virginity is hardly novel for you, yet somehow it never stops being fun. You consider the bottle of lubricant your associate has left out for use and then decide it's unnecessary, since the slutty bitch is already quite wet.<<if $PC.dick == 0>>. You do however reach for one of the brand new strapons he has left out for ladies who wish to avail of his slut, tearing it eagerly from its box.<<else>>.<</if>> She begins to moan as you gently probe her pussy with the tip of <<if $PC.dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to her petite, feminine waist as you work, occasionally using one hand to hold her roughly by the hair, neck or shoulder, or to smack her butt. Your business associate can't keep the smug smile off his face as he watches you pound some obedience into his slave. You know nothing puts a bitch in her place harder than discovering the secret rapture of being fucked just the way she didn't even know she likes it, and focus on exploiting her apparent humiliation fetish.<<if $PC.dick == 0>> She climaxes indecently hard from your expert, hard, but just tender enough loving.<<else>> Her tight pussy brings you to climax after a hard fucking and the sensation of being filled with your semen is enough to bring about her orgasm as well.<</if>> Your associate is extremely impressed with your performance and eager to ask for some slave-breaking tips. You're more than happy to offer a little advice, considering hes new to the game, and the two of you walk off together to find somewhere where you can get refreshments as you discuss. As you depart, a mass of curious socialites converge on the helpless slut, eager to try her holes out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made her very very fashionable. <</if>> Your citizens @@.green;appreciated@@ the vigorous show you put on, and the fact that you are @@.green;not too snobby@@ to enjoy the simple pleasure of availing of a public whore once in a while. <<set $rep += 100>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index d3d678e178a16c69778e7fc601b6f83e836f6c86..d32646be83a8a5c5cc9312c8c3b81792b9bfc038 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -2067,6 +2067,30 @@ Setting missing global variables: <<if ndef $clothesBoughtPantsu>> <<set $clothesBoughtPantsu = 0>> <</if>> +<<if ndef $clothesBoughtCareer>> + <<set $clothesBoughtCareer = 0>> +<</if>> +<<if ndef $clothesBoughtDresses>> + <<set $clothesBoughtDresses = 0>> +<</if>> +<<if ndef $clothesBoughtBodysuits>> + <<set $clothesBoughtBodysuits = 0>> +<</if>> +<<if ndef $clothesBoughtCasual>> + <<set $clothesBoughtCasual = 0>> +<</if>> +<<if ndef $clothesBoughtUnderwear>> + <<set $clothesBoughtUnderwear = 0>> +<</if>> +<<if ndef $clothesBoughtSports>> + <<set $clothesBoughtSports = 0>> +<</if>> +<<if ndef $clothesBoughtPony>> + <<set $clothesBoughtPony = 0>> +<</if>> +<<if ndef $clothesBoughtSwimwear>> + <<set $clothesBoughtSwimwear = 0>> +<</if>> <<if ndef $buckets>> <<set $buckets = 0>> <</if>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index f535a5ae6a58f6cb01cf4e72777af2aa5f4dc08e..0dc906bf42845f3557aabf076b4798f759f66e12 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -619,9 +619,9 @@ $activeSlave.slaveName chuckles into $subSlave.slaveName's ear, crooning, "You <<s>>tupid <<s>>lut. Too bad you never went to <<s>>chool, maybe you could have learned <<s>>omething and not ended up a<<s>> a fuck <<s>>lave." <</if>> <<if SlaveStatsChecker.checkForLisp($activeSlave)>> - <<set _heP = lispReplace($PC.pronoun), _HeP = lispReplace(capFirstChar(_pcPronoun)), _hisP = lispReplace($PC.possessive)>> + <<set _heP = lispReplace($PC.pronoun), _HeP = lispReplace(capFirstChar(_heP)), _hisP = lispReplace($PC.possessive)>> <<else>> - <<set _heP = $PC.pronoun, _HeP = capFirstChar(_pcPronoun), _hisP = $PC.possessive>> + <<set _heP = $PC.pronoun, _HeP = capFirstChar(_heP), _hisP = $PC.possessive>> <</if>> $He grinds against the wilting $subSlave.slaveName, and then continues, "I felt your <<if ($activeSlave.butt > 4)>>fat butt<<elseif ($activeSlave.butt > 2)>>big butt<<else>>tiny little butt<</if>> clench ju<<s>>t now." $He gives $subSlave.slaveName's <<if ($subSlave.balls > 0 && $subSlave.scrotum > 0)>>balls a gentle squeeze<<elseif ($subSlave.dick > 0)>>dick a gentle tug<<elseif $subSlave.vagina == -1>>butthole a gentle massage<<else>>pussylips a gentle massage<</if>>. "_HeP ha<<s>>n't fucked you back there yet, ha<<s>> _heP? It'<<s>> going to hurt, you little bitch. _HeP'<<s>> going to hold you down and <<sh>>ove _hisP <<if $PC.dick == 1>>huge cockhead<<else>>bigge<<s>>t <<s>>trap-on<</if>> right up again<<s>>t thi<<s>> tight little hole." $He gropes the quivering slave's virgin anus, careful not to penetrate it. "You're going to do your be<<s>>t to relax like a good little _girl2. But it'<<s>> going to be so big. It'<<s>> going to burn. And then you're going to panic, and <<s>>truggle, and _heP'<<s>> going to hold you down and rape your butt while you <<s>>cream and cry." <br><br> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 5aa6cd7b17fd2b44b35bdceb8b43a7d716b5e25d..dfd4f10bcc2479a702452e8819064e6c5f8815bd 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -114,7 +114,7 @@ As you step off the elevator, you hear female shouting. Apparently one of $arcol <<slaveCost $activeSlave>> One day, you walk by the commercial space where the strip club that closed was located. It's now advertised as a massage parlor, and indeed, you can see a couple of competent-looking, modestly dressed masseuses seeing to clients. The only chink in the old world decorum is the pretty sign detailing pricing, which lists not only various massages but the masseuses' hands, breasts, mouths, pussies, and anuses. <br><br> - As you pass, a pretty streetwalker walking by wearing an attractive club girl outfit sidles up to you. $He's halfway through $his first flirty come-on before $he recognizes you. $He gasps and <<say>>s, "You own thi<<s>> arcology! <<if PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I wa<<s>> a <<s>>tripper here! Thank you <<s>>o much for helping u<<s>>. That money <<s>>et mo<<s>>t of u<<s>> up pretty well." $He hefts $his chest. "It bought me new boob<<s>>, that'<<s>> for <<s>>ure. <<S>>o, um," $he bites $his lip in indecision, "I hear -" $he hesitates and then the words come out in a rush. "I hear your girl<<s>> do really well. I've <<s>>een them, they look good. Can I come?" You arch an eyebrow and begin to ask whether $he knows what that means. "Yep," $he interrupts. "I'll be your <<s>>e<<x>> <<s>>lave." + As you pass, a pretty streetwalker walking by wearing an attractive club girl outfit sidles up to you. $He's halfway through $his first flirty come-on before $he recognizes you. $He gasps and <<say>>s, "You own thi<<s>> arcology! <<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I wa<<s>> a <<s>>tripper here! Thank you <<s>>o much for helping u<<s>>. That money <<s>>et mo<<s>>t of u<<s>> up pretty well." $He hefts $his chest. "It bought me new boob<<s>>, that'<<s>> for <<s>>ure. <<S>>o, um," $he bites $his lip in indecision, "I hear -" $he hesitates and then the words come out in a rush. "I hear your girl<<s>> do really well. I've <<s>>een them, they look good. Can I come?" You arch an eyebrow and begin to ask whether $he knows what that means. "Yep," $he interrupts. "I'll be your <<s>>e<<x>> <<s>>lave." <br><br> //Enslaving $him will cost <<print cashFormat($contractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat($slaveCost)>>.// <br><br> diff --git a/src/uncategorized/seWedding.tw b/src/uncategorized/seWedding.tw index 84fe89ee8127aece8700093b420e239c9d2e63fd..9f4c004a2048228b9b7f199bb82aaff008d8d110 100644 --- a/src/uncategorized/seWedding.tw +++ b/src/uncategorized/seWedding.tw @@ -390,7 +390,7 @@ <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> scoffs audibly. Just another burden for her to carry; like the child soon to be growing in her womb. <<elseif $activeSlave.devotion < -20>> - Tbreaks down again. Not only are you binding her to you with your child, but with your name as well. + breaks down again. Not only are you binding her to you with your child, but with your name as well. <<else>> nods acceptingly. Your will is her will, after all. <</if>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index dcec7cd499af6bf3356edc89857f2378a30d5892..9d8c7cda179461c0cde199a58fbd5fc881646830 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -650,90 +650,220 @@ <br> //Nice:// <<link "Apron">><<set $activeSlave.clothes = "an apron",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Ballgown">><<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a ball gown")>> + | <<link "Ballgown">><<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Bangles">><<set $activeSlave.clothes = "slutty jewelry",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Battlearmor">><<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Battledress">><<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Biyelgee costume">><<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("battlearmor")>> + | <<link "Battlearmor">><<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("battledress")>> + | <<link "Battledress">><<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a biyelgee costume")>> + | <<link "Biyelgee costume">><<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Bodysuit">><<set $activeSlave.clothes = "a comfortable bodysuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Boyshorts">><<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Bra">><<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Burkini">><<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Burqa">><<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Button-up shirt and panties">><<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Button-up shirt">><<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("boyshorts")>> + | <<link "Boyshorts">><<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a bra")>> + | <<link "Bra">><<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a burkini")>> + | <<link "Burkini">><<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a burqa")>> + | <<link "Burqa">><<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a button-up shirt and panties")>> + | <<link "Button-up shirt and panties">><<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a button-up shirt")>> + | <<link "Button-up shirt">><<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Cheerleader">><<set $activeSlave.clothes = "a cheerleader outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">><<print $activeSlave.clothes>><</replace>><</link>> | <<link "Clubslut netting">><<set $activeSlave.clothes = "clubslut netting",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Cutoffs and a t-shirt">><<set $activeSlave.clothes = "cutoffs and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Cutoffs">><<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Cybersuit">><<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Dirndl">><<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("cutoffs")>> + | <<link "Cutoffs">><<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a cybersuit")>> + | <<link "Cybersuit">><<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a dirndl")>> + | <<link "Dirndl">><<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Fallen nun">><<set $activeSlave.clothes = "a fallen nuns habit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Gothic lolita dress">><<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Haltertop dress">><<set $activeSlave.clothes = "a halter top dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Hanbok">><<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a gothic lolita dress")>> + | <<link "Gothic lolita dress">><<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a halter top dress")>> + | <<link "Haltertop dress">><<set $activeSlave.clothes = "a halter top dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a hanbok")>> + | <<link "Hanbok">><<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Hijab and abaya">><<set $activeSlave.clothes = "a hijab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Hijab and blouse">><<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Jeans">><<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Kitty lingerie">><<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Ku Klux Klan Robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Ku Klux Klan Robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Latex catsuit">><<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Leather pants and a tube top">><<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Leather pants and pasties">><<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Leather pants">><<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Lederhosen">><<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a hijab and blouse")>> + | <<link "Hijab and blouse">><<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("jeans")>> + | <<link "Jeans">><<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("kitty lingerie")>> + | <<link "Kitty lingerie">><<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a klan robe")>> + | <<link "Ku Klux Klan Robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a slutty klan robe")>> + | <<link "Ku Klux Klan Robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a latex catsuit")>> + | <<link "Latex catsuit">><<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("leather pants and a tube top")>> + | <<link "Leather pants and a tube top">><<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("leather pants and pasties")>> + | <<link "Leather pants and pasties">><<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("leather pants")>> + | <<link "Leather pants">><<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("lederhosen")>> + | <<link "Lederhosen">><<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Leotard">><<set $activeSlave.clothes = "a leotard",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Maid (nice)">><<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a nice maid outfit")>> + | <<link "Maid (nice)">><<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<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 "Mounty outfit">><<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a military uniform")>> + | <<link "Military uniform">><<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a mini dress")>> + | <<link "Mini dress">><<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a monokini")>> + | <<link "Monokini">><<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a mounty outfit")>> + | <<link "Mounty outfit">><<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Nice lingerie">><<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Niqab and abaya">><<set $activeSlave.clothes = "a niqab and abaya",$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>> + <<if isItemAccessible("a niqab and abaya")>> + | <<link "Niqab and abaya">><<set $activeSlave.clothes = "a niqab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a nice nurse outfit")>> + | <<link "Nurse (nice)">><<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Nurse (slutty)">><<set $activeSlave.clothes = "a slutty nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "One-piece swimsuit">><<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Oversized t-shirt and boyshorts">><<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Oversized t-shirt">><<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Panties and pasties">><<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a one-piece swimsuit")>> + | <<link "One-piece swimsuit">><<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("an oversized t-shirt and boyshorts")>> + | <<link "Oversized t-shirt and boyshorts">><<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("an oversized t-shirt")>> + | <<link "Oversized t-shirt">><<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("panties and pasties")>> + | <<link "Panties and pasties">><<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Panties">><<set $activeSlave.clothes = "panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Police uniform">><<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Pony outfit (nice)">><<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Pony outfit (slutty)">><<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Red Army uniform">><<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a police uniform")>> + | <<link "Police uniform">><<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a nice pony outfit")>> + | <<link "Pony outfit (nice)">><<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a slutty pony outfit")>> + | <<link "Pony outfit (slutty)">><<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a red army uniform")>> + | <<link "Red Army uniform">><<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Scalemail bikini">><<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Schoolgirl">><<set $activeSlave.clothes = "a schoolgirl outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Schutzstaffel uniform (nice)">><<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Schutzstaffel uniform (slutty)">><<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Skimpy loincloth">><<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Slave gown">><<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a schutzstaffel uniform")>> + | <<link "Schutzstaffel uniform (nice)">><<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a slutty schutzstaffel uniform")>> + | <<link "Schutzstaffel uniform (slutty)">><<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a skimpy loincloth")>> + | <<link "Skimpy loincloth">><<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a slave gown")>> + | <<link "Slave gown">><<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Slutty outfit">><<set $activeSlave.clothes = "a slutty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> | <<link "Spats and a tank top">><<set $activeSlave.clothes = "spats and a tank top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sport shorts and a sports bra">><<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sport shorts and t-shirt">><<set $activeSlave.clothes = "sport shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sport shorts">><<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sports bra">><<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("sport shorts and a sports bra")>> + | <<link "Sport shorts and a sports bra">><<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("sport shorts and a t-shirt")>> + | <<link "Sport shorts and t-shirt">><<set $activeSlave.clothes = "sport shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("sport shorts")>> + | <<link "Sport shorts">><<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a sports bra")>> + | <<link "Sports bra">><<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "String bikini">><<set $activeSlave.clothes = "a string bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Striped bra">><<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Striped panties">><<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Striped underwear">><<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a striped bra")>> + | <<link "Striped bra">><<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("striped panties")>> + | <<link "Striped panties">><<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("striped underwear")>> + | <<link "Striped underwear">><<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Succubus costume">><<set $activeSlave.clothes = "a succubus outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("nice business attire")>> + | <<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> | <<link "Suit (slutty)">><<set $activeSlave.clothes = "slutty business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sweater and cutoffs">><<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sweater and panties">><<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Sweater">><<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "T-shirt and jeans">><<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "T-shirt and panties">><<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "T-shirt and thong">><<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "T-shirt">><<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Tank-top and panties">><<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Tank-top">><<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Thong">><<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Tube top and thong">><<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Tube top">><<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<if isItemAccessible("a sweater and cutoffs")>> + | <<link "Sweater and cutoffs">><<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a sweater and panties")>> + | <<link "Sweater and panties">><<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a sweater")>> + | <<link "Sweater">><<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a t-shirt and jeans")>> + | <<link "T-shirt and jeans">><<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a t-shirt and panties")>> + | <<link "T-shirt and panties">><<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a t-shirt and thong")>> + | <<link "T-shirt and thong">><<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a t-shirt")>> + | <<link "T-shirt">><<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a tank-top and panties")>> + | <<link "Tank-top and panties">><<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a tank-top")>> + | <<link "Tank-top">><<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a thong")>> + | <<link "Thong">><<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a tube top and thong")>> + | <<link "Tube top and thong">><<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> + <<if isItemAccessible("a tube top")>> + | <<link "Tube top">><<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <</if>> <<if isItemAccessible("attractive lingerie for a pregnant woman")>> | //FS// <<link "Attractive lingerie for a pregnant woman">><<set $activeSlave.clothes = "attractive lingerie for a pregnant woman",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> diff --git a/src/uncategorized/wardrobe.tw b/src/uncategorized/wardrobe.tw index 4d0684d48f0f026c59edfe09627c8bdcba94d97b..81ff69161206be3a9009ed663ebc49d8c368319a 100644 --- a/src/uncategorized/wardrobe.tw +++ b/src/uncategorized/wardrobe.tw @@ -7,7 +7,7 @@ <br> // The room containing all the clothes and accessories you have available to dress your slaves in, as well as the supplies and tools your tailor needs to resize them to better fit your slaves. Several mirrors are set up for a slave to try on outfits should she be allowed to dress herself. The selection includes -<<if ($cheatMode == 1) || (isItemAccessible("a bunny outfit") && isItemAccessible("chains") && isItemAccessible("conservative clothing") && isItemAccessible("Western clothing") && isItemAccessible("body oil") && isItemAccessible("a chattel habit") && isItemAccessible("a toga") && isItemAccessible("a huipil") && isItemAccessible("a kimono") && isItemAccessible("harem gauze") && isItemAccessible("a slutty qipao") && isItemAccessible("ancient Egyptian") && isItemAccessible("a maternity dress") && isItemAccessible("attractive lingerie for a pregnant woman") && isItemAccessible("a small empathy belly") && isItemAccessible("stretch pants and a crop-top") && isItemAccessible("shimapan panties") && isItemAccessible("a schutzstaffel uniform") && isItemAccessible("a burqa") && isItemAccessible("a dirndl") && isItemAccessible("battlearmor"))>> +<<if ($cheatMode == 1) || (isItemAccessible("a bunny outfit") && isItemAccessible("chains") && isItemAccessible("conservative clothing") && isItemAccessible("Western clothing") && isItemAccessible("body oil") && isItemAccessible("a chattel habit") && isItemAccessible("a toga") && isItemAccessible("a huipil") && isItemAccessible("a kimono") && isItemAccessible("harem gauze") && isItemAccessible("a slutty qipao") && isItemAccessible("ancient Egyptian") && isItemAccessible("a maternity dress") && isItemAccessible("attractive lingerie for a pregnant woman") && isItemAccessible("a small empathy belly") && isItemAccessible("stretch pants and a crop-top") && isItemAccessible("shimapan panties") && isItemAccessible("a schutzstaffel uniform") && isItemAccessible("a burqa") && isItemAccessible("a dirndl") && isItemAccessible("battlearmor") && isItemAccessible("a police uniform") && isItemAccessible("a gothic lolita dress") && isItemAccessible("a cybersuit") && isItemAccessible("jeans") && isItemAccessible("boyshorts") && isItemAccessible("sport shorts and a sports bra") && isItemAccessible("a monokini") && isItemAccessible("a nice pony outfit"))>> outfits from all manner of cultures and societies; not a single style eludes you. <<else>> many styles of clothing ranging from exciting to mundane and sexy to practical. @@ -171,6 +171,70 @@ The room containing all the clothes and accessories you have available to dress You are well stocked with a number of burqas and similar clothing. <</if>> +<br> +<<if !isItemAccessible("jeans")>> + [[Order an extra large shipment of casual clothing|Wardrobe][$cash -= 5000, $clothesBoughtCasual = 1]] + //Costs <<print cashFormat(5000)>>// +<<else>> + You are well stocked with casual clothing. +<</if>> + +<br> +<<if !isItemAccessible("a police uniform")>> + [[Order a shipment of professional garments|Wardrobe][$cash -= 2500, $clothesBoughtCareer = 1]] + //Costs <<print cashFormat(2500)>>// +<<else>> + You are well stocked with selection of professional outfits. +<</if>> + +<br> +<<if !isItemAccessible("a gothic lolita dress")>> + [[Order a shipment of professionally tailored dresses|Wardrobe][$cash -= 15000, $clothesBoughtDresses = 1]] + //Costs <<print cashFormat(15000)>>// +<<else>> + You are well stocked with selection of fine dresses. +<</if>> + +<br> +<<if !isItemAccessible("a cybersuit")>> + [[Order a shipment of exotic bodysuits|Wardrobe][$cash -= 7500, $clothesBoughtBodysuits = 1]] + //Costs <<print cashFormat(7500)>>// +<<else>> + You are well stocked with selection of bodysuits. +<</if>> + +<br> +<<if !isItemAccessible("boyshorts")>> + [[Order a shipment of undergarmets|Wardrobe][$cash -= 5000, $clothesBoughtUnderwear = 1]] + //Costs <<print cashFormat(5000)>>// +<<else>> + You are well stocked with underwear. +<</if>> + +<br> +<<if !isItemAccessible("sport shorts and a sports bra")>> + [[Order a shipment of exercise wear|Wardrobe][$cash -= 2500, $clothesBoughtSports = 1]] + //Costs <<print cashFormat(2500)>>// +<<else>> + You are well stocked with exercise wear. +<</if>> + +<br> +<<if !isItemAccessible("a one-piece swimsuit")>> + [[Order a shipment of swimwear|Wardrobe][$cash -= 3500, $clothesBoughtSwimwear = 1]] + //Costs <<print cashFormat(3500)>>// +<<else>> + You are well stocked with swimwear. +<</if>> + +<br> +<<if !isItemAccessible("a nice pony outfit")>> + [[Order a shipment of specialized latex ponygirl outfits|Wardrobe][$cash -= 10000, $clothesBoughtPony = 1]] + //Costs <<print cashFormat(10000)>>// +<<else>> + You are well stocked with ponygirl bodysuits. +<</if>> + <br> <<if !isItemAccessible("a schutzstaffel uniform")>> [[Order a shipment of politically incorrect clothing|Wardrobe][$cash -= 15000, $clothesBoughtPol = 1]] @@ -184,7 +248,7 @@ The room containing all the clothes and accessories you have available to dress [[Order a large crate of panties from Japan|Wardrobe][$cash -= 2500, $clothesBoughtPantsu = 1]] //Costs <<print cashFormat(2500)>>// <<else>> - You have an impressive stash of panties that may or may not be have at one point been used. + You have an impressive stash of panties and other striped underwear that may or may not be have at one point been used. <</if>> <br><br> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index d5dedca1bc4209b691885717219d9c6cd3ac702f..3848b673063f41baceda80c380f62e881dcd2596 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -39,66 +39,86 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Ballgown">> - <<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a ball gown")>> + | <<link "Ballgown">> + <<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Bangles">> <<set $activeSlave.clothes = "slutty jewelry",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Battlearmor">> - <<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Battledress">> - <<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Biyelgee costume">> - <<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("battlearmor")>> + | <<link "Battlearmor">> + <<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("battledress")>> + | <<link "Battledress">> + <<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a biyelgee costume")>> + | <<link "Biyelgee costume">> + <<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Bodysuit">> <<set $activeSlave.clothes = "a comfortable bodysuit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Boyshorts">> - <<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Bra">> - <<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Burkini">> - <<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Burqa">> - <<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Button-up shirt and panties">> - <<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Button-up shirt">> - <<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("boyshorts")>> + | <<link "Boyshorts">> + <<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a bra")>> + | <<link "Bra">> + <<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a burkini")>> + | <<link "Burkini">> + <<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a burqa")>> + | <<link "Burqa">> + <<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a button-up shirt and panties")>> + | <<link "Button-up shirt and panties">> + <<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a button-up shirt")>> + | <<link "Button-up shirt">> + <<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Cheerleader">> <<set $activeSlave.clothes = "a cheerleader outfit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> @@ -114,196 +134,258 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Cutoffs">> - <<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Cybersuit">> - <<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Dirndl">> - <<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("cutoffs")>> + | <<link "Cutoffs">> + <<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a cybersuit")>> + | <<link "Cybersuit">> + <<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a dirndl")>> + | <<link "Dirndl">> + <<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Fallen nun">> <<set $activeSlave.clothes = "a fallen nuns habit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Gothic lolita dress">> - <<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Haltertop dress">> - <<set $activeSlave.clothes = "a haltertop dress",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Hanbok">> - <<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a gothic lolita dress")>> + | <<link "Gothic lolita dress">> + <<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a halter top dress")>> + | <<link "Haltertop dress">> + <<set $activeSlave.clothes = "a haltertop dress",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a hanbok")>> + | <<link "Hanbok">> + <<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Hijab and abaya">> <<set $activeSlave.clothes = "a hijab and abaya",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Hijab and blouse">> - <<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Jeans">> - <<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Kitty lingerie">> - <<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Ku Klux Klan robe (nice)">> - <<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Ku Klux Klan robe (slutty)">> - <<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Latex catsuit">> - <<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Leather pants and a tube top">> - <<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Leather pants and pasties">> - <<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Leather pants">> - <<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Lederhosen">> - <<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a hijab and blouse")>> + | <<link "Hijab and blouse">> + <<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("jeans")>> + | <<link "Jeans">> + <<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("kitty lingerie")>> + | <<link "Kitty lingerie">> + <<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a klan robe")>> + | <<link "Ku Klux Klan robe (nice)">> + <<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a slutty klan robe")>> + | <<link "Ku Klux Klan robe (slutty)">> + <<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a latex catsuit")>> + | <<link "Latex catsuit">> + <<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("leather pants and a tube top")>> + | <<link "Leather pants and a tube top">> + <<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("leather pants and pasties")>> + | <<link "Leather pants and pasties">> + <<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("leather pants")>> + | <<link "Leather pants">> + <<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("lederhosen")>> + | <<link "Lederhosen">> + <<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Leotard">> <<set $activeSlave.clothes = "a leotard",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Maid (nice)">> - <<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a nice maid outfit")>> + | <<link "Maid (nice)">> + <<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Maid (slutty)">> <<set $activeSlave.clothes = "a slutty maid outfit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Military uniform">> - <<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Mini dress">> - <<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>> - <<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 "Mounty oufit">> - <<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a military uniform")>> + | <<link "Military uniform">> + <<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a mini dress")>> + | <<link "Mini dress">> + <<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a monokini")>> + | <<link "Monokini">> + <<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a mounty outfit")>> + | <<link "Mounty oufit">> + <<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Nice lingerie">> <<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Niqab and abaya">> - <<set $activeSlave.clothes = "a niqab and abaya",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Nurse (nice)">> - <<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a niqab and abaya")>> + | <<link "Niqab and abaya">> + <<set $activeSlave.clothes = "a niqab and abaya",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a nice nurse outfit")>> + | <<link "Nurse (nice)">> + <<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Nurse (slutty)">> <<set $activeSlave.clothes = "a slutty nurse outfit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "One-piece swimsuit">> - <<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Oversized t-shirt and boyshorts">> - <<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Oversized t-shirt">> - <<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Panties and pasties">> - <<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a one-piece swimsuit")>> + | <<link "One-piece swimsuit">> + <<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("an oversized t-shirt and boyshorts")>> + | <<link "Oversized t-shirt and boyshorts">> + <<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("an oversized t-shirt")>> + | <<link "Oversized t-shirt">> + <<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("panties and pasties")>> + | <<link "Panties and pasties">> + <<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Panties">> <<set $activeSlave.clothes = "panties",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Police uniform">> - <<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Pony outfit (nice)">> - <<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Pony outfit (slutty)">> - <<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Red Army uniform">> - <<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a police uniform")>> + | <<link "Police uniform">> + <<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a nice pony outfit")>> + | <<link "Pony outfit (nice)">> + <<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a slutty pony outfit")>> + | <<link "Pony outfit (slutty)">> + <<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a red army uniform")>> + | <<link "Red Army uniform">> + <<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Scalemail bikini">> <<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> @@ -314,26 +396,34 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Schutzstaffel uniform (nice)">> - <<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Schutzstaffel uniform (slutty)">> - <<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Skimpy loincloth">> - <<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Slave gown">> - <<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a schutzstaffel uniform")>> + | <<link "Schutzstaffel uniform (nice)">> + <<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a slutty schutzstaffel uniform")>> + | <<link "Schutzstaffel uniform (slutty)">> + <<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a skimpy loincloth")>> + | <<link "Skimpy loincloth">> + <<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a slave gown")>> + | <<link "Slave gown">> + <<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Slutty outfit">> <<set $activeSlave.clothes = "a slutty outfit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> @@ -344,121 +434,161 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Sport shorts and a sports bra">> - <<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Sport shorts and a t-shirt">> - <<set $activeSlave.clothes = "sprt shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Sport shorts">> - <<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Sports bra">> - <<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("sport shorts and a sports bra")>> + | <<link "Sport shorts and a sports bra">> + <<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("sport shorts and a t-shirt")>> + | <<link "Sport shorts and a t-shirt">> + <<set $activeSlave.clothes = "sprt shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("sport shorts")>> + | <<link "Sport shorts">> + <<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a sports bra")>> + | <<link "Sports bra">> + <<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "String Bikini">> <<set $activeSlave.clothes = "a string bikini",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Striped bra">> - <<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Striped panties">> - <<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Striped underwear">> - <<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a striped bra")>> + | <<link "Striped bra">> + <<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("striped panties")>> + | <<link "Striped panties">> + <<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("striped underwear")>> + | <<link "Striped underwear">> + <<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Succubus costume">> <<set $activeSlave.clothes = "a succubus outfit",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Suit (nice)">> - <<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("nice business attire")>> + | <<link "Suit (nice)">> + <<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> | <<link "Suit (slutty)">> <<set $activeSlave.clothes = "slutty business attire",$activeSlave.choosesOwnClothes = 0>> <<replace "#clothes">>$activeSlave.clothes<</replace>> <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> <</link>> -| <<link "Sweater and cutoffs">> - <<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Sweater and panties">> - <<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Sweater">> - <<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "T-shirt and jeans">> - <<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "T-shirt and panties">> - <<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "T-shirt and thong">> - <<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "T-shirt">> - <<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Tank-top and panties">> - <<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Tank-top">> - <<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Thong">> - <<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Tube top and thong">> - <<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> -| <<link "Tube top">> - <<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>> - <<replace "#clothes">>$activeSlave.clothes<</replace>> - <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> -<</link>> +<<if isItemAccessible("a sweater and cutoffs")>> + | <<link "Sweater and cutoffs">> + <<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a sweater and panties")>> + | <<link "Sweater and panties">> + <<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a sweater")>> + | <<link "Sweater">> + <<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a t-shirt and jeans")>> + | <<link "T-shirt and jeans">> + <<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a t-shirt and panties")>> + | <<link "T-shirt and panties">> + <<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a t-shirt and thong")>> + | <<link "T-shirt and thong">> + <<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a t-shirt")>> + | <<link "T-shirt">> + <<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a tank-top and panties")>> + | <<link "Tank-top and panties">> + <<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a tank-top")>> + | <<link "Tank-top">> + <<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a thong")>> + | <<link "Thong">> + <<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a tube top and thong")>> + | <<link "Tube top and thong">> + <<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> +<<if isItemAccessible("a tube top")>> + | <<link "Tube top">> + <<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>> + <<replace "#clothes">>$activeSlave.clothes<</replace>> + <<replace "#clothingDescription">><br>//<<ClothingDescription>>//<</replace>> + <</link>> +<</if>> <<if isItemAccessible("attractive lingerie for a pregnant woman")>> | //FS// <<link "Attractive lingerie for a pregnant woman">>